diff --git a/lsteamclient/cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001.cpp index 87695983..202c9721 100644 --- a/lsteamclient/cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps( void *args ) { struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps_params *params = (struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps_params *)args; - struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *iface = (struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *iface = (struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetNumInstalledApps( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps( vo NTSTATUS ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps( void *args ) { struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps_params *params = (struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps_params *)args; - struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *iface = (struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *iface = (struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetInstalledApps( params->pvecAppID, params->unMaxAppIDs ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps( void NTSTATUS ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName( void *args ) { struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName_params *params = (struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName_params *)args; - struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *iface = (struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *iface = (struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetAppName( params->nAppID, params->pchName, params->cchNameMax ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName( void *args NTSTATUS ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir( void *args ) { struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir_params *params = (struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir_params *)args; - struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *iface = (struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *iface = (struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetAppInstallDir( params->nAppID, params->pchDirectory, params->cchNameMax ); params->_ret = steamclient_unix_path_to_dos_path( params->_ret, params->pchDirectory, params->pchDirectory, params->cchNameMax, 0 ); return 0; @@ -41,7 +41,7 @@ NTSTATUS ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir( void NTSTATUS ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId( void *args ) { struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId_params *params = (struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId_params *)args; - struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *iface = (struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *iface = (struct u_ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetAppBuildId( params->nAppID ); return 0; } diff --git a/lsteamclient/cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001.cpp index d78281ea..bea9530a 100644 --- a/lsteamclient/cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData( void *args ) { struct ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData_params *params = (struct ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData_params *)args; - struct u_ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001 *iface = (struct u_ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001 *iface = (struct u_ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetAppOwnershipTicketData( params->nAppID, params->pvBuffer, params->cbBufferLength, params->piAppId, params->piSteamId, params->piSignature, params->pcbSignature ); return 0; } diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION001.cpp index b523e251..e4ea11eb 100644 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION001 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION001 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetAppData( params->nAppID, params->pchKey, params->pchValue, params->cchValueMax ); return 0; } diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION002.cpp b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION002.cpp index 8a1d91ed..4fa79c6c 100644 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION002.cpp +++ b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->BIsSubscribed( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->BIsLowViolence( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->BIsCybercafe( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->BIsVACBanned( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetCurrentGameLanguage( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage( void NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetAvailableGameLanguages( ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages( vo NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->BIsSubscribedApp( params->appID ); return 0; } diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION003.cpp b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION003.cpp index 289e243b..608e17f3 100644 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION003.cpp +++ b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION003.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->BIsSubscribed( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->BIsLowViolence( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->BIsCybercafe( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->BIsVACBanned( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetCurrentGameLanguage( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage( void NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetAvailableGameLanguages( ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages( vo NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->BIsSubscribedApp( params->appID ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp( void *args NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->BIsDlcInstalled( params->appID ); return 0; } diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION004.cpp b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION004.cpp index 3ef6850d..7807cddd 100644 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION004.cpp +++ b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION004.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->BIsSubscribed( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->BIsLowViolence( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->BIsCybercafe( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->BIsVACBanned( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetCurrentGameLanguage( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage( void NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetAvailableGameLanguages( ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages( vo NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->BIsSubscribedApp( params->appID ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp( void *args NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->BIsDlcInstalled( params->appID ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetEarliestPurchaseUnixTime( params->nAppID ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime( NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->BIsSubscribedFromFreeWeekend( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend( NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetDLCCount( ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->BGetDLCDataByIndex( params->iDLC, params->pAppID, params->pbAvailable, params->pchName, params->cchNameBufferSize ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex( void *arg NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->u_iface; iface->InstallDLC( params->nAppID ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION004 *)params->u_iface; iface->UninstallDLC( params->nAppID ); return 0; } diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION005.cpp b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION005.cpp index a4ae06ad..4bb1988a 100644 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION005.cpp +++ b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION005.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->BIsSubscribed( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->BIsLowViolence( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->BIsCybercafe( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->BIsVACBanned( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetCurrentGameLanguage( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage( void NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetAvailableGameLanguages( ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages( vo NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->BIsSubscribedApp( params->appID ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp( void *args NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->BIsDlcInstalled( params->appID ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetEarliestPurchaseUnixTime( params->nAppID ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime( NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->BIsSubscribedFromFreeWeekend( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend( NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetDLCCount( ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->BGetDLCDataByIndex( params->iDLC, params->pAppID, params->pbAvailable, params->pchName, params->cchNameBufferSize ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex( void *arg NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; iface->InstallDLC( params->nAppID ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; iface->UninstallDLC( params->nAppID ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; iface->RequestAppProofOfPurchaseKey( params->nAppID ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey( NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetCurrentBetaName( params->pchName, params->cchNameBufferSize ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName( void *arg NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->MarkContentCorrupt( params->bMissingFilesOnly ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt( void *arg NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetInstalledDepots( params->pvecDepots, params->cMaxDepots ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots( void *arg NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetAppInstallDir( params->appID, params->pchFolder, params->cchFolderBufferSize ); params->_ret = steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderBufferSize, 0 ); return 0; @@ -161,7 +161,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir( void *args NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->BIsAppInstalled( params->appID ); return 0; } diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION006.cpp b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION006.cpp index ecbd71e0..6ab14579 100644 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION006.cpp +++ b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION006.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->BIsSubscribed( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->BIsLowViolence( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->BIsCybercafe( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->BIsVACBanned( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetCurrentGameLanguage( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage( void NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetAvailableGameLanguages( ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages( vo NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->BIsSubscribedApp( params->appID ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp( void *args NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->BIsDlcInstalled( params->appID ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetEarliestPurchaseUnixTime( params->nAppID ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime( NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->BIsSubscribedFromFreeWeekend( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend( NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetDLCCount( ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->BGetDLCDataByIndex( params->iDLC, params->pAppID, params->pbAvailable, params->pchName, params->cchNameBufferSize ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex( void *arg NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; iface->InstallDLC( params->nAppID ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; iface->UninstallDLC( params->nAppID ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; iface->RequestAppProofOfPurchaseKey( params->nAppID ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey( NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetCurrentBetaName( params->pchName, params->cchNameBufferSize ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName( void *arg NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->MarkContentCorrupt( params->bMissingFilesOnly ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt( void *arg NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetInstalledDepots( params->appID, params->pvecDepots, params->cMaxDepots ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots( void *arg NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetAppInstallDir( params->appID, params->pchFolder, params->cchFolderBufferSize ); params->_ret = steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderBufferSize, 0 ); return 0; @@ -161,7 +161,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir( void *args NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->BIsAppInstalled( params->appID ); return 0; } @@ -169,7 +169,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; *params->_ret = iface->GetAppOwner( ); return 0; } @@ -177,7 +177,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetLaunchQueryParam( params->pchKey ); return 0; } diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION007.cpp b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION007.cpp index 14baddf6..b8bf5f6a 100644 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION007.cpp +++ b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION007.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->BIsSubscribed( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->BIsLowViolence( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->BIsCybercafe( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->BIsVACBanned( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetCurrentGameLanguage( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage( void NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetAvailableGameLanguages( ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages( vo NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->BIsSubscribedApp( params->appID ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp( void *args NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->BIsDlcInstalled( params->appID ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetEarliestPurchaseUnixTime( params->nAppID ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime( NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->BIsSubscribedFromFreeWeekend( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend( NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetDLCCount( ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->BGetDLCDataByIndex( params->iDLC, params->pAppID, params->pbAvailable, params->pchName, params->cchNameBufferSize ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex( void *arg NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; iface->InstallDLC( params->nAppID ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; iface->UninstallDLC( params->nAppID ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; iface->RequestAppProofOfPurchaseKey( params->nAppID ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey( NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetCurrentBetaName( params->pchName, params->cchNameBufferSize ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName( void *arg NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->MarkContentCorrupt( params->bMissingFilesOnly ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt( void *arg NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetInstalledDepots( params->appID, params->pvecDepots, params->cMaxDepots ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots( void *arg NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetAppInstallDir( params->appID, params->pchFolder, params->cchFolderBufferSize ); params->_ret = steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderBufferSize, 0 ); return 0; @@ -161,7 +161,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir( void *args NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->BIsAppInstalled( params->appID ); return 0; } @@ -169,7 +169,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; *params->_ret = iface->GetAppOwner( ); return 0; } @@ -177,7 +177,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetLaunchQueryParam( params->pchKey ); return 0; } @@ -185,7 +185,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam( void *ar NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetDlcDownloadProgress( params->nAppID, params->punBytesDownloaded, params->punBytesTotal ); return 0; } @@ -193,7 +193,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress( void NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetAppBuildId( ); return 0; } diff --git a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION008.cpp b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION008.cpp index 42865346..fb48aa03 100644 --- a/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION008.cpp +++ b/lsteamclient/cppISteamApps_STEAMAPPS_INTERFACE_VERSION008.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->BIsSubscribed( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->BIsLowViolence( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->BIsCybercafe( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->BIsVACBanned( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetCurrentGameLanguage( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage( void NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetAvailableGameLanguages( ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages( vo NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->BIsSubscribedApp( params->appID ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp( void *args NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->BIsDlcInstalled( params->appID ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetEarliestPurchaseUnixTime( params->nAppID ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime( NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->BIsSubscribedFromFreeWeekend( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend( NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetDLCCount( ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->BGetDLCDataByIndex( params->iDLC, params->pAppID, params->pbAvailable, params->pchName, params->cchNameBufferSize ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex( void *arg NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; iface->InstallDLC( params->nAppID ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; iface->UninstallDLC( params->nAppID ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; iface->RequestAppProofOfPurchaseKey( params->nAppID ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey( NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetCurrentBetaName( params->pchName, params->cchNameBufferSize ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName( void *arg NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->MarkContentCorrupt( params->bMissingFilesOnly ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt( void *arg NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetInstalledDepots( params->appID, params->pvecDepots, params->cMaxDepots ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots( void *arg NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetAppInstallDir( params->appID, params->pchFolder, params->cchFolderBufferSize ); params->_ret = steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderBufferSize, 0 ); return 0; @@ -161,7 +161,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir( void *args NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->BIsAppInstalled( params->appID ); return 0; } @@ -169,7 +169,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; *params->_ret = iface->GetAppOwner( ); return 0; } @@ -177,7 +177,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetLaunchQueryParam( params->pchKey ); return 0; } @@ -185,7 +185,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam( void *ar NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetDlcDownloadProgress( params->nAppID, params->punBytesDownloaded, params->punBytesTotal ); return 0; } @@ -193,7 +193,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress( void NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetAppBuildId( ); return 0; } @@ -201,7 +201,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; iface->RequestAllProofOfPurchaseKeys( ); return 0; } @@ -209,7 +209,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; char *u_pszFileName = steamclient_dos_to_unix_path( params->pszFileName, 0 ); params->_ret = iface->GetFileDetails( u_pszFileName ); steamclient_free_path( u_pszFileName ); @@ -219,7 +219,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetLaunchCommandLine( params->pszCommandLine, params->cubCommandLine ); return 0; } @@ -227,7 +227,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine( void *a NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->BIsSubscribedFromFamilySharing( ); return 0; } @@ -235,7 +235,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharin NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->BIsTimedTrial( params->punSecondsAllowed, params->punSecondsPlayed ); return 0; } @@ -243,7 +243,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetDlcContext( params->nAppID ); return 0; } @@ -251,7 +251,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetNumBetas( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetNumBetas_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetNumBetas_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetNumBetas( params->pnAvailable, params->pnPrivate ); return 0; } @@ -259,7 +259,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetNumBetas( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetBetaInfo( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetBetaInfo_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetBetaInfo_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetBetaInfo( params->iBetaIndex, params->punFlags, params->punBuildID, params->pchBetaName, params->cchBetaName, params->pchDescription, params->cchDescription ); return 0; } @@ -267,7 +267,7 @@ NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetBetaInfo( void *args ) NTSTATUS ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetActiveBeta( void *args ) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetActiveBeta_params *params = (struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetActiveBeta_params *)args; - struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *iface = (struct u_ISteamApps_STEAMAPPS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetActiveBeta( params->pchBetaName ); return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient006.cpp b/lsteamclient/cppISteamClient_SteamClient006.cpp index 71e62ec1..1ad246cc 100644 --- a/lsteamclient/cppISteamClient_SteamClient006.cpp +++ b/lsteamclient/cppISteamClient_SteamClient006.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamClient_SteamClient006_CreateSteamPipe( void *args ) { struct ISteamClient_SteamClient006_CreateSteamPipe_params *params = (struct ISteamClient_SteamClient006_CreateSteamPipe_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; params->_ret = iface->CreateSteamPipe( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamClient_SteamClient006_CreateSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient006_BReleaseSteamPipe( void *args ) { struct ISteamClient_SteamClient006_BReleaseSteamPipe_params *params = (struct ISteamClient_SteamClient006_BReleaseSteamPipe_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamClient_SteamClient006_BReleaseSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient006_CreateGlobalUser( void *args ) { struct ISteamClient_SteamClient006_CreateGlobalUser_params *params = (struct ISteamClient_SteamClient006_CreateGlobalUser_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; params->_ret = iface->CreateGlobalUser( params->phSteamPipe ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamClient_SteamClient006_CreateGlobalUser( void *args ) NTSTATUS ISteamClient_SteamClient006_ConnectToGlobalUser( void *args ) { struct ISteamClient_SteamClient006_ConnectToGlobalUser_params *params = (struct ISteamClient_SteamClient006_ConnectToGlobalUser_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamClient_SteamClient006_ConnectToGlobalUser( void *args ) NTSTATUS ISteamClient_SteamClient006_CreateLocalUser( void *args ) { struct ISteamClient_SteamClient006_CreateLocalUser_params *params = (struct ISteamClient_SteamClient006_CreateLocalUser_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; params->_ret = iface->CreateLocalUser( params->phSteamPipe ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamClient_SteamClient006_CreateLocalUser( void *args ) NTSTATUS ISteamClient_SteamClient006_ReleaseUser( void *args ) { struct ISteamClient_SteamClient006_ReleaseUser_params *params = (struct ISteamClient_SteamClient006_ReleaseUser_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; iface->ReleaseUser( params->hSteamPipe, params->hUser ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamClient_SteamClient006_ReleaseUser( void *args ) NTSTATUS ISteamClient_SteamClient006_GetISteamUser( void *args ) { struct ISteamClient_SteamClient006_GetISteamUser_params *params = (struct ISteamClient_SteamClient006_GetISteamUser_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamClient_SteamClient006_GetISteamUser( void *args ) NTSTATUS ISteamClient_SteamClient006_GetIVAC( void *args ) { struct ISteamClient_SteamClient006_GetIVAC_params *params = (struct ISteamClient_SteamClient006_GetIVAC_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; params->_ret = iface->GetIVAC( params->hSteamUser ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamClient_SteamClient006_GetIVAC( void *args ) NTSTATUS ISteamClient_SteamClient006_GetISteamGameServer( void *args ) { struct ISteamClient_SteamClient006_GetISteamGameServer_params *params = (struct ISteamClient_SteamClient006_GetISteamGameServer_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamClient_SteamClient006_GetISteamGameServer( void *args ) NTSTATUS ISteamClient_SteamClient006_SetLocalIPBinding( void *args ) { struct ISteamClient_SteamClient006_SetLocalIPBinding_params *params = (struct ISteamClient_SteamClient006_SetLocalIPBinding_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; iface->SetLocalIPBinding( params->unIP, params->usPort ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamClient_SteamClient006_SetLocalIPBinding( void *args ) NTSTATUS ISteamClient_SteamClient006_GetUniverseName( void *args ) { struct ISteamClient_SteamClient006_GetUniverseName_params *params = (struct ISteamClient_SteamClient006_GetUniverseName_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; params->_ret = iface->GetUniverseName( params->eUniverse ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamClient_SteamClient006_GetUniverseName( void *args ) NTSTATUS ISteamClient_SteamClient006_GetISteamFriends( void *args ) { struct ISteamClient_SteamClient006_GetISteamFriends_params *params = (struct ISteamClient_SteamClient006_GetISteamFriends_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamClient_SteamClient006_GetISteamFriends( void *args ) NTSTATUS ISteamClient_SteamClient006_GetISteamUtils( void *args ) { struct ISteamClient_SteamClient006_GetISteamUtils_params *params = (struct ISteamClient_SteamClient006_GetISteamUtils_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamClient_SteamClient006_GetISteamUtils( void *args ) NTSTATUS ISteamClient_SteamClient006_GetISteamBilling( void *args ) { struct ISteamClient_SteamClient006_GetISteamBilling_params *params = (struct ISteamClient_SteamClient006_GetISteamBilling_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; params->_ret = iface->GetISteamBilling( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamClient_SteamClient006_GetISteamBilling( void *args ) NTSTATUS ISteamClient_SteamClient006_GetISteamMatchmaking( void *args ) { struct ISteamClient_SteamClient006_GetISteamMatchmaking_params *params = (struct ISteamClient_SteamClient006_GetISteamMatchmaking_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamClient_SteamClient006_GetISteamMatchmaking( void *args ) NTSTATUS ISteamClient_SteamClient006_GetISteamApps( void *args ) { struct ISteamClient_SteamClient006_GetISteamApps_params *params = (struct ISteamClient_SteamClient006_GetISteamApps_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamClient_SteamClient006_GetISteamApps( void *args ) NTSTATUS ISteamClient_SteamClient006_GetISteamContentServer( void *args ) { struct ISteamClient_SteamClient006_GetISteamContentServer_params *params = (struct ISteamClient_SteamClient006_GetISteamContentServer_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; params->_ret = iface->GetISteamContentServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamClient_SteamClient006_GetISteamContentServer( void *args ) NTSTATUS ISteamClient_SteamClient006_GetISteamMasterServerUpdater( void *args ) { struct ISteamClient_SteamClient006_GetISteamMasterServerUpdater_params *params = (struct ISteamClient_SteamClient006_GetISteamMasterServerUpdater_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; params->_ret = iface->GetISteamMasterServerUpdater( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamClient_SteamClient006_GetISteamMasterServerUpdater( void *args ) NTSTATUS ISteamClient_SteamClient006_GetISteamMatchmakingServers( void *args ) { struct ISteamClient_SteamClient006_GetISteamMatchmakingServers_params *params = (struct ISteamClient_SteamClient006_GetISteamMatchmakingServers_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamClient_SteamClient006_GetISteamMatchmakingServers( void *args ) NTSTATUS ISteamClient_SteamClient006_RunFrame( void *args ) { struct ISteamClient_SteamClient006_RunFrame_params *params = (struct ISteamClient_SteamClient006_RunFrame_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamClient_SteamClient006_RunFrame( void *args ) NTSTATUS ISteamClient_SteamClient006_GetIPCCallCount( void *args ) { struct ISteamClient_SteamClient006_GetIPCCallCount_params *params = (struct ISteamClient_SteamClient006_GetIPCCallCount_params *)args; - struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->linux_side; + struct u_ISteamClient_SteamClient006 *iface = (struct u_ISteamClient_SteamClient006 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient007.cpp b/lsteamclient/cppISteamClient_SteamClient007.cpp index 01107397..89a4c7a7 100644 --- a/lsteamclient/cppISteamClient_SteamClient007.cpp +++ b/lsteamclient/cppISteamClient_SteamClient007.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamClient_SteamClient007_CreateSteamPipe( void *args ) { struct ISteamClient_SteamClient007_CreateSteamPipe_params *params = (struct ISteamClient_SteamClient007_CreateSteamPipe_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; params->_ret = iface->CreateSteamPipe( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamClient_SteamClient007_CreateSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient007_BReleaseSteamPipe( void *args ) { struct ISteamClient_SteamClient007_BReleaseSteamPipe_params *params = (struct ISteamClient_SteamClient007_BReleaseSteamPipe_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamClient_SteamClient007_BReleaseSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient007_ConnectToGlobalUser( void *args ) { struct ISteamClient_SteamClient007_ConnectToGlobalUser_params *params = (struct ISteamClient_SteamClient007_ConnectToGlobalUser_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamClient_SteamClient007_ConnectToGlobalUser( void *args ) NTSTATUS ISteamClient_SteamClient007_CreateLocalUser( void *args ) { struct ISteamClient_SteamClient007_CreateLocalUser_params *params = (struct ISteamClient_SteamClient007_CreateLocalUser_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; params->_ret = iface->CreateLocalUser( params->phSteamPipe ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamClient_SteamClient007_CreateLocalUser( void *args ) NTSTATUS ISteamClient_SteamClient007_ReleaseUser( void *args ) { struct ISteamClient_SteamClient007_ReleaseUser_params *params = (struct ISteamClient_SteamClient007_ReleaseUser_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; iface->ReleaseUser( params->hSteamPipe, params->hUser ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamClient_SteamClient007_ReleaseUser( void *args ) NTSTATUS ISteamClient_SteamClient007_GetISteamUser( void *args ) { struct ISteamClient_SteamClient007_GetISteamUser_params *params = (struct ISteamClient_SteamClient007_GetISteamUser_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamClient_SteamClient007_GetISteamUser( void *args ) NTSTATUS ISteamClient_SteamClient007_GetISteamGameServer( void *args ) { struct ISteamClient_SteamClient007_GetISteamGameServer_params *params = (struct ISteamClient_SteamClient007_GetISteamGameServer_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamClient_SteamClient007_GetISteamGameServer( void *args ) NTSTATUS ISteamClient_SteamClient007_SetLocalIPBinding( void *args ) { struct ISteamClient_SteamClient007_SetLocalIPBinding_params *params = (struct ISteamClient_SteamClient007_SetLocalIPBinding_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; iface->SetLocalIPBinding( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamClient_SteamClient007_SetLocalIPBinding( void *args ) NTSTATUS ISteamClient_SteamClient007_GetISteamFriends( void *args ) { struct ISteamClient_SteamClient007_GetISteamFriends_params *params = (struct ISteamClient_SteamClient007_GetISteamFriends_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamClient_SteamClient007_GetISteamFriends( void *args ) NTSTATUS ISteamClient_SteamClient007_GetISteamUtils( void *args ) { struct ISteamClient_SteamClient007_GetISteamUtils_params *params = (struct ISteamClient_SteamClient007_GetISteamUtils_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamClient_SteamClient007_GetISteamUtils( void *args ) NTSTATUS ISteamClient_SteamClient007_GetISteamMatchmaking( void *args ) { struct ISteamClient_SteamClient007_GetISteamMatchmaking_params *params = (struct ISteamClient_SteamClient007_GetISteamMatchmaking_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamClient_SteamClient007_GetISteamMatchmaking( void *args ) NTSTATUS ISteamClient_SteamClient007_GetISteamContentServer( void *args ) { struct ISteamClient_SteamClient007_GetISteamContentServer_params *params = (struct ISteamClient_SteamClient007_GetISteamContentServer_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; params->_ret = iface->GetISteamContentServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamClient_SteamClient007_GetISteamContentServer( void *args ) NTSTATUS ISteamClient_SteamClient007_GetISteamMasterServerUpdater( void *args ) { struct ISteamClient_SteamClient007_GetISteamMasterServerUpdater_params *params = (struct ISteamClient_SteamClient007_GetISteamMasterServerUpdater_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; params->_ret = iface->GetISteamMasterServerUpdater( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamClient_SteamClient007_GetISteamMasterServerUpdater( void *args ) NTSTATUS ISteamClient_SteamClient007_GetISteamMatchmakingServers( void *args ) { struct ISteamClient_SteamClient007_GetISteamMatchmakingServers_params *params = (struct ISteamClient_SteamClient007_GetISteamMatchmakingServers_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamClient_SteamClient007_GetISteamMatchmakingServers( void *args ) NTSTATUS ISteamClient_SteamClient007_GetISteamGenericInterface( void *args ) { struct ISteamClient_SteamClient007_GetISteamGenericInterface_params *params = (struct ISteamClient_SteamClient007_GetISteamGenericInterface_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamClient_SteamClient007_GetISteamGenericInterface( void *args ) NTSTATUS ISteamClient_SteamClient007_RunFrame( void *args ) { struct ISteamClient_SteamClient007_RunFrame_params *params = (struct ISteamClient_SteamClient007_RunFrame_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamClient_SteamClient007_RunFrame( void *args ) NTSTATUS ISteamClient_SteamClient007_GetIPCCallCount( void *args ) { struct ISteamClient_SteamClient007_GetIPCCallCount_params *params = (struct ISteamClient_SteamClient007_GetIPCCallCount_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamClient_SteamClient007_GetIPCCallCount( void *args ) NTSTATUS ISteamClient_SteamClient007_GetISteamUserStats( void *args ) { struct ISteamClient_SteamClient007_GetISteamUserStats_params *params = (struct ISteamClient_SteamClient007_GetISteamUserStats_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamClient_SteamClient007_GetISteamUserStats( void *args ) NTSTATUS ISteamClient_SteamClient007_GetISteamApps( void *args ) { struct ISteamClient_SteamClient007_GetISteamApps_params *params = (struct ISteamClient_SteamClient007_GetISteamApps_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamClient_SteamClient007_GetISteamApps( void *args ) NTSTATUS ISteamClient_SteamClient007_GetISteamNetworking( void *args ) { struct ISteamClient_SteamClient007_GetISteamNetworking_params *params = (struct ISteamClient_SteamClient007_GetISteamNetworking_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamClient_SteamClient007_GetISteamNetworking( void *args ) NTSTATUS ISteamClient_SteamClient007_SetWarningMessageHook( void *args ) { struct ISteamClient_SteamClient007_SetWarningMessageHook_params *params = (struct ISteamClient_SteamClient007_SetWarningMessageHook_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -177,7 +177,7 @@ NTSTATUS ISteamClient_SteamClient007_SetWarningMessageHook( void *args ) NTSTATUS ISteamClient_SteamClient007_GetISteamRemoteStorage( void *args ) { struct ISteamClient_SteamClient007_GetISteamRemoteStorage_params *params = (struct ISteamClient_SteamClient007_GetISteamRemoteStorage_params *)args; - struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->linux_side; + struct u_ISteamClient_SteamClient007 *iface = (struct u_ISteamClient_SteamClient007 *)params->u_iface; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient008.cpp b/lsteamclient/cppISteamClient_SteamClient008.cpp index 43d5e79e..c4c1ab74 100644 --- a/lsteamclient/cppISteamClient_SteamClient008.cpp +++ b/lsteamclient/cppISteamClient_SteamClient008.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamClient_SteamClient008_CreateSteamPipe( void *args ) { struct ISteamClient_SteamClient008_CreateSteamPipe_params *params = (struct ISteamClient_SteamClient008_CreateSteamPipe_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; params->_ret = iface->CreateSteamPipe( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamClient_SteamClient008_CreateSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient008_BReleaseSteamPipe( void *args ) { struct ISteamClient_SteamClient008_BReleaseSteamPipe_params *params = (struct ISteamClient_SteamClient008_BReleaseSteamPipe_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamClient_SteamClient008_BReleaseSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient008_ConnectToGlobalUser( void *args ) { struct ISteamClient_SteamClient008_ConnectToGlobalUser_params *params = (struct ISteamClient_SteamClient008_ConnectToGlobalUser_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamClient_SteamClient008_ConnectToGlobalUser( void *args ) NTSTATUS ISteamClient_SteamClient008_CreateLocalUser( void *args ) { struct ISteamClient_SteamClient008_CreateLocalUser_params *params = (struct ISteamClient_SteamClient008_CreateLocalUser_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamClient_SteamClient008_CreateLocalUser( void *args ) NTSTATUS ISteamClient_SteamClient008_ReleaseUser( void *args ) { struct ISteamClient_SteamClient008_ReleaseUser_params *params = (struct ISteamClient_SteamClient008_ReleaseUser_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; iface->ReleaseUser( params->hSteamPipe, params->hUser ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamClient_SteamClient008_ReleaseUser( void *args ) NTSTATUS ISteamClient_SteamClient008_GetISteamUser( void *args ) { struct ISteamClient_SteamClient008_GetISteamUser_params *params = (struct ISteamClient_SteamClient008_GetISteamUser_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamClient_SteamClient008_GetISteamUser( void *args ) NTSTATUS ISteamClient_SteamClient008_GetISteamGameServer( void *args ) { struct ISteamClient_SteamClient008_GetISteamGameServer_params *params = (struct ISteamClient_SteamClient008_GetISteamGameServer_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamClient_SteamClient008_GetISteamGameServer( void *args ) NTSTATUS ISteamClient_SteamClient008_SetLocalIPBinding( void *args ) { struct ISteamClient_SteamClient008_SetLocalIPBinding_params *params = (struct ISteamClient_SteamClient008_SetLocalIPBinding_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; iface->SetLocalIPBinding( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamClient_SteamClient008_SetLocalIPBinding( void *args ) NTSTATUS ISteamClient_SteamClient008_GetISteamFriends( void *args ) { struct ISteamClient_SteamClient008_GetISteamFriends_params *params = (struct ISteamClient_SteamClient008_GetISteamFriends_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamClient_SteamClient008_GetISteamFriends( void *args ) NTSTATUS ISteamClient_SteamClient008_GetISteamUtils( void *args ) { struct ISteamClient_SteamClient008_GetISteamUtils_params *params = (struct ISteamClient_SteamClient008_GetISteamUtils_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamClient_SteamClient008_GetISteamUtils( void *args ) NTSTATUS ISteamClient_SteamClient008_GetISteamMatchmaking( void *args ) { struct ISteamClient_SteamClient008_GetISteamMatchmaking_params *params = (struct ISteamClient_SteamClient008_GetISteamMatchmaking_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamClient_SteamClient008_GetISteamMatchmaking( void *args ) NTSTATUS ISteamClient_SteamClient008_GetISteamMasterServerUpdater( void *args ) { struct ISteamClient_SteamClient008_GetISteamMasterServerUpdater_params *params = (struct ISteamClient_SteamClient008_GetISteamMasterServerUpdater_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; params->_ret = iface->GetISteamMasterServerUpdater( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamClient_SteamClient008_GetISteamMasterServerUpdater( void *args ) NTSTATUS ISteamClient_SteamClient008_GetISteamMatchmakingServers( void *args ) { struct ISteamClient_SteamClient008_GetISteamMatchmakingServers_params *params = (struct ISteamClient_SteamClient008_GetISteamMatchmakingServers_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamClient_SteamClient008_GetISteamMatchmakingServers( void *args ) NTSTATUS ISteamClient_SteamClient008_GetISteamGenericInterface( void *args ) { struct ISteamClient_SteamClient008_GetISteamGenericInterface_params *params = (struct ISteamClient_SteamClient008_GetISteamGenericInterface_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamClient_SteamClient008_GetISteamGenericInterface( void *args ) NTSTATUS ISteamClient_SteamClient008_GetISteamUserStats( void *args ) { struct ISteamClient_SteamClient008_GetISteamUserStats_params *params = (struct ISteamClient_SteamClient008_GetISteamUserStats_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamClient_SteamClient008_GetISteamUserStats( void *args ) NTSTATUS ISteamClient_SteamClient008_GetISteamApps( void *args ) { struct ISteamClient_SteamClient008_GetISteamApps_params *params = (struct ISteamClient_SteamClient008_GetISteamApps_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamClient_SteamClient008_GetISteamApps( void *args ) NTSTATUS ISteamClient_SteamClient008_GetISteamNetworking( void *args ) { struct ISteamClient_SteamClient008_GetISteamNetworking_params *params = (struct ISteamClient_SteamClient008_GetISteamNetworking_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamClient_SteamClient008_GetISteamNetworking( void *args ) NTSTATUS ISteamClient_SteamClient008_GetISteamRemoteStorage( void *args ) { struct ISteamClient_SteamClient008_GetISteamRemoteStorage_params *params = (struct ISteamClient_SteamClient008_GetISteamRemoteStorage_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamClient_SteamClient008_GetISteamRemoteStorage( void *args ) NTSTATUS ISteamClient_SteamClient008_RunFrame( void *args ) { struct ISteamClient_SteamClient008_RunFrame_params *params = (struct ISteamClient_SteamClient008_RunFrame_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamClient_SteamClient008_RunFrame( void *args ) NTSTATUS ISteamClient_SteamClient008_GetIPCCallCount( void *args ) { struct ISteamClient_SteamClient008_GetIPCCallCount_params *params = (struct ISteamClient_SteamClient008_GetIPCCallCount_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamClient_SteamClient008_GetIPCCallCount( void *args ) NTSTATUS ISteamClient_SteamClient008_SetWarningMessageHook( void *args ) { struct ISteamClient_SteamClient008_SetWarningMessageHook_params *params = (struct ISteamClient_SteamClient008_SetWarningMessageHook_params *)args; - struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->linux_side; + struct u_ISteamClient_SteamClient008 *iface = (struct u_ISteamClient_SteamClient008 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; diff --git a/lsteamclient/cppISteamClient_SteamClient009.cpp b/lsteamclient/cppISteamClient_SteamClient009.cpp index c48c3fe7..0abea647 100644 --- a/lsteamclient/cppISteamClient_SteamClient009.cpp +++ b/lsteamclient/cppISteamClient_SteamClient009.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamClient_SteamClient009_CreateSteamPipe( void *args ) { struct ISteamClient_SteamClient009_CreateSteamPipe_params *params = (struct ISteamClient_SteamClient009_CreateSteamPipe_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; params->_ret = iface->CreateSteamPipe( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamClient_SteamClient009_CreateSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient009_BReleaseSteamPipe( void *args ) { struct ISteamClient_SteamClient009_BReleaseSteamPipe_params *params = (struct ISteamClient_SteamClient009_BReleaseSteamPipe_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamClient_SteamClient009_BReleaseSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient009_ConnectToGlobalUser( void *args ) { struct ISteamClient_SteamClient009_ConnectToGlobalUser_params *params = (struct ISteamClient_SteamClient009_ConnectToGlobalUser_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamClient_SteamClient009_ConnectToGlobalUser( void *args ) NTSTATUS ISteamClient_SteamClient009_CreateLocalUser( void *args ) { struct ISteamClient_SteamClient009_CreateLocalUser_params *params = (struct ISteamClient_SteamClient009_CreateLocalUser_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamClient_SteamClient009_CreateLocalUser( void *args ) NTSTATUS ISteamClient_SteamClient009_ReleaseUser( void *args ) { struct ISteamClient_SteamClient009_ReleaseUser_params *params = (struct ISteamClient_SteamClient009_ReleaseUser_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; iface->ReleaseUser( params->hSteamPipe, params->hUser ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamClient_SteamClient009_ReleaseUser( void *args ) NTSTATUS ISteamClient_SteamClient009_GetISteamUser( void *args ) { struct ISteamClient_SteamClient009_GetISteamUser_params *params = (struct ISteamClient_SteamClient009_GetISteamUser_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamClient_SteamClient009_GetISteamUser( void *args ) NTSTATUS ISteamClient_SteamClient009_GetISteamGameServer( void *args ) { struct ISteamClient_SteamClient009_GetISteamGameServer_params *params = (struct ISteamClient_SteamClient009_GetISteamGameServer_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamClient_SteamClient009_GetISteamGameServer( void *args ) NTSTATUS ISteamClient_SteamClient009_SetLocalIPBinding( void *args ) { struct ISteamClient_SteamClient009_SetLocalIPBinding_params *params = (struct ISteamClient_SteamClient009_SetLocalIPBinding_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; iface->SetLocalIPBinding( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamClient_SteamClient009_SetLocalIPBinding( void *args ) NTSTATUS ISteamClient_SteamClient009_GetISteamFriends( void *args ) { struct ISteamClient_SteamClient009_GetISteamFriends_params *params = (struct ISteamClient_SteamClient009_GetISteamFriends_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamClient_SteamClient009_GetISteamFriends( void *args ) NTSTATUS ISteamClient_SteamClient009_GetISteamUtils( void *args ) { struct ISteamClient_SteamClient009_GetISteamUtils_params *params = (struct ISteamClient_SteamClient009_GetISteamUtils_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamClient_SteamClient009_GetISteamUtils( void *args ) NTSTATUS ISteamClient_SteamClient009_GetISteamMatchmaking( void *args ) { struct ISteamClient_SteamClient009_GetISteamMatchmaking_params *params = (struct ISteamClient_SteamClient009_GetISteamMatchmaking_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamClient_SteamClient009_GetISteamMatchmaking( void *args ) NTSTATUS ISteamClient_SteamClient009_GetISteamMasterServerUpdater( void *args ) { struct ISteamClient_SteamClient009_GetISteamMasterServerUpdater_params *params = (struct ISteamClient_SteamClient009_GetISteamMasterServerUpdater_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; params->_ret = iface->GetISteamMasterServerUpdater( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamClient_SteamClient009_GetISteamMasterServerUpdater( void *args ) NTSTATUS ISteamClient_SteamClient009_GetISteamMatchmakingServers( void *args ) { struct ISteamClient_SteamClient009_GetISteamMatchmakingServers_params *params = (struct ISteamClient_SteamClient009_GetISteamMatchmakingServers_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamClient_SteamClient009_GetISteamMatchmakingServers( void *args ) NTSTATUS ISteamClient_SteamClient009_GetISteamGenericInterface( void *args ) { struct ISteamClient_SteamClient009_GetISteamGenericInterface_params *params = (struct ISteamClient_SteamClient009_GetISteamGenericInterface_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamClient_SteamClient009_GetISteamGenericInterface( void *args ) NTSTATUS ISteamClient_SteamClient009_GetISteamUserStats( void *args ) { struct ISteamClient_SteamClient009_GetISteamUserStats_params *params = (struct ISteamClient_SteamClient009_GetISteamUserStats_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamClient_SteamClient009_GetISteamUserStats( void *args ) NTSTATUS ISteamClient_SteamClient009_GetISteamGameServerStats( void *args ) { struct ISteamClient_SteamClient009_GetISteamGameServerStats_params *params = (struct ISteamClient_SteamClient009_GetISteamGameServerStats_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamClient_SteamClient009_GetISteamGameServerStats( void *args ) NTSTATUS ISteamClient_SteamClient009_GetISteamApps( void *args ) { struct ISteamClient_SteamClient009_GetISteamApps_params *params = (struct ISteamClient_SteamClient009_GetISteamApps_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamClient_SteamClient009_GetISteamApps( void *args ) NTSTATUS ISteamClient_SteamClient009_GetISteamNetworking( void *args ) { struct ISteamClient_SteamClient009_GetISteamNetworking_params *params = (struct ISteamClient_SteamClient009_GetISteamNetworking_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamClient_SteamClient009_GetISteamNetworking( void *args ) NTSTATUS ISteamClient_SteamClient009_GetISteamRemoteStorage( void *args ) { struct ISteamClient_SteamClient009_GetISteamRemoteStorage_params *params = (struct ISteamClient_SteamClient009_GetISteamRemoteStorage_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamClient_SteamClient009_GetISteamRemoteStorage( void *args ) NTSTATUS ISteamClient_SteamClient009_RunFrame( void *args ) { struct ISteamClient_SteamClient009_RunFrame_params *params = (struct ISteamClient_SteamClient009_RunFrame_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamClient_SteamClient009_RunFrame( void *args ) NTSTATUS ISteamClient_SteamClient009_GetIPCCallCount( void *args ) { struct ISteamClient_SteamClient009_GetIPCCallCount_params *params = (struct ISteamClient_SteamClient009_GetIPCCallCount_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamClient_SteamClient009_GetIPCCallCount( void *args ) NTSTATUS ISteamClient_SteamClient009_SetWarningMessageHook( void *args ) { struct ISteamClient_SteamClient009_SetWarningMessageHook_params *params = (struct ISteamClient_SteamClient009_SetWarningMessageHook_params *)args; - struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->linux_side; + struct u_ISteamClient_SteamClient009 *iface = (struct u_ISteamClient_SteamClient009 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; diff --git a/lsteamclient/cppISteamClient_SteamClient010.cpp b/lsteamclient/cppISteamClient_SteamClient010.cpp index 1142bae4..35031954 100644 --- a/lsteamclient/cppISteamClient_SteamClient010.cpp +++ b/lsteamclient/cppISteamClient_SteamClient010.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamClient_SteamClient010_CreateSteamPipe( void *args ) { struct ISteamClient_SteamClient010_CreateSteamPipe_params *params = (struct ISteamClient_SteamClient010_CreateSteamPipe_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->CreateSteamPipe( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamClient_SteamClient010_CreateSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient010_BReleaseSteamPipe( void *args ) { struct ISteamClient_SteamClient010_BReleaseSteamPipe_params *params = (struct ISteamClient_SteamClient010_BReleaseSteamPipe_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamClient_SteamClient010_BReleaseSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient010_ConnectToGlobalUser( void *args ) { struct ISteamClient_SteamClient010_ConnectToGlobalUser_params *params = (struct ISteamClient_SteamClient010_ConnectToGlobalUser_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamClient_SteamClient010_ConnectToGlobalUser( void *args ) NTSTATUS ISteamClient_SteamClient010_CreateLocalUser( void *args ) { struct ISteamClient_SteamClient010_CreateLocalUser_params *params = (struct ISteamClient_SteamClient010_CreateLocalUser_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamClient_SteamClient010_CreateLocalUser( void *args ) NTSTATUS ISteamClient_SteamClient010_ReleaseUser( void *args ) { struct ISteamClient_SteamClient010_ReleaseUser_params *params = (struct ISteamClient_SteamClient010_ReleaseUser_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; iface->ReleaseUser( params->hSteamPipe, params->hUser ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamClient_SteamClient010_ReleaseUser( void *args ) NTSTATUS ISteamClient_SteamClient010_GetISteamUser( void *args ) { struct ISteamClient_SteamClient010_GetISteamUser_params *params = (struct ISteamClient_SteamClient010_GetISteamUser_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamClient_SteamClient010_GetISteamUser( void *args ) NTSTATUS ISteamClient_SteamClient010_GetISteamGameServer( void *args ) { struct ISteamClient_SteamClient010_GetISteamGameServer_params *params = (struct ISteamClient_SteamClient010_GetISteamGameServer_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamClient_SteamClient010_GetISteamGameServer( void *args ) NTSTATUS ISteamClient_SteamClient010_SetLocalIPBinding( void *args ) { struct ISteamClient_SteamClient010_SetLocalIPBinding_params *params = (struct ISteamClient_SteamClient010_SetLocalIPBinding_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; iface->SetLocalIPBinding( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamClient_SteamClient010_SetLocalIPBinding( void *args ) NTSTATUS ISteamClient_SteamClient010_GetISteamFriends( void *args ) { struct ISteamClient_SteamClient010_GetISteamFriends_params *params = (struct ISteamClient_SteamClient010_GetISteamFriends_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamClient_SteamClient010_GetISteamFriends( void *args ) NTSTATUS ISteamClient_SteamClient010_GetISteamUtils( void *args ) { struct ISteamClient_SteamClient010_GetISteamUtils_params *params = (struct ISteamClient_SteamClient010_GetISteamUtils_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamClient_SteamClient010_GetISteamUtils( void *args ) NTSTATUS ISteamClient_SteamClient010_GetISteamMatchmaking( void *args ) { struct ISteamClient_SteamClient010_GetISteamMatchmaking_params *params = (struct ISteamClient_SteamClient010_GetISteamMatchmaking_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamClient_SteamClient010_GetISteamMatchmaking( void *args ) NTSTATUS ISteamClient_SteamClient010_GetISteamMasterServerUpdater( void *args ) { struct ISteamClient_SteamClient010_GetISteamMasterServerUpdater_params *params = (struct ISteamClient_SteamClient010_GetISteamMasterServerUpdater_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->GetISteamMasterServerUpdater( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamClient_SteamClient010_GetISteamMasterServerUpdater( void *args ) NTSTATUS ISteamClient_SteamClient010_GetISteamMatchmakingServers( void *args ) { struct ISteamClient_SteamClient010_GetISteamMatchmakingServers_params *params = (struct ISteamClient_SteamClient010_GetISteamMatchmakingServers_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamClient_SteamClient010_GetISteamMatchmakingServers( void *args ) NTSTATUS ISteamClient_SteamClient010_GetISteamGenericInterface( void *args ) { struct ISteamClient_SteamClient010_GetISteamGenericInterface_params *params = (struct ISteamClient_SteamClient010_GetISteamGenericInterface_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamClient_SteamClient010_GetISteamGenericInterface( void *args ) NTSTATUS ISteamClient_SteamClient010_GetISteamUserStats( void *args ) { struct ISteamClient_SteamClient010_GetISteamUserStats_params *params = (struct ISteamClient_SteamClient010_GetISteamUserStats_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamClient_SteamClient010_GetISteamUserStats( void *args ) NTSTATUS ISteamClient_SteamClient010_GetISteamGameServerStats( void *args ) { struct ISteamClient_SteamClient010_GetISteamGameServerStats_params *params = (struct ISteamClient_SteamClient010_GetISteamGameServerStats_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamClient_SteamClient010_GetISteamGameServerStats( void *args ) NTSTATUS ISteamClient_SteamClient010_GetISteamApps( void *args ) { struct ISteamClient_SteamClient010_GetISteamApps_params *params = (struct ISteamClient_SteamClient010_GetISteamApps_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamClient_SteamClient010_GetISteamApps( void *args ) NTSTATUS ISteamClient_SteamClient010_GetISteamNetworking( void *args ) { struct ISteamClient_SteamClient010_GetISteamNetworking_params *params = (struct ISteamClient_SteamClient010_GetISteamNetworking_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamClient_SteamClient010_GetISteamNetworking( void *args ) NTSTATUS ISteamClient_SteamClient010_GetISteamRemoteStorage( void *args ) { struct ISteamClient_SteamClient010_GetISteamRemoteStorage_params *params = (struct ISteamClient_SteamClient010_GetISteamRemoteStorage_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamClient_SteamClient010_GetISteamRemoteStorage( void *args ) NTSTATUS ISteamClient_SteamClient010_RunFrame( void *args ) { struct ISteamClient_SteamClient010_RunFrame_params *params = (struct ISteamClient_SteamClient010_RunFrame_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamClient_SteamClient010_RunFrame( void *args ) NTSTATUS ISteamClient_SteamClient010_GetIPCCallCount( void *args ) { struct ISteamClient_SteamClient010_GetIPCCallCount_params *params = (struct ISteamClient_SteamClient010_GetIPCCallCount_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamClient_SteamClient010_GetIPCCallCount( void *args ) NTSTATUS ISteamClient_SteamClient010_SetWarningMessageHook( void *args ) { struct ISteamClient_SteamClient010_SetWarningMessageHook_params *params = (struct ISteamClient_SteamClient010_SetWarningMessageHook_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -185,7 +185,7 @@ NTSTATUS ISteamClient_SteamClient010_SetWarningMessageHook( void *args ) NTSTATUS ISteamClient_SteamClient010_BShutdownIfAllPipesClosed( void *args ) { struct ISteamClient_SteamClient010_BShutdownIfAllPipesClosed_params *params = (struct ISteamClient_SteamClient010_BShutdownIfAllPipesClosed_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->BShutdownIfAllPipesClosed( ); return 0; } @@ -193,7 +193,7 @@ NTSTATUS ISteamClient_SteamClient010_BShutdownIfAllPipesClosed( void *args ) NTSTATUS ISteamClient_SteamClient010_GetISteamHTTP( void *args ) { struct ISteamClient_SteamClient010_GetISteamHTTP_params *params = (struct ISteamClient_SteamClient010_GetISteamHTTP_params *)args; - struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->linux_side; + struct u_ISteamClient_SteamClient010 *iface = (struct u_ISteamClient_SteamClient010 *)params->u_iface; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient011.cpp b/lsteamclient/cppISteamClient_SteamClient011.cpp index 5a0c0d77..0f0f6d56 100644 --- a/lsteamclient/cppISteamClient_SteamClient011.cpp +++ b/lsteamclient/cppISteamClient_SteamClient011.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamClient_SteamClient011_CreateSteamPipe( void *args ) { struct ISteamClient_SteamClient011_CreateSteamPipe_params *params = (struct ISteamClient_SteamClient011_CreateSteamPipe_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->CreateSteamPipe( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamClient_SteamClient011_CreateSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient011_BReleaseSteamPipe( void *args ) { struct ISteamClient_SteamClient011_BReleaseSteamPipe_params *params = (struct ISteamClient_SteamClient011_BReleaseSteamPipe_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamClient_SteamClient011_BReleaseSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient011_ConnectToGlobalUser( void *args ) { struct ISteamClient_SteamClient011_ConnectToGlobalUser_params *params = (struct ISteamClient_SteamClient011_ConnectToGlobalUser_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamClient_SteamClient011_ConnectToGlobalUser( void *args ) NTSTATUS ISteamClient_SteamClient011_CreateLocalUser( void *args ) { struct ISteamClient_SteamClient011_CreateLocalUser_params *params = (struct ISteamClient_SteamClient011_CreateLocalUser_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamClient_SteamClient011_CreateLocalUser( void *args ) NTSTATUS ISteamClient_SteamClient011_ReleaseUser( void *args ) { struct ISteamClient_SteamClient011_ReleaseUser_params *params = (struct ISteamClient_SteamClient011_ReleaseUser_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; iface->ReleaseUser( params->hSteamPipe, params->hUser ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamClient_SteamClient011_ReleaseUser( void *args ) NTSTATUS ISteamClient_SteamClient011_GetISteamUser( void *args ) { struct ISteamClient_SteamClient011_GetISteamUser_params *params = (struct ISteamClient_SteamClient011_GetISteamUser_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamClient_SteamClient011_GetISteamUser( void *args ) NTSTATUS ISteamClient_SteamClient011_GetISteamGameServer( void *args ) { struct ISteamClient_SteamClient011_GetISteamGameServer_params *params = (struct ISteamClient_SteamClient011_GetISteamGameServer_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamClient_SteamClient011_GetISteamGameServer( void *args ) NTSTATUS ISteamClient_SteamClient011_SetLocalIPBinding( void *args ) { struct ISteamClient_SteamClient011_SetLocalIPBinding_params *params = (struct ISteamClient_SteamClient011_SetLocalIPBinding_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; iface->SetLocalIPBinding( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamClient_SteamClient011_SetLocalIPBinding( void *args ) NTSTATUS ISteamClient_SteamClient011_GetISteamFriends( void *args ) { struct ISteamClient_SteamClient011_GetISteamFriends_params *params = (struct ISteamClient_SteamClient011_GetISteamFriends_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamClient_SteamClient011_GetISteamFriends( void *args ) NTSTATUS ISteamClient_SteamClient011_GetISteamUtils( void *args ) { struct ISteamClient_SteamClient011_GetISteamUtils_params *params = (struct ISteamClient_SteamClient011_GetISteamUtils_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamClient_SteamClient011_GetISteamUtils( void *args ) NTSTATUS ISteamClient_SteamClient011_GetISteamMatchmaking( void *args ) { struct ISteamClient_SteamClient011_GetISteamMatchmaking_params *params = (struct ISteamClient_SteamClient011_GetISteamMatchmaking_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamClient_SteamClient011_GetISteamMatchmaking( void *args ) NTSTATUS ISteamClient_SteamClient011_GetISteamMasterServerUpdater( void *args ) { struct ISteamClient_SteamClient011_GetISteamMasterServerUpdater_params *params = (struct ISteamClient_SteamClient011_GetISteamMasterServerUpdater_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->GetISteamMasterServerUpdater( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamClient_SteamClient011_GetISteamMasterServerUpdater( void *args ) NTSTATUS ISteamClient_SteamClient011_GetISteamMatchmakingServers( void *args ) { struct ISteamClient_SteamClient011_GetISteamMatchmakingServers_params *params = (struct ISteamClient_SteamClient011_GetISteamMatchmakingServers_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamClient_SteamClient011_GetISteamMatchmakingServers( void *args ) NTSTATUS ISteamClient_SteamClient011_GetISteamGenericInterface( void *args ) { struct ISteamClient_SteamClient011_GetISteamGenericInterface_params *params = (struct ISteamClient_SteamClient011_GetISteamGenericInterface_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamClient_SteamClient011_GetISteamGenericInterface( void *args ) NTSTATUS ISteamClient_SteamClient011_GetISteamUserStats( void *args ) { struct ISteamClient_SteamClient011_GetISteamUserStats_params *params = (struct ISteamClient_SteamClient011_GetISteamUserStats_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamClient_SteamClient011_GetISteamUserStats( void *args ) NTSTATUS ISteamClient_SteamClient011_GetISteamGameServerStats( void *args ) { struct ISteamClient_SteamClient011_GetISteamGameServerStats_params *params = (struct ISteamClient_SteamClient011_GetISteamGameServerStats_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamClient_SteamClient011_GetISteamGameServerStats( void *args ) NTSTATUS ISteamClient_SteamClient011_GetISteamApps( void *args ) { struct ISteamClient_SteamClient011_GetISteamApps_params *params = (struct ISteamClient_SteamClient011_GetISteamApps_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamClient_SteamClient011_GetISteamApps( void *args ) NTSTATUS ISteamClient_SteamClient011_GetISteamNetworking( void *args ) { struct ISteamClient_SteamClient011_GetISteamNetworking_params *params = (struct ISteamClient_SteamClient011_GetISteamNetworking_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamClient_SteamClient011_GetISteamNetworking( void *args ) NTSTATUS ISteamClient_SteamClient011_GetISteamRemoteStorage( void *args ) { struct ISteamClient_SteamClient011_GetISteamRemoteStorage_params *params = (struct ISteamClient_SteamClient011_GetISteamRemoteStorage_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamClient_SteamClient011_GetISteamRemoteStorage( void *args ) NTSTATUS ISteamClient_SteamClient011_GetISteamScreenshots( void *args ) { struct ISteamClient_SteamClient011_GetISteamScreenshots_params *params = (struct ISteamClient_SteamClient011_GetISteamScreenshots_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamClient_SteamClient011_GetISteamScreenshots( void *args ) NTSTATUS ISteamClient_SteamClient011_RunFrame( void *args ) { struct ISteamClient_SteamClient011_RunFrame_params *params = (struct ISteamClient_SteamClient011_RunFrame_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamClient_SteamClient011_RunFrame( void *args ) NTSTATUS ISteamClient_SteamClient011_GetIPCCallCount( void *args ) { struct ISteamClient_SteamClient011_GetIPCCallCount_params *params = (struct ISteamClient_SteamClient011_GetIPCCallCount_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamClient_SteamClient011_GetIPCCallCount( void *args ) NTSTATUS ISteamClient_SteamClient011_SetWarningMessageHook( void *args ) { struct ISteamClient_SteamClient011_SetWarningMessageHook_params *params = (struct ISteamClient_SteamClient011_SetWarningMessageHook_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -193,7 +193,7 @@ NTSTATUS ISteamClient_SteamClient011_SetWarningMessageHook( void *args ) NTSTATUS ISteamClient_SteamClient011_BShutdownIfAllPipesClosed( void *args ) { struct ISteamClient_SteamClient011_BShutdownIfAllPipesClosed_params *params = (struct ISteamClient_SteamClient011_BShutdownIfAllPipesClosed_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->BShutdownIfAllPipesClosed( ); return 0; } @@ -201,7 +201,7 @@ NTSTATUS ISteamClient_SteamClient011_BShutdownIfAllPipesClosed( void *args ) NTSTATUS ISteamClient_SteamClient011_GetISteamHTTP( void *args ) { struct ISteamClient_SteamClient011_GetISteamHTTP_params *params = (struct ISteamClient_SteamClient011_GetISteamHTTP_params *)args; - struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->linux_side; + struct u_ISteamClient_SteamClient011 *iface = (struct u_ISteamClient_SteamClient011 *)params->u_iface; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient012.cpp b/lsteamclient/cppISteamClient_SteamClient012.cpp index 3efcf239..cb04eec3 100644 --- a/lsteamclient/cppISteamClient_SteamClient012.cpp +++ b/lsteamclient/cppISteamClient_SteamClient012.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamClient_SteamClient012_CreateSteamPipe( void *args ) { struct ISteamClient_SteamClient012_CreateSteamPipe_params *params = (struct ISteamClient_SteamClient012_CreateSteamPipe_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->CreateSteamPipe( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamClient_SteamClient012_CreateSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient012_BReleaseSteamPipe( void *args ) { struct ISteamClient_SteamClient012_BReleaseSteamPipe_params *params = (struct ISteamClient_SteamClient012_BReleaseSteamPipe_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamClient_SteamClient012_BReleaseSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient012_ConnectToGlobalUser( void *args ) { struct ISteamClient_SteamClient012_ConnectToGlobalUser_params *params = (struct ISteamClient_SteamClient012_ConnectToGlobalUser_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamClient_SteamClient012_ConnectToGlobalUser( void *args ) NTSTATUS ISteamClient_SteamClient012_CreateLocalUser( void *args ) { struct ISteamClient_SteamClient012_CreateLocalUser_params *params = (struct ISteamClient_SteamClient012_CreateLocalUser_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamClient_SteamClient012_CreateLocalUser( void *args ) NTSTATUS ISteamClient_SteamClient012_ReleaseUser( void *args ) { struct ISteamClient_SteamClient012_ReleaseUser_params *params = (struct ISteamClient_SteamClient012_ReleaseUser_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; iface->ReleaseUser( params->hSteamPipe, params->hUser ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamClient_SteamClient012_ReleaseUser( void *args ) NTSTATUS ISteamClient_SteamClient012_GetISteamUser( void *args ) { struct ISteamClient_SteamClient012_GetISteamUser_params *params = (struct ISteamClient_SteamClient012_GetISteamUser_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamClient_SteamClient012_GetISteamUser( void *args ) NTSTATUS ISteamClient_SteamClient012_GetISteamGameServer( void *args ) { struct ISteamClient_SteamClient012_GetISteamGameServer_params *params = (struct ISteamClient_SteamClient012_GetISteamGameServer_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamClient_SteamClient012_GetISteamGameServer( void *args ) NTSTATUS ISteamClient_SteamClient012_SetLocalIPBinding( void *args ) { struct ISteamClient_SteamClient012_SetLocalIPBinding_params *params = (struct ISteamClient_SteamClient012_SetLocalIPBinding_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; iface->SetLocalIPBinding( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamClient_SteamClient012_SetLocalIPBinding( void *args ) NTSTATUS ISteamClient_SteamClient012_GetISteamFriends( void *args ) { struct ISteamClient_SteamClient012_GetISteamFriends_params *params = (struct ISteamClient_SteamClient012_GetISteamFriends_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamClient_SteamClient012_GetISteamFriends( void *args ) NTSTATUS ISteamClient_SteamClient012_GetISteamUtils( void *args ) { struct ISteamClient_SteamClient012_GetISteamUtils_params *params = (struct ISteamClient_SteamClient012_GetISteamUtils_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamClient_SteamClient012_GetISteamUtils( void *args ) NTSTATUS ISteamClient_SteamClient012_GetISteamMatchmaking( void *args ) { struct ISteamClient_SteamClient012_GetISteamMatchmaking_params *params = (struct ISteamClient_SteamClient012_GetISteamMatchmaking_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamClient_SteamClient012_GetISteamMatchmaking( void *args ) NTSTATUS ISteamClient_SteamClient012_GetISteamMatchmakingServers( void *args ) { struct ISteamClient_SteamClient012_GetISteamMatchmakingServers_params *params = (struct ISteamClient_SteamClient012_GetISteamMatchmakingServers_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamClient_SteamClient012_GetISteamMatchmakingServers( void *args ) NTSTATUS ISteamClient_SteamClient012_GetISteamGenericInterface( void *args ) { struct ISteamClient_SteamClient012_GetISteamGenericInterface_params *params = (struct ISteamClient_SteamClient012_GetISteamGenericInterface_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamClient_SteamClient012_GetISteamGenericInterface( void *args ) NTSTATUS ISteamClient_SteamClient012_GetISteamUserStats( void *args ) { struct ISteamClient_SteamClient012_GetISteamUserStats_params *params = (struct ISteamClient_SteamClient012_GetISteamUserStats_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamClient_SteamClient012_GetISteamUserStats( void *args ) NTSTATUS ISteamClient_SteamClient012_GetISteamGameServerStats( void *args ) { struct ISteamClient_SteamClient012_GetISteamGameServerStats_params *params = (struct ISteamClient_SteamClient012_GetISteamGameServerStats_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamClient_SteamClient012_GetISteamGameServerStats( void *args ) NTSTATUS ISteamClient_SteamClient012_GetISteamApps( void *args ) { struct ISteamClient_SteamClient012_GetISteamApps_params *params = (struct ISteamClient_SteamClient012_GetISteamApps_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamClient_SteamClient012_GetISteamApps( void *args ) NTSTATUS ISteamClient_SteamClient012_GetISteamNetworking( void *args ) { struct ISteamClient_SteamClient012_GetISteamNetworking_params *params = (struct ISteamClient_SteamClient012_GetISteamNetworking_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamClient_SteamClient012_GetISteamNetworking( void *args ) NTSTATUS ISteamClient_SteamClient012_GetISteamRemoteStorage( void *args ) { struct ISteamClient_SteamClient012_GetISteamRemoteStorage_params *params = (struct ISteamClient_SteamClient012_GetISteamRemoteStorage_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamClient_SteamClient012_GetISteamRemoteStorage( void *args ) NTSTATUS ISteamClient_SteamClient012_GetISteamScreenshots( void *args ) { struct ISteamClient_SteamClient012_GetISteamScreenshots_params *params = (struct ISteamClient_SteamClient012_GetISteamScreenshots_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamClient_SteamClient012_GetISteamScreenshots( void *args ) NTSTATUS ISteamClient_SteamClient012_RunFrame( void *args ) { struct ISteamClient_SteamClient012_RunFrame_params *params = (struct ISteamClient_SteamClient012_RunFrame_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamClient_SteamClient012_RunFrame( void *args ) NTSTATUS ISteamClient_SteamClient012_GetIPCCallCount( void *args ) { struct ISteamClient_SteamClient012_GetIPCCallCount_params *params = (struct ISteamClient_SteamClient012_GetIPCCallCount_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamClient_SteamClient012_GetIPCCallCount( void *args ) NTSTATUS ISteamClient_SteamClient012_SetWarningMessageHook( void *args ) { struct ISteamClient_SteamClient012_SetWarningMessageHook_params *params = (struct ISteamClient_SteamClient012_SetWarningMessageHook_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -185,7 +185,7 @@ NTSTATUS ISteamClient_SteamClient012_SetWarningMessageHook( void *args ) NTSTATUS ISteamClient_SteamClient012_BShutdownIfAllPipesClosed( void *args ) { struct ISteamClient_SteamClient012_BShutdownIfAllPipesClosed_params *params = (struct ISteamClient_SteamClient012_BShutdownIfAllPipesClosed_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->BShutdownIfAllPipesClosed( ); return 0; } @@ -193,7 +193,7 @@ NTSTATUS ISteamClient_SteamClient012_BShutdownIfAllPipesClosed( void *args ) NTSTATUS ISteamClient_SteamClient012_GetISteamHTTP( void *args ) { struct ISteamClient_SteamClient012_GetISteamHTTP_params *params = (struct ISteamClient_SteamClient012_GetISteamHTTP_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -201,7 +201,7 @@ NTSTATUS ISteamClient_SteamClient012_GetISteamHTTP( void *args ) NTSTATUS ISteamClient_SteamClient012_GetISteamUnifiedMessages( void *args ) { struct ISteamClient_SteamClient012_GetISteamUnifiedMessages_params *params = (struct ISteamClient_SteamClient012_GetISteamUnifiedMessages_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->GetISteamUnifiedMessages( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -209,7 +209,7 @@ NTSTATUS ISteamClient_SteamClient012_GetISteamUnifiedMessages( void *args ) NTSTATUS ISteamClient_SteamClient012_GetISteamController( void *args ) { struct ISteamClient_SteamClient012_GetISteamController_params *params = (struct ISteamClient_SteamClient012_GetISteamController_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -217,7 +217,7 @@ NTSTATUS ISteamClient_SteamClient012_GetISteamController( void *args ) NTSTATUS ISteamClient_SteamClient012_GetISteamUGC( void *args ) { struct ISteamClient_SteamClient012_GetISteamUGC_params *params = (struct ISteamClient_SteamClient012_GetISteamUGC_params *)args; - struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->linux_side; + struct u_ISteamClient_SteamClient012 *iface = (struct u_ISteamClient_SteamClient012 *)params->u_iface; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient013.cpp b/lsteamclient/cppISteamClient_SteamClient013.cpp index 38629986..8edfa68a 100644 --- a/lsteamclient/cppISteamClient_SteamClient013.cpp +++ b/lsteamclient/cppISteamClient_SteamClient013.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamClient_SteamClient013_CreateSteamPipe( void *args ) { struct ISteamClient_SteamClient013_CreateSteamPipe_params *params = (struct ISteamClient_SteamClient013_CreateSteamPipe_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->CreateSteamPipe( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamClient_SteamClient013_CreateSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient013_BReleaseSteamPipe( void *args ) { struct ISteamClient_SteamClient013_BReleaseSteamPipe_params *params = (struct ISteamClient_SteamClient013_BReleaseSteamPipe_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamClient_SteamClient013_BReleaseSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient013_ConnectToGlobalUser( void *args ) { struct ISteamClient_SteamClient013_ConnectToGlobalUser_params *params = (struct ISteamClient_SteamClient013_ConnectToGlobalUser_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamClient_SteamClient013_ConnectToGlobalUser( void *args ) NTSTATUS ISteamClient_SteamClient013_CreateLocalUser( void *args ) { struct ISteamClient_SteamClient013_CreateLocalUser_params *params = (struct ISteamClient_SteamClient013_CreateLocalUser_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamClient_SteamClient013_CreateLocalUser( void *args ) NTSTATUS ISteamClient_SteamClient013_ReleaseUser( void *args ) { struct ISteamClient_SteamClient013_ReleaseUser_params *params = (struct ISteamClient_SteamClient013_ReleaseUser_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; iface->ReleaseUser( params->hSteamPipe, params->hUser ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamClient_SteamClient013_ReleaseUser( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamUser( void *args ) { struct ISteamClient_SteamClient013_GetISteamUser_params *params = (struct ISteamClient_SteamClient013_GetISteamUser_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamUser( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamGameServer( void *args ) { struct ISteamClient_SteamClient013_GetISteamGameServer_params *params = (struct ISteamClient_SteamClient013_GetISteamGameServer_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamGameServer( void *args ) NTSTATUS ISteamClient_SteamClient013_SetLocalIPBinding( void *args ) { struct ISteamClient_SteamClient013_SetLocalIPBinding_params *params = (struct ISteamClient_SteamClient013_SetLocalIPBinding_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; iface->SetLocalIPBinding( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamClient_SteamClient013_SetLocalIPBinding( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamFriends( void *args ) { struct ISteamClient_SteamClient013_GetISteamFriends_params *params = (struct ISteamClient_SteamClient013_GetISteamFriends_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamFriends( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamUtils( void *args ) { struct ISteamClient_SteamClient013_GetISteamUtils_params *params = (struct ISteamClient_SteamClient013_GetISteamUtils_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamUtils( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamMatchmaking( void *args ) { struct ISteamClient_SteamClient013_GetISteamMatchmaking_params *params = (struct ISteamClient_SteamClient013_GetISteamMatchmaking_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamMatchmaking( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamMatchmakingServers( void *args ) { struct ISteamClient_SteamClient013_GetISteamMatchmakingServers_params *params = (struct ISteamClient_SteamClient013_GetISteamMatchmakingServers_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamMatchmakingServers( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamGenericInterface( void *args ) { struct ISteamClient_SteamClient013_GetISteamGenericInterface_params *params = (struct ISteamClient_SteamClient013_GetISteamGenericInterface_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamGenericInterface( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamUserStats( void *args ) { struct ISteamClient_SteamClient013_GetISteamUserStats_params *params = (struct ISteamClient_SteamClient013_GetISteamUserStats_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamUserStats( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamGameServerStats( void *args ) { struct ISteamClient_SteamClient013_GetISteamGameServerStats_params *params = (struct ISteamClient_SteamClient013_GetISteamGameServerStats_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamGameServerStats( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamApps( void *args ) { struct ISteamClient_SteamClient013_GetISteamApps_params *params = (struct ISteamClient_SteamClient013_GetISteamApps_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamApps( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamNetworking( void *args ) { struct ISteamClient_SteamClient013_GetISteamNetworking_params *params = (struct ISteamClient_SteamClient013_GetISteamNetworking_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamNetworking( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamRemoteStorage( void *args ) { struct ISteamClient_SteamClient013_GetISteamRemoteStorage_params *params = (struct ISteamClient_SteamClient013_GetISteamRemoteStorage_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamRemoteStorage( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamScreenshots( void *args ) { struct ISteamClient_SteamClient013_GetISteamScreenshots_params *params = (struct ISteamClient_SteamClient013_GetISteamScreenshots_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamScreenshots( void *args ) NTSTATUS ISteamClient_SteamClient013_RunFrame( void *args ) { struct ISteamClient_SteamClient013_RunFrame_params *params = (struct ISteamClient_SteamClient013_RunFrame_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamClient_SteamClient013_RunFrame( void *args ) NTSTATUS ISteamClient_SteamClient013_GetIPCCallCount( void *args ) { struct ISteamClient_SteamClient013_GetIPCCallCount_params *params = (struct ISteamClient_SteamClient013_GetIPCCallCount_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamClient_SteamClient013_GetIPCCallCount( void *args ) NTSTATUS ISteamClient_SteamClient013_SetWarningMessageHook( void *args ) { struct ISteamClient_SteamClient013_SetWarningMessageHook_params *params = (struct ISteamClient_SteamClient013_SetWarningMessageHook_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -185,7 +185,7 @@ NTSTATUS ISteamClient_SteamClient013_SetWarningMessageHook( void *args ) NTSTATUS ISteamClient_SteamClient013_BShutdownIfAllPipesClosed( void *args ) { struct ISteamClient_SteamClient013_BShutdownIfAllPipesClosed_params *params = (struct ISteamClient_SteamClient013_BShutdownIfAllPipesClosed_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->BShutdownIfAllPipesClosed( ); return 0; } @@ -193,7 +193,7 @@ NTSTATUS ISteamClient_SteamClient013_BShutdownIfAllPipesClosed( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamHTTP( void *args ) { struct ISteamClient_SteamClient013_GetISteamHTTP_params *params = (struct ISteamClient_SteamClient013_GetISteamHTTP_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -201,7 +201,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamHTTP( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamUnifiedMessages( void *args ) { struct ISteamClient_SteamClient013_GetISteamUnifiedMessages_params *params = (struct ISteamClient_SteamClient013_GetISteamUnifiedMessages_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamUnifiedMessages( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -209,7 +209,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamUnifiedMessages( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamController( void *args ) { struct ISteamClient_SteamClient013_GetISteamController_params *params = (struct ISteamClient_SteamClient013_GetISteamController_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -217,7 +217,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamController( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamUGC( void *args ) { struct ISteamClient_SteamClient013_GetISteamUGC_params *params = (struct ISteamClient_SteamClient013_GetISteamUGC_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -225,7 +225,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamUGC( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamInventory( void *args ) { struct ISteamClient_SteamClient013_GetISteamInventory_params *params = (struct ISteamClient_SteamClient013_GetISteamInventory_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamInventory( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -233,7 +233,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamInventory( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamVideo( void *args ) { struct ISteamClient_SteamClient013_GetISteamVideo_params *params = (struct ISteamClient_SteamClient013_GetISteamVideo_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamVideo( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -241,7 +241,7 @@ NTSTATUS ISteamClient_SteamClient013_GetISteamVideo( void *args ) NTSTATUS ISteamClient_SteamClient013_GetISteamAppList( void *args ) { struct ISteamClient_SteamClient013_GetISteamAppList_params *params = (struct ISteamClient_SteamClient013_GetISteamAppList_params *)args; - struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->linux_side; + struct u_ISteamClient_SteamClient013 *iface = (struct u_ISteamClient_SteamClient013 *)params->u_iface; params->_ret = iface->GetISteamAppList( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient014.cpp b/lsteamclient/cppISteamClient_SteamClient014.cpp index bf862f76..e5670fd4 100644 --- a/lsteamclient/cppISteamClient_SteamClient014.cpp +++ b/lsteamclient/cppISteamClient_SteamClient014.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamClient_SteamClient014_CreateSteamPipe( void *args ) { struct ISteamClient_SteamClient014_CreateSteamPipe_params *params = (struct ISteamClient_SteamClient014_CreateSteamPipe_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->CreateSteamPipe( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamClient_SteamClient014_CreateSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient014_BReleaseSteamPipe( void *args ) { struct ISteamClient_SteamClient014_BReleaseSteamPipe_params *params = (struct ISteamClient_SteamClient014_BReleaseSteamPipe_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamClient_SteamClient014_BReleaseSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient014_ConnectToGlobalUser( void *args ) { struct ISteamClient_SteamClient014_ConnectToGlobalUser_params *params = (struct ISteamClient_SteamClient014_ConnectToGlobalUser_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamClient_SteamClient014_ConnectToGlobalUser( void *args ) NTSTATUS ISteamClient_SteamClient014_CreateLocalUser( void *args ) { struct ISteamClient_SteamClient014_CreateLocalUser_params *params = (struct ISteamClient_SteamClient014_CreateLocalUser_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamClient_SteamClient014_CreateLocalUser( void *args ) NTSTATUS ISteamClient_SteamClient014_ReleaseUser( void *args ) { struct ISteamClient_SteamClient014_ReleaseUser_params *params = (struct ISteamClient_SteamClient014_ReleaseUser_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; iface->ReleaseUser( params->hSteamPipe, params->hUser ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamClient_SteamClient014_ReleaseUser( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamUser( void *args ) { struct ISteamClient_SteamClient014_GetISteamUser_params *params = (struct ISteamClient_SteamClient014_GetISteamUser_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamClient_SteamClient014_GetISteamUser( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamGameServer( void *args ) { struct ISteamClient_SteamClient014_GetISteamGameServer_params *params = (struct ISteamClient_SteamClient014_GetISteamGameServer_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamClient_SteamClient014_GetISteamGameServer( void *args ) NTSTATUS ISteamClient_SteamClient014_SetLocalIPBinding( void *args ) { struct ISteamClient_SteamClient014_SetLocalIPBinding_params *params = (struct ISteamClient_SteamClient014_SetLocalIPBinding_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; iface->SetLocalIPBinding( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamClient_SteamClient014_SetLocalIPBinding( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamFriends( void *args ) { struct ISteamClient_SteamClient014_GetISteamFriends_params *params = (struct ISteamClient_SteamClient014_GetISteamFriends_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamClient_SteamClient014_GetISteamFriends( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamUtils( void *args ) { struct ISteamClient_SteamClient014_GetISteamUtils_params *params = (struct ISteamClient_SteamClient014_GetISteamUtils_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamClient_SteamClient014_GetISteamUtils( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamMatchmaking( void *args ) { struct ISteamClient_SteamClient014_GetISteamMatchmaking_params *params = (struct ISteamClient_SteamClient014_GetISteamMatchmaking_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamClient_SteamClient014_GetISteamMatchmaking( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamMatchmakingServers( void *args ) { struct ISteamClient_SteamClient014_GetISteamMatchmakingServers_params *params = (struct ISteamClient_SteamClient014_GetISteamMatchmakingServers_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamClient_SteamClient014_GetISteamMatchmakingServers( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamGenericInterface( void *args ) { struct ISteamClient_SteamClient014_GetISteamGenericInterface_params *params = (struct ISteamClient_SteamClient014_GetISteamGenericInterface_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamClient_SteamClient014_GetISteamGenericInterface( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamUserStats( void *args ) { struct ISteamClient_SteamClient014_GetISteamUserStats_params *params = (struct ISteamClient_SteamClient014_GetISteamUserStats_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamClient_SteamClient014_GetISteamUserStats( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamGameServerStats( void *args ) { struct ISteamClient_SteamClient014_GetISteamGameServerStats_params *params = (struct ISteamClient_SteamClient014_GetISteamGameServerStats_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamClient_SteamClient014_GetISteamGameServerStats( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamApps( void *args ) { struct ISteamClient_SteamClient014_GetISteamApps_params *params = (struct ISteamClient_SteamClient014_GetISteamApps_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamClient_SteamClient014_GetISteamApps( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamNetworking( void *args ) { struct ISteamClient_SteamClient014_GetISteamNetworking_params *params = (struct ISteamClient_SteamClient014_GetISteamNetworking_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamClient_SteamClient014_GetISteamNetworking( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamRemoteStorage( void *args ) { struct ISteamClient_SteamClient014_GetISteamRemoteStorage_params *params = (struct ISteamClient_SteamClient014_GetISteamRemoteStorage_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamClient_SteamClient014_GetISteamRemoteStorage( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamScreenshots( void *args ) { struct ISteamClient_SteamClient014_GetISteamScreenshots_params *params = (struct ISteamClient_SteamClient014_GetISteamScreenshots_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamClient_SteamClient014_GetISteamScreenshots( void *args ) NTSTATUS ISteamClient_SteamClient014_RunFrame( void *args ) { struct ISteamClient_SteamClient014_RunFrame_params *params = (struct ISteamClient_SteamClient014_RunFrame_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamClient_SteamClient014_RunFrame( void *args ) NTSTATUS ISteamClient_SteamClient014_GetIPCCallCount( void *args ) { struct ISteamClient_SteamClient014_GetIPCCallCount_params *params = (struct ISteamClient_SteamClient014_GetIPCCallCount_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamClient_SteamClient014_GetIPCCallCount( void *args ) NTSTATUS ISteamClient_SteamClient014_SetWarningMessageHook( void *args ) { struct ISteamClient_SteamClient014_SetWarningMessageHook_params *params = (struct ISteamClient_SteamClient014_SetWarningMessageHook_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -185,7 +185,7 @@ NTSTATUS ISteamClient_SteamClient014_SetWarningMessageHook( void *args ) NTSTATUS ISteamClient_SteamClient014_BShutdownIfAllPipesClosed( void *args ) { struct ISteamClient_SteamClient014_BShutdownIfAllPipesClosed_params *params = (struct ISteamClient_SteamClient014_BShutdownIfAllPipesClosed_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->BShutdownIfAllPipesClosed( ); return 0; } @@ -193,7 +193,7 @@ NTSTATUS ISteamClient_SteamClient014_BShutdownIfAllPipesClosed( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamHTTP( void *args ) { struct ISteamClient_SteamClient014_GetISteamHTTP_params *params = (struct ISteamClient_SteamClient014_GetISteamHTTP_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -201,7 +201,7 @@ NTSTATUS ISteamClient_SteamClient014_GetISteamHTTP( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamUnifiedMessages( void *args ) { struct ISteamClient_SteamClient014_GetISteamUnifiedMessages_params *params = (struct ISteamClient_SteamClient014_GetISteamUnifiedMessages_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamUnifiedMessages( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -209,7 +209,7 @@ NTSTATUS ISteamClient_SteamClient014_GetISteamUnifiedMessages( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamController( void *args ) { struct ISteamClient_SteamClient014_GetISteamController_params *params = (struct ISteamClient_SteamClient014_GetISteamController_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -217,7 +217,7 @@ NTSTATUS ISteamClient_SteamClient014_GetISteamController( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamUGC( void *args ) { struct ISteamClient_SteamClient014_GetISteamUGC_params *params = (struct ISteamClient_SteamClient014_GetISteamUGC_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -225,7 +225,7 @@ NTSTATUS ISteamClient_SteamClient014_GetISteamUGC( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamAppList( void *args ) { struct ISteamClient_SteamClient014_GetISteamAppList_params *params = (struct ISteamClient_SteamClient014_GetISteamAppList_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamAppList( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -233,7 +233,7 @@ NTSTATUS ISteamClient_SteamClient014_GetISteamAppList( void *args ) NTSTATUS ISteamClient_SteamClient014_GetISteamMusic( void *args ) { struct ISteamClient_SteamClient014_GetISteamMusic_params *params = (struct ISteamClient_SteamClient014_GetISteamMusic_params *)args; - struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->linux_side; + struct u_ISteamClient_SteamClient014 *iface = (struct u_ISteamClient_SteamClient014 *)params->u_iface; params->_ret = iface->GetISteamMusic( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient015.cpp b/lsteamclient/cppISteamClient_SteamClient015.cpp index 86b010d1..d8dca3dd 100644 --- a/lsteamclient/cppISteamClient_SteamClient015.cpp +++ b/lsteamclient/cppISteamClient_SteamClient015.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamClient_SteamClient015_CreateSteamPipe( void *args ) { struct ISteamClient_SteamClient015_CreateSteamPipe_params *params = (struct ISteamClient_SteamClient015_CreateSteamPipe_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->CreateSteamPipe( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamClient_SteamClient015_CreateSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient015_BReleaseSteamPipe( void *args ) { struct ISteamClient_SteamClient015_BReleaseSteamPipe_params *params = (struct ISteamClient_SteamClient015_BReleaseSteamPipe_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamClient_SteamClient015_BReleaseSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient015_ConnectToGlobalUser( void *args ) { struct ISteamClient_SteamClient015_ConnectToGlobalUser_params *params = (struct ISteamClient_SteamClient015_ConnectToGlobalUser_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamClient_SteamClient015_ConnectToGlobalUser( void *args ) NTSTATUS ISteamClient_SteamClient015_CreateLocalUser( void *args ) { struct ISteamClient_SteamClient015_CreateLocalUser_params *params = (struct ISteamClient_SteamClient015_CreateLocalUser_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamClient_SteamClient015_CreateLocalUser( void *args ) NTSTATUS ISteamClient_SteamClient015_ReleaseUser( void *args ) { struct ISteamClient_SteamClient015_ReleaseUser_params *params = (struct ISteamClient_SteamClient015_ReleaseUser_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; iface->ReleaseUser( params->hSteamPipe, params->hUser ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamClient_SteamClient015_ReleaseUser( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamUser( void *args ) { struct ISteamClient_SteamClient015_GetISteamUser_params *params = (struct ISteamClient_SteamClient015_GetISteamUser_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamUser( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamGameServer( void *args ) { struct ISteamClient_SteamClient015_GetISteamGameServer_params *params = (struct ISteamClient_SteamClient015_GetISteamGameServer_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamGameServer( void *args ) NTSTATUS ISteamClient_SteamClient015_SetLocalIPBinding( void *args ) { struct ISteamClient_SteamClient015_SetLocalIPBinding_params *params = (struct ISteamClient_SteamClient015_SetLocalIPBinding_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; iface->SetLocalIPBinding( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamClient_SteamClient015_SetLocalIPBinding( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamFriends( void *args ) { struct ISteamClient_SteamClient015_GetISteamFriends_params *params = (struct ISteamClient_SteamClient015_GetISteamFriends_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamFriends( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamUtils( void *args ) { struct ISteamClient_SteamClient015_GetISteamUtils_params *params = (struct ISteamClient_SteamClient015_GetISteamUtils_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamUtils( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamMatchmaking( void *args ) { struct ISteamClient_SteamClient015_GetISteamMatchmaking_params *params = (struct ISteamClient_SteamClient015_GetISteamMatchmaking_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamMatchmaking( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamMatchmakingServers( void *args ) { struct ISteamClient_SteamClient015_GetISteamMatchmakingServers_params *params = (struct ISteamClient_SteamClient015_GetISteamMatchmakingServers_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamMatchmakingServers( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamGenericInterface( void *args ) { struct ISteamClient_SteamClient015_GetISteamGenericInterface_params *params = (struct ISteamClient_SteamClient015_GetISteamGenericInterface_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamGenericInterface( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamUserStats( void *args ) { struct ISteamClient_SteamClient015_GetISteamUserStats_params *params = (struct ISteamClient_SteamClient015_GetISteamUserStats_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamUserStats( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamGameServerStats( void *args ) { struct ISteamClient_SteamClient015_GetISteamGameServerStats_params *params = (struct ISteamClient_SteamClient015_GetISteamGameServerStats_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamGameServerStats( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamApps( void *args ) { struct ISteamClient_SteamClient015_GetISteamApps_params *params = (struct ISteamClient_SteamClient015_GetISteamApps_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamApps( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamNetworking( void *args ) { struct ISteamClient_SteamClient015_GetISteamNetworking_params *params = (struct ISteamClient_SteamClient015_GetISteamNetworking_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamNetworking( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamRemoteStorage( void *args ) { struct ISteamClient_SteamClient015_GetISteamRemoteStorage_params *params = (struct ISteamClient_SteamClient015_GetISteamRemoteStorage_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamRemoteStorage( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamScreenshots( void *args ) { struct ISteamClient_SteamClient015_GetISteamScreenshots_params *params = (struct ISteamClient_SteamClient015_GetISteamScreenshots_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamScreenshots( void *args ) NTSTATUS ISteamClient_SteamClient015_RunFrame( void *args ) { struct ISteamClient_SteamClient015_RunFrame_params *params = (struct ISteamClient_SteamClient015_RunFrame_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamClient_SteamClient015_RunFrame( void *args ) NTSTATUS ISteamClient_SteamClient015_GetIPCCallCount( void *args ) { struct ISteamClient_SteamClient015_GetIPCCallCount_params *params = (struct ISteamClient_SteamClient015_GetIPCCallCount_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamClient_SteamClient015_GetIPCCallCount( void *args ) NTSTATUS ISteamClient_SteamClient015_SetWarningMessageHook( void *args ) { struct ISteamClient_SteamClient015_SetWarningMessageHook_params *params = (struct ISteamClient_SteamClient015_SetWarningMessageHook_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -185,7 +185,7 @@ NTSTATUS ISteamClient_SteamClient015_SetWarningMessageHook( void *args ) NTSTATUS ISteamClient_SteamClient015_BShutdownIfAllPipesClosed( void *args ) { struct ISteamClient_SteamClient015_BShutdownIfAllPipesClosed_params *params = (struct ISteamClient_SteamClient015_BShutdownIfAllPipesClosed_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->BShutdownIfAllPipesClosed( ); return 0; } @@ -193,7 +193,7 @@ NTSTATUS ISteamClient_SteamClient015_BShutdownIfAllPipesClosed( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamHTTP( void *args ) { struct ISteamClient_SteamClient015_GetISteamHTTP_params *params = (struct ISteamClient_SteamClient015_GetISteamHTTP_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -201,7 +201,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamHTTP( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamUnifiedMessages( void *args ) { struct ISteamClient_SteamClient015_GetISteamUnifiedMessages_params *params = (struct ISteamClient_SteamClient015_GetISteamUnifiedMessages_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamUnifiedMessages( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -209,7 +209,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamUnifiedMessages( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamController( void *args ) { struct ISteamClient_SteamClient015_GetISteamController_params *params = (struct ISteamClient_SteamClient015_GetISteamController_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -217,7 +217,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamController( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamUGC( void *args ) { struct ISteamClient_SteamClient015_GetISteamUGC_params *params = (struct ISteamClient_SteamClient015_GetISteamUGC_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -225,7 +225,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamUGC( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamAppList( void *args ) { struct ISteamClient_SteamClient015_GetISteamAppList_params *params = (struct ISteamClient_SteamClient015_GetISteamAppList_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamAppList( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -233,7 +233,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamAppList( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamMusic( void *args ) { struct ISteamClient_SteamClient015_GetISteamMusic_params *params = (struct ISteamClient_SteamClient015_GetISteamMusic_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamMusic( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -241,7 +241,7 @@ NTSTATUS ISteamClient_SteamClient015_GetISteamMusic( void *args ) NTSTATUS ISteamClient_SteamClient015_GetISteamMusicRemote( void *args ) { struct ISteamClient_SteamClient015_GetISteamMusicRemote_params *params = (struct ISteamClient_SteamClient015_GetISteamMusicRemote_params *)args; - struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->linux_side; + struct u_ISteamClient_SteamClient015 *iface = (struct u_ISteamClient_SteamClient015 *)params->u_iface; params->_ret = iface->GetISteamMusicRemote( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient016.cpp b/lsteamclient/cppISteamClient_SteamClient016.cpp index f1e6c5bb..34bdb05c 100644 --- a/lsteamclient/cppISteamClient_SteamClient016.cpp +++ b/lsteamclient/cppISteamClient_SteamClient016.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamClient_SteamClient016_CreateSteamPipe( void *args ) { struct ISteamClient_SteamClient016_CreateSteamPipe_params *params = (struct ISteamClient_SteamClient016_CreateSteamPipe_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->CreateSteamPipe( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamClient_SteamClient016_CreateSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient016_BReleaseSteamPipe( void *args ) { struct ISteamClient_SteamClient016_BReleaseSteamPipe_params *params = (struct ISteamClient_SteamClient016_BReleaseSteamPipe_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamClient_SteamClient016_BReleaseSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient016_ConnectToGlobalUser( void *args ) { struct ISteamClient_SteamClient016_ConnectToGlobalUser_params *params = (struct ISteamClient_SteamClient016_ConnectToGlobalUser_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamClient_SteamClient016_ConnectToGlobalUser( void *args ) NTSTATUS ISteamClient_SteamClient016_CreateLocalUser( void *args ) { struct ISteamClient_SteamClient016_CreateLocalUser_params *params = (struct ISteamClient_SteamClient016_CreateLocalUser_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamClient_SteamClient016_CreateLocalUser( void *args ) NTSTATUS ISteamClient_SteamClient016_ReleaseUser( void *args ) { struct ISteamClient_SteamClient016_ReleaseUser_params *params = (struct ISteamClient_SteamClient016_ReleaseUser_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; iface->ReleaseUser( params->hSteamPipe, params->hUser ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamClient_SteamClient016_ReleaseUser( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamUser( void *args ) { struct ISteamClient_SteamClient016_GetISteamUser_params *params = (struct ISteamClient_SteamClient016_GetISteamUser_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamUser( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamGameServer( void *args ) { struct ISteamClient_SteamClient016_GetISteamGameServer_params *params = (struct ISteamClient_SteamClient016_GetISteamGameServer_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamGameServer( void *args ) NTSTATUS ISteamClient_SteamClient016_SetLocalIPBinding( void *args ) { struct ISteamClient_SteamClient016_SetLocalIPBinding_params *params = (struct ISteamClient_SteamClient016_SetLocalIPBinding_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; iface->SetLocalIPBinding( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamClient_SteamClient016_SetLocalIPBinding( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamFriends( void *args ) { struct ISteamClient_SteamClient016_GetISteamFriends_params *params = (struct ISteamClient_SteamClient016_GetISteamFriends_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamFriends( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamUtils( void *args ) { struct ISteamClient_SteamClient016_GetISteamUtils_params *params = (struct ISteamClient_SteamClient016_GetISteamUtils_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamUtils( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamMatchmaking( void *args ) { struct ISteamClient_SteamClient016_GetISteamMatchmaking_params *params = (struct ISteamClient_SteamClient016_GetISteamMatchmaking_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamMatchmaking( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamMatchmakingServers( void *args ) { struct ISteamClient_SteamClient016_GetISteamMatchmakingServers_params *params = (struct ISteamClient_SteamClient016_GetISteamMatchmakingServers_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamMatchmakingServers( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamGenericInterface( void *args ) { struct ISteamClient_SteamClient016_GetISteamGenericInterface_params *params = (struct ISteamClient_SteamClient016_GetISteamGenericInterface_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamGenericInterface( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamUserStats( void *args ) { struct ISteamClient_SteamClient016_GetISteamUserStats_params *params = (struct ISteamClient_SteamClient016_GetISteamUserStats_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamUserStats( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamGameServerStats( void *args ) { struct ISteamClient_SteamClient016_GetISteamGameServerStats_params *params = (struct ISteamClient_SteamClient016_GetISteamGameServerStats_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamGameServerStats( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamApps( void *args ) { struct ISteamClient_SteamClient016_GetISteamApps_params *params = (struct ISteamClient_SteamClient016_GetISteamApps_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamApps( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamNetworking( void *args ) { struct ISteamClient_SteamClient016_GetISteamNetworking_params *params = (struct ISteamClient_SteamClient016_GetISteamNetworking_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamNetworking( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamRemoteStorage( void *args ) { struct ISteamClient_SteamClient016_GetISteamRemoteStorage_params *params = (struct ISteamClient_SteamClient016_GetISteamRemoteStorage_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamRemoteStorage( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamScreenshots( void *args ) { struct ISteamClient_SteamClient016_GetISteamScreenshots_params *params = (struct ISteamClient_SteamClient016_GetISteamScreenshots_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamScreenshots( void *args ) NTSTATUS ISteamClient_SteamClient016_RunFrame( void *args ) { struct ISteamClient_SteamClient016_RunFrame_params *params = (struct ISteamClient_SteamClient016_RunFrame_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamClient_SteamClient016_RunFrame( void *args ) NTSTATUS ISteamClient_SteamClient016_GetIPCCallCount( void *args ) { struct ISteamClient_SteamClient016_GetIPCCallCount_params *params = (struct ISteamClient_SteamClient016_GetIPCCallCount_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamClient_SteamClient016_GetIPCCallCount( void *args ) NTSTATUS ISteamClient_SteamClient016_SetWarningMessageHook( void *args ) { struct ISteamClient_SteamClient016_SetWarningMessageHook_params *params = (struct ISteamClient_SteamClient016_SetWarningMessageHook_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -185,7 +185,7 @@ NTSTATUS ISteamClient_SteamClient016_SetWarningMessageHook( void *args ) NTSTATUS ISteamClient_SteamClient016_BShutdownIfAllPipesClosed( void *args ) { struct ISteamClient_SteamClient016_BShutdownIfAllPipesClosed_params *params = (struct ISteamClient_SteamClient016_BShutdownIfAllPipesClosed_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->BShutdownIfAllPipesClosed( ); return 0; } @@ -193,7 +193,7 @@ NTSTATUS ISteamClient_SteamClient016_BShutdownIfAllPipesClosed( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamHTTP( void *args ) { struct ISteamClient_SteamClient016_GetISteamHTTP_params *params = (struct ISteamClient_SteamClient016_GetISteamHTTP_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -201,7 +201,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamHTTP( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamUnifiedMessages( void *args ) { struct ISteamClient_SteamClient016_GetISteamUnifiedMessages_params *params = (struct ISteamClient_SteamClient016_GetISteamUnifiedMessages_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamUnifiedMessages( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -209,7 +209,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamUnifiedMessages( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamController( void *args ) { struct ISteamClient_SteamClient016_GetISteamController_params *params = (struct ISteamClient_SteamClient016_GetISteamController_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -217,7 +217,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamController( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamUGC( void *args ) { struct ISteamClient_SteamClient016_GetISteamUGC_params *params = (struct ISteamClient_SteamClient016_GetISteamUGC_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -225,7 +225,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamUGC( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamAppList( void *args ) { struct ISteamClient_SteamClient016_GetISteamAppList_params *params = (struct ISteamClient_SteamClient016_GetISteamAppList_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamAppList( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -233,7 +233,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamAppList( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamMusic( void *args ) { struct ISteamClient_SteamClient016_GetISteamMusic_params *params = (struct ISteamClient_SteamClient016_GetISteamMusic_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamMusic( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -241,7 +241,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamMusic( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamMusicRemote( void *args ) { struct ISteamClient_SteamClient016_GetISteamMusicRemote_params *params = (struct ISteamClient_SteamClient016_GetISteamMusicRemote_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamMusicRemote( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -249,7 +249,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamMusicRemote( void *args ) NTSTATUS ISteamClient_SteamClient016_GetISteamHTMLSurface( void *args ) { struct ISteamClient_SteamClient016_GetISteamHTMLSurface_params *params = (struct ISteamClient_SteamClient016_GetISteamHTMLSurface_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; params->_ret = iface->GetISteamHTMLSurface( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -257,7 +257,7 @@ NTSTATUS ISteamClient_SteamClient016_GetISteamHTMLSurface( void *args ) NTSTATUS ISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess( void *args ) { struct ISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess_params *params = (struct ISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; void (*U_CDECL u_func)(uint64_t, void *, uint32_t, int32_t) = manual_convert_Set_SteamAPI_CPostAPIResultInProcess_func( params->func ); iface->Set_SteamAPI_CPostAPIResultInProcess( u_func ); return 0; @@ -266,7 +266,7 @@ NTSTATUS ISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess( void NTSTATUS ISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess( void *args ) { struct ISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess_params *params = (struct ISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; void (*U_CDECL u_func)(uint64_t, void *, uint32_t, int32_t) = manual_convert_Remove_SteamAPI_CPostAPIResultInProcess_func( params->func ); iface->Remove_SteamAPI_CPostAPIResultInProcess( u_func ); return 0; @@ -275,7 +275,7 @@ NTSTATUS ISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess( vo NTSTATUS ISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess( void *args ) { struct ISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *params = (struct ISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *)args; - struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->linux_side; + struct u_ISteamClient_SteamClient016 *iface = (struct u_ISteamClient_SteamClient016 *)params->u_iface; uint32_t (*U_CDECL u_func)(int32_t) = manual_convert_Set_SteamAPI_CCheckCallbackRegisteredInProcess_func( params->func ); iface->Set_SteamAPI_CCheckCallbackRegisteredInProcess( u_func ); return 0; diff --git a/lsteamclient/cppISteamClient_SteamClient017.cpp b/lsteamclient/cppISteamClient_SteamClient017.cpp index 7aa2b6e0..bff1edfc 100644 --- a/lsteamclient/cppISteamClient_SteamClient017.cpp +++ b/lsteamclient/cppISteamClient_SteamClient017.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamClient_SteamClient017_CreateSteamPipe( void *args ) { struct ISteamClient_SteamClient017_CreateSteamPipe_params *params = (struct ISteamClient_SteamClient017_CreateSteamPipe_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->CreateSteamPipe( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamClient_SteamClient017_CreateSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient017_BReleaseSteamPipe( void *args ) { struct ISteamClient_SteamClient017_BReleaseSteamPipe_params *params = (struct ISteamClient_SteamClient017_BReleaseSteamPipe_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamClient_SteamClient017_BReleaseSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient017_ConnectToGlobalUser( void *args ) { struct ISteamClient_SteamClient017_ConnectToGlobalUser_params *params = (struct ISteamClient_SteamClient017_ConnectToGlobalUser_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamClient_SteamClient017_ConnectToGlobalUser( void *args ) NTSTATUS ISteamClient_SteamClient017_CreateLocalUser( void *args ) { struct ISteamClient_SteamClient017_CreateLocalUser_params *params = (struct ISteamClient_SteamClient017_CreateLocalUser_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamClient_SteamClient017_CreateLocalUser( void *args ) NTSTATUS ISteamClient_SteamClient017_ReleaseUser( void *args ) { struct ISteamClient_SteamClient017_ReleaseUser_params *params = (struct ISteamClient_SteamClient017_ReleaseUser_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; iface->ReleaseUser( params->hSteamPipe, params->hUser ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamClient_SteamClient017_ReleaseUser( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamUser( void *args ) { struct ISteamClient_SteamClient017_GetISteamUser_params *params = (struct ISteamClient_SteamClient017_GetISteamUser_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamUser( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamGameServer( void *args ) { struct ISteamClient_SteamClient017_GetISteamGameServer_params *params = (struct ISteamClient_SteamClient017_GetISteamGameServer_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamGameServer( void *args ) NTSTATUS ISteamClient_SteamClient017_SetLocalIPBinding( void *args ) { struct ISteamClient_SteamClient017_SetLocalIPBinding_params *params = (struct ISteamClient_SteamClient017_SetLocalIPBinding_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; iface->SetLocalIPBinding( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamClient_SteamClient017_SetLocalIPBinding( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamFriends( void *args ) { struct ISteamClient_SteamClient017_GetISteamFriends_params *params = (struct ISteamClient_SteamClient017_GetISteamFriends_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamFriends( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamUtils( void *args ) { struct ISteamClient_SteamClient017_GetISteamUtils_params *params = (struct ISteamClient_SteamClient017_GetISteamUtils_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamUtils( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamMatchmaking( void *args ) { struct ISteamClient_SteamClient017_GetISteamMatchmaking_params *params = (struct ISteamClient_SteamClient017_GetISteamMatchmaking_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamMatchmaking( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamMatchmakingServers( void *args ) { struct ISteamClient_SteamClient017_GetISteamMatchmakingServers_params *params = (struct ISteamClient_SteamClient017_GetISteamMatchmakingServers_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamMatchmakingServers( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamGenericInterface( void *args ) { struct ISteamClient_SteamClient017_GetISteamGenericInterface_params *params = (struct ISteamClient_SteamClient017_GetISteamGenericInterface_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamGenericInterface( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamUserStats( void *args ) { struct ISteamClient_SteamClient017_GetISteamUserStats_params *params = (struct ISteamClient_SteamClient017_GetISteamUserStats_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamUserStats( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamGameServerStats( void *args ) { struct ISteamClient_SteamClient017_GetISteamGameServerStats_params *params = (struct ISteamClient_SteamClient017_GetISteamGameServerStats_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamGameServerStats( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamApps( void *args ) { struct ISteamClient_SteamClient017_GetISteamApps_params *params = (struct ISteamClient_SteamClient017_GetISteamApps_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamApps( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamNetworking( void *args ) { struct ISteamClient_SteamClient017_GetISteamNetworking_params *params = (struct ISteamClient_SteamClient017_GetISteamNetworking_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamNetworking( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamRemoteStorage( void *args ) { struct ISteamClient_SteamClient017_GetISteamRemoteStorage_params *params = (struct ISteamClient_SteamClient017_GetISteamRemoteStorage_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamRemoteStorage( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamScreenshots( void *args ) { struct ISteamClient_SteamClient017_GetISteamScreenshots_params *params = (struct ISteamClient_SteamClient017_GetISteamScreenshots_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamScreenshots( void *args ) NTSTATUS ISteamClient_SteamClient017_RunFrame( void *args ) { struct ISteamClient_SteamClient017_RunFrame_params *params = (struct ISteamClient_SteamClient017_RunFrame_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamClient_SteamClient017_RunFrame( void *args ) NTSTATUS ISteamClient_SteamClient017_GetIPCCallCount( void *args ) { struct ISteamClient_SteamClient017_GetIPCCallCount_params *params = (struct ISteamClient_SteamClient017_GetIPCCallCount_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamClient_SteamClient017_GetIPCCallCount( void *args ) NTSTATUS ISteamClient_SteamClient017_SetWarningMessageHook( void *args ) { struct ISteamClient_SteamClient017_SetWarningMessageHook_params *params = (struct ISteamClient_SteamClient017_SetWarningMessageHook_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -185,7 +185,7 @@ NTSTATUS ISteamClient_SteamClient017_SetWarningMessageHook( void *args ) NTSTATUS ISteamClient_SteamClient017_BShutdownIfAllPipesClosed( void *args ) { struct ISteamClient_SteamClient017_BShutdownIfAllPipesClosed_params *params = (struct ISteamClient_SteamClient017_BShutdownIfAllPipesClosed_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->BShutdownIfAllPipesClosed( ); return 0; } @@ -193,7 +193,7 @@ NTSTATUS ISteamClient_SteamClient017_BShutdownIfAllPipesClosed( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamHTTP( void *args ) { struct ISteamClient_SteamClient017_GetISteamHTTP_params *params = (struct ISteamClient_SteamClient017_GetISteamHTTP_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -201,7 +201,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamHTTP( void *args ) NTSTATUS ISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages( void *args ) { struct ISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages_params *params = (struct ISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->DEPRECATED_GetISteamUnifiedMessages( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -209,7 +209,7 @@ NTSTATUS ISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages( void * NTSTATUS ISteamClient_SteamClient017_GetISteamController( void *args ) { struct ISteamClient_SteamClient017_GetISteamController_params *params = (struct ISteamClient_SteamClient017_GetISteamController_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -217,7 +217,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamController( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamUGC( void *args ) { struct ISteamClient_SteamClient017_GetISteamUGC_params *params = (struct ISteamClient_SteamClient017_GetISteamUGC_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -225,7 +225,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamUGC( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamAppList( void *args ) { struct ISteamClient_SteamClient017_GetISteamAppList_params *params = (struct ISteamClient_SteamClient017_GetISteamAppList_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamAppList( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -233,7 +233,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamAppList( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamMusic( void *args ) { struct ISteamClient_SteamClient017_GetISteamMusic_params *params = (struct ISteamClient_SteamClient017_GetISteamMusic_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamMusic( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -241,7 +241,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamMusic( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamMusicRemote( void *args ) { struct ISteamClient_SteamClient017_GetISteamMusicRemote_params *params = (struct ISteamClient_SteamClient017_GetISteamMusicRemote_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamMusicRemote( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -249,7 +249,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamMusicRemote( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamHTMLSurface( void *args ) { struct ISteamClient_SteamClient017_GetISteamHTMLSurface_params *params = (struct ISteamClient_SteamClient017_GetISteamHTMLSurface_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamHTMLSurface( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -257,7 +257,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamHTMLSurface( void *args ) NTSTATUS ISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( void *args ) { struct ISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params *params = (struct ISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; void (*U_CDECL u__a)(void) = manual_convert_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess__a( params->_a ); iface->DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( u__a ); return 0; @@ -266,7 +266,7 @@ NTSTATUS ISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInPro NTSTATUS ISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( void *args ) { struct ISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params *params = (struct ISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; void (*U_CDECL u__a)(void) = manual_convert_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess__a( params->_a ); iface->DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( u__a ); return 0; @@ -275,7 +275,7 @@ NTSTATUS ISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultIn NTSTATUS ISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess( void *args ) { struct ISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *params = (struct ISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; uint32_t (*U_CDECL u_func)(int32_t) = manual_convert_Set_SteamAPI_CCheckCallbackRegisteredInProcess_func( params->func ); iface->Set_SteamAPI_CCheckCallbackRegisteredInProcess( u_func ); return 0; @@ -284,7 +284,7 @@ NTSTATUS ISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProc NTSTATUS ISteamClient_SteamClient017_GetISteamInventory( void *args ) { struct ISteamClient_SteamClient017_GetISteamInventory_params *params = (struct ISteamClient_SteamClient017_GetISteamInventory_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamInventory( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -292,7 +292,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamInventory( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamVideo( void *args ) { struct ISteamClient_SteamClient017_GetISteamVideo_params *params = (struct ISteamClient_SteamClient017_GetISteamVideo_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamVideo( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -300,7 +300,7 @@ NTSTATUS ISteamClient_SteamClient017_GetISteamVideo( void *args ) NTSTATUS ISteamClient_SteamClient017_GetISteamParentalSettings( void *args ) { struct ISteamClient_SteamClient017_GetISteamParentalSettings_params *params = (struct ISteamClient_SteamClient017_GetISteamParentalSettings_params *)args; - struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->linux_side; + struct u_ISteamClient_SteamClient017 *iface = (struct u_ISteamClient_SteamClient017 *)params->u_iface; params->_ret = iface->GetISteamParentalSettings( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient018.cpp b/lsteamclient/cppISteamClient_SteamClient018.cpp index ac97c853..e543faaf 100644 --- a/lsteamclient/cppISteamClient_SteamClient018.cpp +++ b/lsteamclient/cppISteamClient_SteamClient018.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamClient_SteamClient018_CreateSteamPipe( void *args ) { struct ISteamClient_SteamClient018_CreateSteamPipe_params *params = (struct ISteamClient_SteamClient018_CreateSteamPipe_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->CreateSteamPipe( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamClient_SteamClient018_CreateSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient018_BReleaseSteamPipe( void *args ) { struct ISteamClient_SteamClient018_BReleaseSteamPipe_params *params = (struct ISteamClient_SteamClient018_BReleaseSteamPipe_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamClient_SteamClient018_BReleaseSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient018_ConnectToGlobalUser( void *args ) { struct ISteamClient_SteamClient018_ConnectToGlobalUser_params *params = (struct ISteamClient_SteamClient018_ConnectToGlobalUser_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamClient_SteamClient018_ConnectToGlobalUser( void *args ) NTSTATUS ISteamClient_SteamClient018_CreateLocalUser( void *args ) { struct ISteamClient_SteamClient018_CreateLocalUser_params *params = (struct ISteamClient_SteamClient018_CreateLocalUser_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamClient_SteamClient018_CreateLocalUser( void *args ) NTSTATUS ISteamClient_SteamClient018_ReleaseUser( void *args ) { struct ISteamClient_SteamClient018_ReleaseUser_params *params = (struct ISteamClient_SteamClient018_ReleaseUser_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; iface->ReleaseUser( params->hSteamPipe, params->hUser ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamClient_SteamClient018_ReleaseUser( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamUser( void *args ) { struct ISteamClient_SteamClient018_GetISteamUser_params *params = (struct ISteamClient_SteamClient018_GetISteamUser_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamUser( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamGameServer( void *args ) { struct ISteamClient_SteamClient018_GetISteamGameServer_params *params = (struct ISteamClient_SteamClient018_GetISteamGameServer_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamGameServer( void *args ) NTSTATUS ISteamClient_SteamClient018_SetLocalIPBinding( void *args ) { struct ISteamClient_SteamClient018_SetLocalIPBinding_params *params = (struct ISteamClient_SteamClient018_SetLocalIPBinding_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; iface->SetLocalIPBinding( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamClient_SteamClient018_SetLocalIPBinding( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamFriends( void *args ) { struct ISteamClient_SteamClient018_GetISteamFriends_params *params = (struct ISteamClient_SteamClient018_GetISteamFriends_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamFriends( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamUtils( void *args ) { struct ISteamClient_SteamClient018_GetISteamUtils_params *params = (struct ISteamClient_SteamClient018_GetISteamUtils_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamUtils( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamMatchmaking( void *args ) { struct ISteamClient_SteamClient018_GetISteamMatchmaking_params *params = (struct ISteamClient_SteamClient018_GetISteamMatchmaking_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamMatchmaking( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamMatchmakingServers( void *args ) { struct ISteamClient_SteamClient018_GetISteamMatchmakingServers_params *params = (struct ISteamClient_SteamClient018_GetISteamMatchmakingServers_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamMatchmakingServers( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamGenericInterface( void *args ) { struct ISteamClient_SteamClient018_GetISteamGenericInterface_params *params = (struct ISteamClient_SteamClient018_GetISteamGenericInterface_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamGenericInterface( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamUserStats( void *args ) { struct ISteamClient_SteamClient018_GetISteamUserStats_params *params = (struct ISteamClient_SteamClient018_GetISteamUserStats_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamUserStats( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamGameServerStats( void *args ) { struct ISteamClient_SteamClient018_GetISteamGameServerStats_params *params = (struct ISteamClient_SteamClient018_GetISteamGameServerStats_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamGameServerStats( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamApps( void *args ) { struct ISteamClient_SteamClient018_GetISteamApps_params *params = (struct ISteamClient_SteamClient018_GetISteamApps_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamApps( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamNetworking( void *args ) { struct ISteamClient_SteamClient018_GetISteamNetworking_params *params = (struct ISteamClient_SteamClient018_GetISteamNetworking_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamNetworking( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamRemoteStorage( void *args ) { struct ISteamClient_SteamClient018_GetISteamRemoteStorage_params *params = (struct ISteamClient_SteamClient018_GetISteamRemoteStorage_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamRemoteStorage( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamScreenshots( void *args ) { struct ISteamClient_SteamClient018_GetISteamScreenshots_params *params = (struct ISteamClient_SteamClient018_GetISteamScreenshots_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamScreenshots( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamGameSearch( void *args ) { struct ISteamClient_SteamClient018_GetISteamGameSearch_params *params = (struct ISteamClient_SteamClient018_GetISteamGameSearch_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamGameSearch( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamGameSearch( void *args ) NTSTATUS ISteamClient_SteamClient018_RunFrame( void *args ) { struct ISteamClient_SteamClient018_RunFrame_params *params = (struct ISteamClient_SteamClient018_RunFrame_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamClient_SteamClient018_RunFrame( void *args ) NTSTATUS ISteamClient_SteamClient018_GetIPCCallCount( void *args ) { struct ISteamClient_SteamClient018_GetIPCCallCount_params *params = (struct ISteamClient_SteamClient018_GetIPCCallCount_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamClient_SteamClient018_GetIPCCallCount( void *args ) NTSTATUS ISteamClient_SteamClient018_SetWarningMessageHook( void *args ) { struct ISteamClient_SteamClient018_SetWarningMessageHook_params *params = (struct ISteamClient_SteamClient018_SetWarningMessageHook_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -193,7 +193,7 @@ NTSTATUS ISteamClient_SteamClient018_SetWarningMessageHook( void *args ) NTSTATUS ISteamClient_SteamClient018_BShutdownIfAllPipesClosed( void *args ) { struct ISteamClient_SteamClient018_BShutdownIfAllPipesClosed_params *params = (struct ISteamClient_SteamClient018_BShutdownIfAllPipesClosed_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->BShutdownIfAllPipesClosed( ); return 0; } @@ -201,7 +201,7 @@ NTSTATUS ISteamClient_SteamClient018_BShutdownIfAllPipesClosed( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamHTTP( void *args ) { struct ISteamClient_SteamClient018_GetISteamHTTP_params *params = (struct ISteamClient_SteamClient018_GetISteamHTTP_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -209,7 +209,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamHTTP( void *args ) NTSTATUS ISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages( void *args ) { struct ISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages_params *params = (struct ISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->DEPRECATED_GetISteamUnifiedMessages( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -217,7 +217,7 @@ NTSTATUS ISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages( void * NTSTATUS ISteamClient_SteamClient018_GetISteamController( void *args ) { struct ISteamClient_SteamClient018_GetISteamController_params *params = (struct ISteamClient_SteamClient018_GetISteamController_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -225,7 +225,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamController( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamUGC( void *args ) { struct ISteamClient_SteamClient018_GetISteamUGC_params *params = (struct ISteamClient_SteamClient018_GetISteamUGC_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -233,7 +233,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamUGC( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamAppList( void *args ) { struct ISteamClient_SteamClient018_GetISteamAppList_params *params = (struct ISteamClient_SteamClient018_GetISteamAppList_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamAppList( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -241,7 +241,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamAppList( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamMusic( void *args ) { struct ISteamClient_SteamClient018_GetISteamMusic_params *params = (struct ISteamClient_SteamClient018_GetISteamMusic_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamMusic( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -249,7 +249,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamMusic( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamMusicRemote( void *args ) { struct ISteamClient_SteamClient018_GetISteamMusicRemote_params *params = (struct ISteamClient_SteamClient018_GetISteamMusicRemote_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamMusicRemote( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -257,7 +257,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamMusicRemote( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamHTMLSurface( void *args ) { struct ISteamClient_SteamClient018_GetISteamHTMLSurface_params *params = (struct ISteamClient_SteamClient018_GetISteamHTMLSurface_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamHTMLSurface( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -265,7 +265,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamHTMLSurface( void *args ) NTSTATUS ISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( void *args ) { struct ISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params *params = (struct ISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; void (*U_CDECL u__a)(void) = manual_convert_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess__a( params->_a ); iface->DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( u__a ); return 0; @@ -274,7 +274,7 @@ NTSTATUS ISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInPro NTSTATUS ISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( void *args ) { struct ISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params *params = (struct ISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; void (*U_CDECL u__a)(void) = manual_convert_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess__a( params->_a ); iface->DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( u__a ); return 0; @@ -283,7 +283,7 @@ NTSTATUS ISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultIn NTSTATUS ISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess( void *args ) { struct ISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *params = (struct ISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; uint32_t (*U_CDECL u_func)(int32_t) = manual_convert_Set_SteamAPI_CCheckCallbackRegisteredInProcess_func( params->func ); iface->Set_SteamAPI_CCheckCallbackRegisteredInProcess( u_func ); return 0; @@ -292,7 +292,7 @@ NTSTATUS ISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProc NTSTATUS ISteamClient_SteamClient018_GetISteamInventory( void *args ) { struct ISteamClient_SteamClient018_GetISteamInventory_params *params = (struct ISteamClient_SteamClient018_GetISteamInventory_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamInventory( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -300,7 +300,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamInventory( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamVideo( void *args ) { struct ISteamClient_SteamClient018_GetISteamVideo_params *params = (struct ISteamClient_SteamClient018_GetISteamVideo_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamVideo( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -308,7 +308,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamVideo( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamParentalSettings( void *args ) { struct ISteamClient_SteamClient018_GetISteamParentalSettings_params *params = (struct ISteamClient_SteamClient018_GetISteamParentalSettings_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamParentalSettings( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -316,7 +316,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamParentalSettings( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamInput( void *args ) { struct ISteamClient_SteamClient018_GetISteamInput_params *params = (struct ISteamClient_SteamClient018_GetISteamInput_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamInput( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -324,7 +324,7 @@ NTSTATUS ISteamClient_SteamClient018_GetISteamInput( void *args ) NTSTATUS ISteamClient_SteamClient018_GetISteamParties( void *args ) { struct ISteamClient_SteamClient018_GetISteamParties_params *params = (struct ISteamClient_SteamClient018_GetISteamParties_params *)args; - struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->linux_side; + struct u_ISteamClient_SteamClient018 *iface = (struct u_ISteamClient_SteamClient018 *)params->u_iface; params->_ret = iface->GetISteamParties( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient019.cpp b/lsteamclient/cppISteamClient_SteamClient019.cpp index 077b9cd0..c690198b 100644 --- a/lsteamclient/cppISteamClient_SteamClient019.cpp +++ b/lsteamclient/cppISteamClient_SteamClient019.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamClient_SteamClient019_CreateSteamPipe( void *args ) { struct ISteamClient_SteamClient019_CreateSteamPipe_params *params = (struct ISteamClient_SteamClient019_CreateSteamPipe_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->CreateSteamPipe( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamClient_SteamClient019_CreateSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient019_BReleaseSteamPipe( void *args ) { struct ISteamClient_SteamClient019_BReleaseSteamPipe_params *params = (struct ISteamClient_SteamClient019_BReleaseSteamPipe_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamClient_SteamClient019_BReleaseSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient019_ConnectToGlobalUser( void *args ) { struct ISteamClient_SteamClient019_ConnectToGlobalUser_params *params = (struct ISteamClient_SteamClient019_ConnectToGlobalUser_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamClient_SteamClient019_ConnectToGlobalUser( void *args ) NTSTATUS ISteamClient_SteamClient019_CreateLocalUser( void *args ) { struct ISteamClient_SteamClient019_CreateLocalUser_params *params = (struct ISteamClient_SteamClient019_CreateLocalUser_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamClient_SteamClient019_CreateLocalUser( void *args ) NTSTATUS ISteamClient_SteamClient019_ReleaseUser( void *args ) { struct ISteamClient_SteamClient019_ReleaseUser_params *params = (struct ISteamClient_SteamClient019_ReleaseUser_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; iface->ReleaseUser( params->hSteamPipe, params->hUser ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamClient_SteamClient019_ReleaseUser( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamUser( void *args ) { struct ISteamClient_SteamClient019_GetISteamUser_params *params = (struct ISteamClient_SteamClient019_GetISteamUser_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamUser( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamGameServer( void *args ) { struct ISteamClient_SteamClient019_GetISteamGameServer_params *params = (struct ISteamClient_SteamClient019_GetISteamGameServer_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamGameServer( void *args ) NTSTATUS ISteamClient_SteamClient019_SetLocalIPBinding( void *args ) { struct ISteamClient_SteamClient019_SetLocalIPBinding_params *params = (struct ISteamClient_SteamClient019_SetLocalIPBinding_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; iface->SetLocalIPBinding( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamClient_SteamClient019_SetLocalIPBinding( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamFriends( void *args ) { struct ISteamClient_SteamClient019_GetISteamFriends_params *params = (struct ISteamClient_SteamClient019_GetISteamFriends_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamFriends( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamUtils( void *args ) { struct ISteamClient_SteamClient019_GetISteamUtils_params *params = (struct ISteamClient_SteamClient019_GetISteamUtils_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamUtils( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamMatchmaking( void *args ) { struct ISteamClient_SteamClient019_GetISteamMatchmaking_params *params = (struct ISteamClient_SteamClient019_GetISteamMatchmaking_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamMatchmaking( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamMatchmakingServers( void *args ) { struct ISteamClient_SteamClient019_GetISteamMatchmakingServers_params *params = (struct ISteamClient_SteamClient019_GetISteamMatchmakingServers_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamMatchmakingServers( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamGenericInterface( void *args ) { struct ISteamClient_SteamClient019_GetISteamGenericInterface_params *params = (struct ISteamClient_SteamClient019_GetISteamGenericInterface_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamGenericInterface( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamUserStats( void *args ) { struct ISteamClient_SteamClient019_GetISteamUserStats_params *params = (struct ISteamClient_SteamClient019_GetISteamUserStats_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamUserStats( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamGameServerStats( void *args ) { struct ISteamClient_SteamClient019_GetISteamGameServerStats_params *params = (struct ISteamClient_SteamClient019_GetISteamGameServerStats_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamGameServerStats( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamApps( void *args ) { struct ISteamClient_SteamClient019_GetISteamApps_params *params = (struct ISteamClient_SteamClient019_GetISteamApps_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamApps( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamNetworking( void *args ) { struct ISteamClient_SteamClient019_GetISteamNetworking_params *params = (struct ISteamClient_SteamClient019_GetISteamNetworking_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamNetworking( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamRemoteStorage( void *args ) { struct ISteamClient_SteamClient019_GetISteamRemoteStorage_params *params = (struct ISteamClient_SteamClient019_GetISteamRemoteStorage_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamRemoteStorage( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamScreenshots( void *args ) { struct ISteamClient_SteamClient019_GetISteamScreenshots_params *params = (struct ISteamClient_SteamClient019_GetISteamScreenshots_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamScreenshots( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamGameSearch( void *args ) { struct ISteamClient_SteamClient019_GetISteamGameSearch_params *params = (struct ISteamClient_SteamClient019_GetISteamGameSearch_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamGameSearch( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamGameSearch( void *args ) NTSTATUS ISteamClient_SteamClient019_RunFrame( void *args ) { struct ISteamClient_SteamClient019_RunFrame_params *params = (struct ISteamClient_SteamClient019_RunFrame_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamClient_SteamClient019_RunFrame( void *args ) NTSTATUS ISteamClient_SteamClient019_GetIPCCallCount( void *args ) { struct ISteamClient_SteamClient019_GetIPCCallCount_params *params = (struct ISteamClient_SteamClient019_GetIPCCallCount_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamClient_SteamClient019_GetIPCCallCount( void *args ) NTSTATUS ISteamClient_SteamClient019_SetWarningMessageHook( void *args ) { struct ISteamClient_SteamClient019_SetWarningMessageHook_params *params = (struct ISteamClient_SteamClient019_SetWarningMessageHook_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -193,7 +193,7 @@ NTSTATUS ISteamClient_SteamClient019_SetWarningMessageHook( void *args ) NTSTATUS ISteamClient_SteamClient019_BShutdownIfAllPipesClosed( void *args ) { struct ISteamClient_SteamClient019_BShutdownIfAllPipesClosed_params *params = (struct ISteamClient_SteamClient019_BShutdownIfAllPipesClosed_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->BShutdownIfAllPipesClosed( ); return 0; } @@ -201,7 +201,7 @@ NTSTATUS ISteamClient_SteamClient019_BShutdownIfAllPipesClosed( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamHTTP( void *args ) { struct ISteamClient_SteamClient019_GetISteamHTTP_params *params = (struct ISteamClient_SteamClient019_GetISteamHTTP_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -209,7 +209,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamHTTP( void *args ) NTSTATUS ISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages( void *args ) { struct ISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages_params *params = (struct ISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->DEPRECATED_GetISteamUnifiedMessages( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -217,7 +217,7 @@ NTSTATUS ISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages( void * NTSTATUS ISteamClient_SteamClient019_GetISteamController( void *args ) { struct ISteamClient_SteamClient019_GetISteamController_params *params = (struct ISteamClient_SteamClient019_GetISteamController_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -225,7 +225,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamController( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamUGC( void *args ) { struct ISteamClient_SteamClient019_GetISteamUGC_params *params = (struct ISteamClient_SteamClient019_GetISteamUGC_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -233,7 +233,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamUGC( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamAppList( void *args ) { struct ISteamClient_SteamClient019_GetISteamAppList_params *params = (struct ISteamClient_SteamClient019_GetISteamAppList_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamAppList( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -241,7 +241,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamAppList( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamMusic( void *args ) { struct ISteamClient_SteamClient019_GetISteamMusic_params *params = (struct ISteamClient_SteamClient019_GetISteamMusic_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamMusic( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -249,7 +249,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamMusic( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamMusicRemote( void *args ) { struct ISteamClient_SteamClient019_GetISteamMusicRemote_params *params = (struct ISteamClient_SteamClient019_GetISteamMusicRemote_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamMusicRemote( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -257,7 +257,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamMusicRemote( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamHTMLSurface( void *args ) { struct ISteamClient_SteamClient019_GetISteamHTMLSurface_params *params = (struct ISteamClient_SteamClient019_GetISteamHTMLSurface_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamHTMLSurface( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -265,7 +265,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamHTMLSurface( void *args ) NTSTATUS ISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( void *args ) { struct ISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params *params = (struct ISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; void (*U_CDECL u__a)(void) = manual_convert_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess__a( params->_a ); iface->DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( u__a ); return 0; @@ -274,7 +274,7 @@ NTSTATUS ISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInPro NTSTATUS ISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( void *args ) { struct ISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params *params = (struct ISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; void (*U_CDECL u__a)(void) = manual_convert_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess__a( params->_a ); iface->DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( u__a ); return 0; @@ -283,7 +283,7 @@ NTSTATUS ISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultIn NTSTATUS ISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess( void *args ) { struct ISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *params = (struct ISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; uint32_t (*U_CDECL u_func)(int32_t) = manual_convert_Set_SteamAPI_CCheckCallbackRegisteredInProcess_func( params->func ); iface->Set_SteamAPI_CCheckCallbackRegisteredInProcess( u_func ); return 0; @@ -292,7 +292,7 @@ NTSTATUS ISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProc NTSTATUS ISteamClient_SteamClient019_GetISteamInventory( void *args ) { struct ISteamClient_SteamClient019_GetISteamInventory_params *params = (struct ISteamClient_SteamClient019_GetISteamInventory_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamInventory( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -300,7 +300,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamInventory( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamVideo( void *args ) { struct ISteamClient_SteamClient019_GetISteamVideo_params *params = (struct ISteamClient_SteamClient019_GetISteamVideo_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamVideo( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -308,7 +308,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamVideo( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamParentalSettings( void *args ) { struct ISteamClient_SteamClient019_GetISteamParentalSettings_params *params = (struct ISteamClient_SteamClient019_GetISteamParentalSettings_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamParentalSettings( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -316,7 +316,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamParentalSettings( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamInput( void *args ) { struct ISteamClient_SteamClient019_GetISteamInput_params *params = (struct ISteamClient_SteamClient019_GetISteamInput_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamInput( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -324,7 +324,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamInput( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamParties( void *args ) { struct ISteamClient_SteamClient019_GetISteamParties_params *params = (struct ISteamClient_SteamClient019_GetISteamParties_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamParties( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -332,7 +332,7 @@ NTSTATUS ISteamClient_SteamClient019_GetISteamParties( void *args ) NTSTATUS ISteamClient_SteamClient019_GetISteamRemotePlay( void *args ) { struct ISteamClient_SteamClient019_GetISteamRemotePlay_params *params = (struct ISteamClient_SteamClient019_GetISteamRemotePlay_params *)args; - struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->linux_side; + struct u_ISteamClient_SteamClient019 *iface = (struct u_ISteamClient_SteamClient019 *)params->u_iface; params->_ret = iface->GetISteamRemotePlay( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient020.cpp b/lsteamclient/cppISteamClient_SteamClient020.cpp index 599accdc..cded9fbe 100644 --- a/lsteamclient/cppISteamClient_SteamClient020.cpp +++ b/lsteamclient/cppISteamClient_SteamClient020.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamClient_SteamClient020_CreateSteamPipe( void *args ) { struct ISteamClient_SteamClient020_CreateSteamPipe_params *params = (struct ISteamClient_SteamClient020_CreateSteamPipe_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->CreateSteamPipe( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamClient_SteamClient020_CreateSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient020_BReleaseSteamPipe( void *args ) { struct ISteamClient_SteamClient020_BReleaseSteamPipe_params *params = (struct ISteamClient_SteamClient020_BReleaseSteamPipe_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamClient_SteamClient020_BReleaseSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient020_ConnectToGlobalUser( void *args ) { struct ISteamClient_SteamClient020_ConnectToGlobalUser_params *params = (struct ISteamClient_SteamClient020_ConnectToGlobalUser_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamClient_SteamClient020_ConnectToGlobalUser( void *args ) NTSTATUS ISteamClient_SteamClient020_CreateLocalUser( void *args ) { struct ISteamClient_SteamClient020_CreateLocalUser_params *params = (struct ISteamClient_SteamClient020_CreateLocalUser_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamClient_SteamClient020_CreateLocalUser( void *args ) NTSTATUS ISteamClient_SteamClient020_ReleaseUser( void *args ) { struct ISteamClient_SteamClient020_ReleaseUser_params *params = (struct ISteamClient_SteamClient020_ReleaseUser_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; iface->ReleaseUser( params->hSteamPipe, params->hUser ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamClient_SteamClient020_ReleaseUser( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamUser( void *args ) { struct ISteamClient_SteamClient020_GetISteamUser_params *params = (struct ISteamClient_SteamClient020_GetISteamUser_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamUser( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamGameServer( void *args ) { struct ISteamClient_SteamClient020_GetISteamGameServer_params *params = (struct ISteamClient_SteamClient020_GetISteamGameServer_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamGameServer( void *args ) NTSTATUS ISteamClient_SteamClient020_SetLocalIPBinding( void *args ) { struct ISteamClient_SteamClient020_SetLocalIPBinding_params *params = (struct ISteamClient_SteamClient020_SetLocalIPBinding_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; iface->SetLocalIPBinding( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamClient_SteamClient020_SetLocalIPBinding( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamFriends( void *args ) { struct ISteamClient_SteamClient020_GetISteamFriends_params *params = (struct ISteamClient_SteamClient020_GetISteamFriends_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamFriends( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamUtils( void *args ) { struct ISteamClient_SteamClient020_GetISteamUtils_params *params = (struct ISteamClient_SteamClient020_GetISteamUtils_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamUtils( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamMatchmaking( void *args ) { struct ISteamClient_SteamClient020_GetISteamMatchmaking_params *params = (struct ISteamClient_SteamClient020_GetISteamMatchmaking_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamMatchmaking( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamMatchmakingServers( void *args ) { struct ISteamClient_SteamClient020_GetISteamMatchmakingServers_params *params = (struct ISteamClient_SteamClient020_GetISteamMatchmakingServers_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamMatchmakingServers( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamGenericInterface( void *args ) { struct ISteamClient_SteamClient020_GetISteamGenericInterface_params *params = (struct ISteamClient_SteamClient020_GetISteamGenericInterface_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamGenericInterface( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamUserStats( void *args ) { struct ISteamClient_SteamClient020_GetISteamUserStats_params *params = (struct ISteamClient_SteamClient020_GetISteamUserStats_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamUserStats( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamGameServerStats( void *args ) { struct ISteamClient_SteamClient020_GetISteamGameServerStats_params *params = (struct ISteamClient_SteamClient020_GetISteamGameServerStats_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamGameServerStats( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamApps( void *args ) { struct ISteamClient_SteamClient020_GetISteamApps_params *params = (struct ISteamClient_SteamClient020_GetISteamApps_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamApps( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamNetworking( void *args ) { struct ISteamClient_SteamClient020_GetISteamNetworking_params *params = (struct ISteamClient_SteamClient020_GetISteamNetworking_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamNetworking( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamRemoteStorage( void *args ) { struct ISteamClient_SteamClient020_GetISteamRemoteStorage_params *params = (struct ISteamClient_SteamClient020_GetISteamRemoteStorage_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamRemoteStorage( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamScreenshots( void *args ) { struct ISteamClient_SteamClient020_GetISteamScreenshots_params *params = (struct ISteamClient_SteamClient020_GetISteamScreenshots_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamScreenshots( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamGameSearch( void *args ) { struct ISteamClient_SteamClient020_GetISteamGameSearch_params *params = (struct ISteamClient_SteamClient020_GetISteamGameSearch_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamGameSearch( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamGameSearch( void *args ) NTSTATUS ISteamClient_SteamClient020_RunFrame( void *args ) { struct ISteamClient_SteamClient020_RunFrame_params *params = (struct ISteamClient_SteamClient020_RunFrame_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamClient_SteamClient020_RunFrame( void *args ) NTSTATUS ISteamClient_SteamClient020_GetIPCCallCount( void *args ) { struct ISteamClient_SteamClient020_GetIPCCallCount_params *params = (struct ISteamClient_SteamClient020_GetIPCCallCount_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamClient_SteamClient020_GetIPCCallCount( void *args ) NTSTATUS ISteamClient_SteamClient020_SetWarningMessageHook( void *args ) { struct ISteamClient_SteamClient020_SetWarningMessageHook_params *params = (struct ISteamClient_SteamClient020_SetWarningMessageHook_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -193,7 +193,7 @@ NTSTATUS ISteamClient_SteamClient020_SetWarningMessageHook( void *args ) NTSTATUS ISteamClient_SteamClient020_BShutdownIfAllPipesClosed( void *args ) { struct ISteamClient_SteamClient020_BShutdownIfAllPipesClosed_params *params = (struct ISteamClient_SteamClient020_BShutdownIfAllPipesClosed_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->BShutdownIfAllPipesClosed( ); return 0; } @@ -201,7 +201,7 @@ NTSTATUS ISteamClient_SteamClient020_BShutdownIfAllPipesClosed( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamHTTP( void *args ) { struct ISteamClient_SteamClient020_GetISteamHTTP_params *params = (struct ISteamClient_SteamClient020_GetISteamHTTP_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -209,7 +209,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamHTTP( void *args ) NTSTATUS ISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages( void *args ) { struct ISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages_params *params = (struct ISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->DEPRECATED_GetISteamUnifiedMessages( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -217,7 +217,7 @@ NTSTATUS ISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages( void * NTSTATUS ISteamClient_SteamClient020_GetISteamController( void *args ) { struct ISteamClient_SteamClient020_GetISteamController_params *params = (struct ISteamClient_SteamClient020_GetISteamController_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -225,7 +225,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamController( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamUGC( void *args ) { struct ISteamClient_SteamClient020_GetISteamUGC_params *params = (struct ISteamClient_SteamClient020_GetISteamUGC_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -233,7 +233,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamUGC( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamAppList( void *args ) { struct ISteamClient_SteamClient020_GetISteamAppList_params *params = (struct ISteamClient_SteamClient020_GetISteamAppList_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamAppList( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -241,7 +241,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamAppList( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamMusic( void *args ) { struct ISteamClient_SteamClient020_GetISteamMusic_params *params = (struct ISteamClient_SteamClient020_GetISteamMusic_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamMusic( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -249,7 +249,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamMusic( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamMusicRemote( void *args ) { struct ISteamClient_SteamClient020_GetISteamMusicRemote_params *params = (struct ISteamClient_SteamClient020_GetISteamMusicRemote_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamMusicRemote( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -257,7 +257,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamMusicRemote( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamHTMLSurface( void *args ) { struct ISteamClient_SteamClient020_GetISteamHTMLSurface_params *params = (struct ISteamClient_SteamClient020_GetISteamHTMLSurface_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamHTMLSurface( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -265,7 +265,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamHTMLSurface( void *args ) NTSTATUS ISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( void *args ) { struct ISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params *params = (struct ISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; void (*U_CDECL u__a)(void) = manual_convert_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess__a( params->_a ); iface->DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( u__a ); return 0; @@ -274,7 +274,7 @@ NTSTATUS ISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInPro NTSTATUS ISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( void *args ) { struct ISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params *params = (struct ISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; void (*U_CDECL u__a)(void) = manual_convert_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess__a( params->_a ); iface->DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( u__a ); return 0; @@ -283,7 +283,7 @@ NTSTATUS ISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultIn NTSTATUS ISteamClient_SteamClient020_GetISteamInventory( void *args ) { struct ISteamClient_SteamClient020_GetISteamInventory_params *params = (struct ISteamClient_SteamClient020_GetISteamInventory_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamInventory( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -291,7 +291,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamInventory( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamVideo( void *args ) { struct ISteamClient_SteamClient020_GetISteamVideo_params *params = (struct ISteamClient_SteamClient020_GetISteamVideo_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamVideo( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -299,7 +299,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamVideo( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamParentalSettings( void *args ) { struct ISteamClient_SteamClient020_GetISteamParentalSettings_params *params = (struct ISteamClient_SteamClient020_GetISteamParentalSettings_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamParentalSettings( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -307,7 +307,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamParentalSettings( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamInput( void *args ) { struct ISteamClient_SteamClient020_GetISteamInput_params *params = (struct ISteamClient_SteamClient020_GetISteamInput_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamInput( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -315,7 +315,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamInput( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamParties( void *args ) { struct ISteamClient_SteamClient020_GetISteamParties_params *params = (struct ISteamClient_SteamClient020_GetISteamParties_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamParties( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -323,7 +323,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamParties( void *args ) NTSTATUS ISteamClient_SteamClient020_GetISteamRemotePlay( void *args ) { struct ISteamClient_SteamClient020_GetISteamRemotePlay_params *params = (struct ISteamClient_SteamClient020_GetISteamRemotePlay_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; params->_ret = iface->GetISteamRemotePlay( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -331,7 +331,7 @@ NTSTATUS ISteamClient_SteamClient020_GetISteamRemotePlay( void *args ) NTSTATUS ISteamClient_SteamClient020_DestroyAllInterfaces( void *args ) { struct ISteamClient_SteamClient020_DestroyAllInterfaces_params *params = (struct ISteamClient_SteamClient020_DestroyAllInterfaces_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; iface->DestroyAllInterfaces( ); return 0; } diff --git a/lsteamclient/cppISteamClient_SteamClient021.cpp b/lsteamclient/cppISteamClient_SteamClient021.cpp index 8932f8c8..0a561e4d 100644 --- a/lsteamclient/cppISteamClient_SteamClient021.cpp +++ b/lsteamclient/cppISteamClient_SteamClient021.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamClient_SteamClient021_CreateSteamPipe( void *args ) { struct ISteamClient_SteamClient021_CreateSteamPipe_params *params = (struct ISteamClient_SteamClient021_CreateSteamPipe_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->CreateSteamPipe( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamClient_SteamClient021_CreateSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient021_BReleaseSteamPipe( void *args ) { struct ISteamClient_SteamClient021_BReleaseSteamPipe_params *params = (struct ISteamClient_SteamClient021_BReleaseSteamPipe_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->BReleaseSteamPipe( params->hSteamPipe ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamClient_SteamClient021_BReleaseSteamPipe( void *args ) NTSTATUS ISteamClient_SteamClient021_ConnectToGlobalUser( void *args ) { struct ISteamClient_SteamClient021_ConnectToGlobalUser_params *params = (struct ISteamClient_SteamClient021_ConnectToGlobalUser_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->ConnectToGlobalUser( params->hSteamPipe ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamClient_SteamClient021_ConnectToGlobalUser( void *args ) NTSTATUS ISteamClient_SteamClient021_CreateLocalUser( void *args ) { struct ISteamClient_SteamClient021_CreateLocalUser_params *params = (struct ISteamClient_SteamClient021_CreateLocalUser_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->CreateLocalUser( params->phSteamPipe, params->eAccountType ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamClient_SteamClient021_CreateLocalUser( void *args ) NTSTATUS ISteamClient_SteamClient021_ReleaseUser( void *args ) { struct ISteamClient_SteamClient021_ReleaseUser_params *params = (struct ISteamClient_SteamClient021_ReleaseUser_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; iface->ReleaseUser( params->hSteamPipe, params->hUser ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamClient_SteamClient021_ReleaseUser( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamUser( void *args ) { struct ISteamClient_SteamClient021_GetISteamUser_params *params = (struct ISteamClient_SteamClient021_GetISteamUser_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamUser( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamUser( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamGameServer( void *args ) { struct ISteamClient_SteamClient021_GetISteamGameServer_params *params = (struct ISteamClient_SteamClient021_GetISteamGameServer_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamGameServer( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamGameServer( void *args ) NTSTATUS ISteamClient_SteamClient021_SetLocalIPBinding( void *args ) { struct ISteamClient_SteamClient021_SetLocalIPBinding_params *params = (struct ISteamClient_SteamClient021_SetLocalIPBinding_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; iface->SetLocalIPBinding( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamClient_SteamClient021_SetLocalIPBinding( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamFriends( void *args ) { struct ISteamClient_SteamClient021_GetISteamFriends_params *params = (struct ISteamClient_SteamClient021_GetISteamFriends_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamFriends( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamFriends( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamUtils( void *args ) { struct ISteamClient_SteamClient021_GetISteamUtils_params *params = (struct ISteamClient_SteamClient021_GetISteamUtils_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamUtils( params->hSteamPipe, params->pchVersion ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamUtils( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamMatchmaking( void *args ) { struct ISteamClient_SteamClient021_GetISteamMatchmaking_params *params = (struct ISteamClient_SteamClient021_GetISteamMatchmaking_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamMatchmaking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamMatchmaking( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamMatchmakingServers( void *args ) { struct ISteamClient_SteamClient021_GetISteamMatchmakingServers_params *params = (struct ISteamClient_SteamClient021_GetISteamMatchmakingServers_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamMatchmakingServers( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamMatchmakingServers( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamGenericInterface( void *args ) { struct ISteamClient_SteamClient021_GetISteamGenericInterface_params *params = (struct ISteamClient_SteamClient021_GetISteamGenericInterface_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamGenericInterface( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamGenericInterface( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamUserStats( void *args ) { struct ISteamClient_SteamClient021_GetISteamUserStats_params *params = (struct ISteamClient_SteamClient021_GetISteamUserStats_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamUserStats( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamUserStats( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamGameServerStats( void *args ) { struct ISteamClient_SteamClient021_GetISteamGameServerStats_params *params = (struct ISteamClient_SteamClient021_GetISteamGameServerStats_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamGameServerStats( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamGameServerStats( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamApps( void *args ) { struct ISteamClient_SteamClient021_GetISteamApps_params *params = (struct ISteamClient_SteamClient021_GetISteamApps_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamApps( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamApps( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamNetworking( void *args ) { struct ISteamClient_SteamClient021_GetISteamNetworking_params *params = (struct ISteamClient_SteamClient021_GetISteamNetworking_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamNetworking( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamNetworking( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamRemoteStorage( void *args ) { struct ISteamClient_SteamClient021_GetISteamRemoteStorage_params *params = (struct ISteamClient_SteamClient021_GetISteamRemoteStorage_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamRemoteStorage( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamRemoteStorage( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamScreenshots( void *args ) { struct ISteamClient_SteamClient021_GetISteamScreenshots_params *params = (struct ISteamClient_SteamClient021_GetISteamScreenshots_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamScreenshots( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamScreenshots( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamGameSearch( void *args ) { struct ISteamClient_SteamClient021_GetISteamGameSearch_params *params = (struct ISteamClient_SteamClient021_GetISteamGameSearch_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamGameSearch( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamGameSearch( void *args ) NTSTATUS ISteamClient_SteamClient021_RunFrame( void *args ) { struct ISteamClient_SteamClient021_RunFrame_params *params = (struct ISteamClient_SteamClient021_RunFrame_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamClient_SteamClient021_RunFrame( void *args ) NTSTATUS ISteamClient_SteamClient021_GetIPCCallCount( void *args ) { struct ISteamClient_SteamClient021_GetIPCCallCount_params *params = (struct ISteamClient_SteamClient021_GetIPCCallCount_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamClient_SteamClient021_GetIPCCallCount( void *args ) NTSTATUS ISteamClient_SteamClient021_SetWarningMessageHook( void *args ) { struct ISteamClient_SteamClient021_SetWarningMessageHook_params *params = (struct ISteamClient_SteamClient021_SetWarningMessageHook_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -193,7 +193,7 @@ NTSTATUS ISteamClient_SteamClient021_SetWarningMessageHook( void *args ) NTSTATUS ISteamClient_SteamClient021_BShutdownIfAllPipesClosed( void *args ) { struct ISteamClient_SteamClient021_BShutdownIfAllPipesClosed_params *params = (struct ISteamClient_SteamClient021_BShutdownIfAllPipesClosed_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->BShutdownIfAllPipesClosed( ); return 0; } @@ -201,7 +201,7 @@ NTSTATUS ISteamClient_SteamClient021_BShutdownIfAllPipesClosed( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamHTTP( void *args ) { struct ISteamClient_SteamClient021_GetISteamHTTP_params *params = (struct ISteamClient_SteamClient021_GetISteamHTTP_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamHTTP( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -209,7 +209,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamHTTP( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamController( void *args ) { struct ISteamClient_SteamClient021_GetISteamController_params *params = (struct ISteamClient_SteamClient021_GetISteamController_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamController( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -217,7 +217,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamController( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamUGC( void *args ) { struct ISteamClient_SteamClient021_GetISteamUGC_params *params = (struct ISteamClient_SteamClient021_GetISteamUGC_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamUGC( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -225,7 +225,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamUGC( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamMusic( void *args ) { struct ISteamClient_SteamClient021_GetISteamMusic_params *params = (struct ISteamClient_SteamClient021_GetISteamMusic_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamMusic( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -233,7 +233,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamMusic( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamMusicRemote( void *args ) { struct ISteamClient_SteamClient021_GetISteamMusicRemote_params *params = (struct ISteamClient_SteamClient021_GetISteamMusicRemote_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamMusicRemote( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -241,7 +241,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamMusicRemote( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamHTMLSurface( void *args ) { struct ISteamClient_SteamClient021_GetISteamHTMLSurface_params *params = (struct ISteamClient_SteamClient021_GetISteamHTMLSurface_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamHTMLSurface( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -249,7 +249,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamHTMLSurface( void *args ) NTSTATUS ISteamClient_SteamClient021_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( void *args ) { struct ISteamClient_SteamClient021_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params *params = (struct ISteamClient_SteamClient021_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; void (*U_CDECL u__a)(void) = manual_convert_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess__a( params->_a ); iface->DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess( u__a ); return 0; @@ -258,7 +258,7 @@ NTSTATUS ISteamClient_SteamClient021_DEPRECATED_Set_SteamAPI_CPostAPIResultInPro NTSTATUS ISteamClient_SteamClient021_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( void *args ) { struct ISteamClient_SteamClient021_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params *params = (struct ISteamClient_SteamClient021_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; void (*U_CDECL u__a)(void) = manual_convert_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess__a( params->_a ); iface->DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess( u__a ); return 0; @@ -267,7 +267,7 @@ NTSTATUS ISteamClient_SteamClient021_DEPRECATED_Remove_SteamAPI_CPostAPIResultIn NTSTATUS ISteamClient_SteamClient021_GetISteamInventory( void *args ) { struct ISteamClient_SteamClient021_GetISteamInventory_params *params = (struct ISteamClient_SteamClient021_GetISteamInventory_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamInventory( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -275,7 +275,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamInventory( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamVideo( void *args ) { struct ISteamClient_SteamClient021_GetISteamVideo_params *params = (struct ISteamClient_SteamClient021_GetISteamVideo_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamVideo( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -283,7 +283,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamVideo( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamParentalSettings( void *args ) { struct ISteamClient_SteamClient021_GetISteamParentalSettings_params *params = (struct ISteamClient_SteamClient021_GetISteamParentalSettings_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamParentalSettings( params->hSteamuser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -291,7 +291,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamParentalSettings( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamInput( void *args ) { struct ISteamClient_SteamClient021_GetISteamInput_params *params = (struct ISteamClient_SteamClient021_GetISteamInput_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamInput( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -299,7 +299,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamInput( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamParties( void *args ) { struct ISteamClient_SteamClient021_GetISteamParties_params *params = (struct ISteamClient_SteamClient021_GetISteamParties_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamParties( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -307,7 +307,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamParties( void *args ) NTSTATUS ISteamClient_SteamClient021_GetISteamRemotePlay( void *args ) { struct ISteamClient_SteamClient021_GetISteamRemotePlay_params *params = (struct ISteamClient_SteamClient021_GetISteamRemotePlay_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; params->_ret = iface->GetISteamRemotePlay( params->hSteamUser, params->hSteamPipe, params->pchVersion ); return 0; } @@ -315,7 +315,7 @@ NTSTATUS ISteamClient_SteamClient021_GetISteamRemotePlay( void *args ) NTSTATUS ISteamClient_SteamClient021_DestroyAllInterfaces( void *args ) { struct ISteamClient_SteamClient021_DestroyAllInterfaces_params *params = (struct ISteamClient_SteamClient021_DestroyAllInterfaces_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; iface->DestroyAllInterfaces( ); return 0; } diff --git a/lsteamclient/cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION.cpp b/lsteamclient/cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION.cpp index c1c984bd..56e7e646 100644 --- a/lsteamclient/cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION.cpp +++ b/lsteamclient/cppISteamController_STEAMCONTROLLER_INTERFACE_VERSION.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init( void *args ) { struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init_params *params = (struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init_params *)args; - struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *iface = (struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *)params->linux_side; + struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *iface = (struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *)params->u_iface; char *u_pchAbsolutePathToControllerConfigVDF = steamclient_dos_to_unix_path( params->pchAbsolutePathToControllerConfigVDF, 0 ); params->_ret = iface->Init( u_pchAbsolutePathToControllerConfigVDF ); steamclient_free_path( u_pchAbsolutePathToControllerConfigVDF ); @@ -18,7 +18,7 @@ NTSTATUS ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init( void *args ) NTSTATUS ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown( void *args ) { struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown_params *params = (struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown_params *)args; - struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *iface = (struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *)params->linux_side; + struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *iface = (struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *)params->u_iface; params->_ret = iface->Shutdown( ); return 0; } @@ -26,7 +26,7 @@ NTSTATUS ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown( void *args NTSTATUS ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame( void *args ) { struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame_params *params = (struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame_params *)args; - struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *iface = (struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *)params->linux_side; + struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *iface = (struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *)params->u_iface; iface->RunFrame( ); return 0; } @@ -34,7 +34,7 @@ NTSTATUS ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame( void *args NTSTATUS ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState( void *args ) { struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState_params *params = (struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState_params *)args; - struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *iface = (struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *)params->linux_side; + struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *iface = (struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *)params->u_iface; params->_ret = iface->GetControllerState( params->unControllerIndex, params->pState ); return 0; } @@ -42,7 +42,7 @@ NTSTATUS ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState( NTSTATUS ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse( void *args ) { struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse_params *params = (struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse_params *)args; - struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *iface = (struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *)params->linux_side; + struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *iface = (struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *)params->u_iface; iface->TriggerHapticPulse( params->unControllerIndex, params->eTargetPad, params->usDurationMicroSec ); return 0; } @@ -50,7 +50,7 @@ NTSTATUS ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse( NTSTATUS ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode( void *args ) { struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode_params *params = (struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode_params *)args; - struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *iface = (struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *)params->linux_side; + struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *iface = (struct u_ISteamController_STEAMCONTROLLER_INTERFACE_VERSION *)params->u_iface; iface->SetOverrideMode( params->pchMode ); return 0; } diff --git a/lsteamclient/cppISteamController_SteamController003.cpp b/lsteamclient/cppISteamController_SteamController003.cpp index e7d5c52a..39beac8e 100644 --- a/lsteamclient/cppISteamController_SteamController003.cpp +++ b/lsteamclient/cppISteamController_SteamController003.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamController_SteamController003_Init( void *args ) { struct ISteamController_SteamController003_Init_params *params = (struct ISteamController_SteamController003_Init_params *)args; - struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->linux_side; + struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->u_iface; params->_ret = iface->Init( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamController_SteamController003_Init( void *args ) NTSTATUS ISteamController_SteamController003_Shutdown( void *args ) { struct ISteamController_SteamController003_Shutdown_params *params = (struct ISteamController_SteamController003_Shutdown_params *)args; - struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->linux_side; + struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->u_iface; params->_ret = iface->Shutdown( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamController_SteamController003_Shutdown( void *args ) NTSTATUS ISteamController_SteamController003_RunFrame( void *args ) { struct ISteamController_SteamController003_RunFrame_params *params = (struct ISteamController_SteamController003_RunFrame_params *)args; - struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->linux_side; + struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamController_SteamController003_RunFrame( void *args ) NTSTATUS ISteamController_SteamController003_GetConnectedControllers( void *args ) { struct ISteamController_SteamController003_GetConnectedControllers_params *params = (struct ISteamController_SteamController003_GetConnectedControllers_params *)args; - struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->linux_side; + struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->u_iface; params->_ret = iface->GetConnectedControllers( params->handlesOut ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamController_SteamController003_GetConnectedControllers( void *args NTSTATUS ISteamController_SteamController003_ShowBindingPanel( void *args ) { struct ISteamController_SteamController003_ShowBindingPanel_params *params = (struct ISteamController_SteamController003_ShowBindingPanel_params *)args; - struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->linux_side; + struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->u_iface; params->_ret = iface->ShowBindingPanel( params->controllerHandle ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamController_SteamController003_ShowBindingPanel( void *args ) NTSTATUS ISteamController_SteamController003_GetActionSetHandle( void *args ) { struct ISteamController_SteamController003_GetActionSetHandle_params *params = (struct ISteamController_SteamController003_GetActionSetHandle_params *)args; - struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->linux_side; + struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->u_iface; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamController_SteamController003_GetActionSetHandle( void *args ) NTSTATUS ISteamController_SteamController003_ActivateActionSet( void *args ) { struct ISteamController_SteamController003_ActivateActionSet_params *params = (struct ISteamController_SteamController003_ActivateActionSet_params *)args; - struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->linux_side; + struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->u_iface; iface->ActivateActionSet( params->controllerHandle, params->actionSetHandle ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamController_SteamController003_ActivateActionSet( void *args ) NTSTATUS ISteamController_SteamController003_GetCurrentActionSet( void *args ) { struct ISteamController_SteamController003_GetCurrentActionSet_params *params = (struct ISteamController_SteamController003_GetCurrentActionSet_params *)args; - struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->linux_side; + struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->u_iface; params->_ret = iface->GetCurrentActionSet( params->controllerHandle ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamController_SteamController003_GetCurrentActionSet( void *args ) NTSTATUS ISteamController_SteamController003_GetDigitalActionHandle( void *args ) { struct ISteamController_SteamController003_GetDigitalActionHandle_params *params = (struct ISteamController_SteamController003_GetDigitalActionHandle_params *)args; - struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->linux_side; + struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->u_iface; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamController_SteamController003_GetDigitalActionHandle( void *args NTSTATUS ISteamController_SteamController003_GetDigitalActionData( void *args ) { struct ISteamController_SteamController003_GetDigitalActionData_params *params = (struct ISteamController_SteamController003_GetDigitalActionData_params *)args; - struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->linux_side; + struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->u_iface; *params->_ret = iface->GetDigitalActionData( params->controllerHandle, params->digitalActionHandle ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamController_SteamController003_GetDigitalActionData( void *args ) NTSTATUS ISteamController_SteamController003_GetDigitalActionOrigins( void *args ) { struct ISteamController_SteamController003_GetDigitalActionOrigins_params *params = (struct ISteamController_SteamController003_GetDigitalActionOrigins_params *)args; - struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->linux_side; + struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->u_iface; params->_ret = iface->GetDigitalActionOrigins( params->controllerHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamController_SteamController003_GetDigitalActionOrigins( void *args NTSTATUS ISteamController_SteamController003_GetAnalogActionHandle( void *args ) { struct ISteamController_SteamController003_GetAnalogActionHandle_params *params = (struct ISteamController_SteamController003_GetAnalogActionHandle_params *)args; - struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->linux_side; + struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->u_iface; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamController_SteamController003_GetAnalogActionHandle( void *args ) NTSTATUS ISteamController_SteamController003_GetAnalogActionData( void *args ) { struct ISteamController_SteamController003_GetAnalogActionData_params *params = (struct ISteamController_SteamController003_GetAnalogActionData_params *)args; - struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->linux_side; + struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->u_iface; *params->_ret = iface->GetAnalogActionData( params->controllerHandle, params->analogActionHandle ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamController_SteamController003_GetAnalogActionData( void *args ) NTSTATUS ISteamController_SteamController003_GetAnalogActionOrigins( void *args ) { struct ISteamController_SteamController003_GetAnalogActionOrigins_params *params = (struct ISteamController_SteamController003_GetAnalogActionOrigins_params *)args; - struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->linux_side; + struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->u_iface; params->_ret = iface->GetAnalogActionOrigins( params->controllerHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamController_SteamController003_GetAnalogActionOrigins( void *args NTSTATUS ISteamController_SteamController003_StopAnalogActionMomentum( void *args ) { struct ISteamController_SteamController003_StopAnalogActionMomentum_params *params = (struct ISteamController_SteamController003_StopAnalogActionMomentum_params *)args; - struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->linux_side; + struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->u_iface; iface->StopAnalogActionMomentum( params->controllerHandle, params->eAction ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamController_SteamController003_StopAnalogActionMomentum( void *arg NTSTATUS ISteamController_SteamController003_TriggerHapticPulse( void *args ) { struct ISteamController_SteamController003_TriggerHapticPulse_params *params = (struct ISteamController_SteamController003_TriggerHapticPulse_params *)args; - struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->linux_side; + struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->u_iface; iface->TriggerHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamController_SteamController003_TriggerHapticPulse( void *args ) NTSTATUS ISteamController_SteamController003_TriggerRepeatedHapticPulse( void *args ) { struct ISteamController_SteamController003_TriggerRepeatedHapticPulse_params *params = (struct ISteamController_SteamController003_TriggerRepeatedHapticPulse_params *)args; - struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->linux_side; + struct u_ISteamController_SteamController003 *iface = (struct u_ISteamController_SteamController003 *)params->u_iface; iface->TriggerRepeatedHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); return 0; } diff --git a/lsteamclient/cppISteamController_SteamController004.cpp b/lsteamclient/cppISteamController_SteamController004.cpp index 1a387057..bc1d9283 100644 --- a/lsteamclient/cppISteamController_SteamController004.cpp +++ b/lsteamclient/cppISteamController_SteamController004.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamController_SteamController004_Init( void *args ) { struct ISteamController_SteamController004_Init_params *params = (struct ISteamController_SteamController004_Init_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; params->_ret = iface->Init( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamController_SteamController004_Init( void *args ) NTSTATUS ISteamController_SteamController004_Shutdown( void *args ) { struct ISteamController_SteamController004_Shutdown_params *params = (struct ISteamController_SteamController004_Shutdown_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; params->_ret = iface->Shutdown( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamController_SteamController004_Shutdown( void *args ) NTSTATUS ISteamController_SteamController004_RunFrame( void *args ) { struct ISteamController_SteamController004_RunFrame_params *params = (struct ISteamController_SteamController004_RunFrame_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamController_SteamController004_RunFrame( void *args ) NTSTATUS ISteamController_SteamController004_GetConnectedControllers( void *args ) { struct ISteamController_SteamController004_GetConnectedControllers_params *params = (struct ISteamController_SteamController004_GetConnectedControllers_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; params->_ret = iface->GetConnectedControllers( params->handlesOut ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamController_SteamController004_GetConnectedControllers( void *args NTSTATUS ISteamController_SteamController004_ShowBindingPanel( void *args ) { struct ISteamController_SteamController004_ShowBindingPanel_params *params = (struct ISteamController_SteamController004_ShowBindingPanel_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; params->_ret = iface->ShowBindingPanel( params->controllerHandle ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamController_SteamController004_ShowBindingPanel( void *args ) NTSTATUS ISteamController_SteamController004_GetActionSetHandle( void *args ) { struct ISteamController_SteamController004_GetActionSetHandle_params *params = (struct ISteamController_SteamController004_GetActionSetHandle_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamController_SteamController004_GetActionSetHandle( void *args ) NTSTATUS ISteamController_SteamController004_ActivateActionSet( void *args ) { struct ISteamController_SteamController004_ActivateActionSet_params *params = (struct ISteamController_SteamController004_ActivateActionSet_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; iface->ActivateActionSet( params->controllerHandle, params->actionSetHandle ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamController_SteamController004_ActivateActionSet( void *args ) NTSTATUS ISteamController_SteamController004_GetCurrentActionSet( void *args ) { struct ISteamController_SteamController004_GetCurrentActionSet_params *params = (struct ISteamController_SteamController004_GetCurrentActionSet_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; params->_ret = iface->GetCurrentActionSet( params->controllerHandle ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamController_SteamController004_GetCurrentActionSet( void *args ) NTSTATUS ISteamController_SteamController004_GetDigitalActionHandle( void *args ) { struct ISteamController_SteamController004_GetDigitalActionHandle_params *params = (struct ISteamController_SteamController004_GetDigitalActionHandle_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamController_SteamController004_GetDigitalActionHandle( void *args NTSTATUS ISteamController_SteamController004_GetDigitalActionData( void *args ) { struct ISteamController_SteamController004_GetDigitalActionData_params *params = (struct ISteamController_SteamController004_GetDigitalActionData_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; *params->_ret = iface->GetDigitalActionData( params->controllerHandle, params->digitalActionHandle ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamController_SteamController004_GetDigitalActionData( void *args ) NTSTATUS ISteamController_SteamController004_GetDigitalActionOrigins( void *args ) { struct ISteamController_SteamController004_GetDigitalActionOrigins_params *params = (struct ISteamController_SteamController004_GetDigitalActionOrigins_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; params->_ret = iface->GetDigitalActionOrigins( params->controllerHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamController_SteamController004_GetDigitalActionOrigins( void *args NTSTATUS ISteamController_SteamController004_GetAnalogActionHandle( void *args ) { struct ISteamController_SteamController004_GetAnalogActionHandle_params *params = (struct ISteamController_SteamController004_GetAnalogActionHandle_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamController_SteamController004_GetAnalogActionHandle( void *args ) NTSTATUS ISteamController_SteamController004_GetAnalogActionData( void *args ) { struct ISteamController_SteamController004_GetAnalogActionData_params *params = (struct ISteamController_SteamController004_GetAnalogActionData_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; *params->_ret = iface->GetAnalogActionData( params->controllerHandle, params->analogActionHandle ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamController_SteamController004_GetAnalogActionData( void *args ) NTSTATUS ISteamController_SteamController004_GetAnalogActionOrigins( void *args ) { struct ISteamController_SteamController004_GetAnalogActionOrigins_params *params = (struct ISteamController_SteamController004_GetAnalogActionOrigins_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; params->_ret = iface->GetAnalogActionOrigins( params->controllerHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamController_SteamController004_GetAnalogActionOrigins( void *args NTSTATUS ISteamController_SteamController004_StopAnalogActionMomentum( void *args ) { struct ISteamController_SteamController004_StopAnalogActionMomentum_params *params = (struct ISteamController_SteamController004_StopAnalogActionMomentum_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; iface->StopAnalogActionMomentum( params->controllerHandle, params->eAction ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamController_SteamController004_StopAnalogActionMomentum( void *arg NTSTATUS ISteamController_SteamController004_TriggerHapticPulse( void *args ) { struct ISteamController_SteamController004_TriggerHapticPulse_params *params = (struct ISteamController_SteamController004_TriggerHapticPulse_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; iface->TriggerHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamController_SteamController004_TriggerHapticPulse( void *args ) NTSTATUS ISteamController_SteamController004_TriggerRepeatedHapticPulse( void *args ) { struct ISteamController_SteamController004_TriggerRepeatedHapticPulse_params *params = (struct ISteamController_SteamController004_TriggerRepeatedHapticPulse_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; iface->TriggerRepeatedHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamController_SteamController004_TriggerRepeatedHapticPulse( void *a NTSTATUS ISteamController_SteamController004_GetGamepadIndexForController( void *args ) { struct ISteamController_SteamController004_GetGamepadIndexForController_params *params = (struct ISteamController_SteamController004_GetGamepadIndexForController_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; params->_ret = iface->GetGamepadIndexForController( params->ulControllerHandle ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamController_SteamController004_GetGamepadIndexForController( void NTSTATUS ISteamController_SteamController004_GetControllerForGamepadIndex( void *args ) { struct ISteamController_SteamController004_GetControllerForGamepadIndex_params *params = (struct ISteamController_SteamController004_GetControllerForGamepadIndex_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; params->_ret = iface->GetControllerForGamepadIndex( params->nIndex ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamController_SteamController004_GetControllerForGamepadIndex( void NTSTATUS ISteamController_SteamController004_GetMotionData( void *args ) { struct ISteamController_SteamController004_GetMotionData_params *params = (struct ISteamController_SteamController004_GetMotionData_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; *params->_ret = iface->GetMotionData( params->controllerHandle ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamController_SteamController004_GetMotionData( void *args ) NTSTATUS ISteamController_SteamController004_ShowDigitalActionOrigins( void *args ) { struct ISteamController_SteamController004_ShowDigitalActionOrigins_params *params = (struct ISteamController_SteamController004_ShowDigitalActionOrigins_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; params->_ret = iface->ShowDigitalActionOrigins( params->controllerHandle, params->digitalActionHandle, params->flScale, params->flXPosition, params->flYPosition ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamController_SteamController004_ShowDigitalActionOrigins( void *arg NTSTATUS ISteamController_SteamController004_ShowAnalogActionOrigins( void *args ) { struct ISteamController_SteamController004_ShowAnalogActionOrigins_params *params = (struct ISteamController_SteamController004_ShowAnalogActionOrigins_params *)args; - struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->linux_side; + struct u_ISteamController_SteamController004 *iface = (struct u_ISteamController_SteamController004 *)params->u_iface; params->_ret = iface->ShowAnalogActionOrigins( params->controllerHandle, params->analogActionHandle, params->flScale, params->flXPosition, params->flYPosition ); return 0; } diff --git a/lsteamclient/cppISteamController_SteamController005.cpp b/lsteamclient/cppISteamController_SteamController005.cpp index d8f45d61..d6349325 100644 --- a/lsteamclient/cppISteamController_SteamController005.cpp +++ b/lsteamclient/cppISteamController_SteamController005.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamController_SteamController005_Init( void *args ) { struct ISteamController_SteamController005_Init_params *params = (struct ISteamController_SteamController005_Init_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; params->_ret = iface->Init( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamController_SteamController005_Init( void *args ) NTSTATUS ISteamController_SteamController005_Shutdown( void *args ) { struct ISteamController_SteamController005_Shutdown_params *params = (struct ISteamController_SteamController005_Shutdown_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; params->_ret = iface->Shutdown( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamController_SteamController005_Shutdown( void *args ) NTSTATUS ISteamController_SteamController005_RunFrame( void *args ) { struct ISteamController_SteamController005_RunFrame_params *params = (struct ISteamController_SteamController005_RunFrame_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamController_SteamController005_RunFrame( void *args ) NTSTATUS ISteamController_SteamController005_GetConnectedControllers( void *args ) { struct ISteamController_SteamController005_GetConnectedControllers_params *params = (struct ISteamController_SteamController005_GetConnectedControllers_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; params->_ret = iface->GetConnectedControllers( params->handlesOut ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamController_SteamController005_GetConnectedControllers( void *args NTSTATUS ISteamController_SteamController005_ShowBindingPanel( void *args ) { struct ISteamController_SteamController005_ShowBindingPanel_params *params = (struct ISteamController_SteamController005_ShowBindingPanel_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; params->_ret = iface->ShowBindingPanel( params->controllerHandle ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamController_SteamController005_ShowBindingPanel( void *args ) NTSTATUS ISteamController_SteamController005_GetActionSetHandle( void *args ) { struct ISteamController_SteamController005_GetActionSetHandle_params *params = (struct ISteamController_SteamController005_GetActionSetHandle_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamController_SteamController005_GetActionSetHandle( void *args ) NTSTATUS ISteamController_SteamController005_ActivateActionSet( void *args ) { struct ISteamController_SteamController005_ActivateActionSet_params *params = (struct ISteamController_SteamController005_ActivateActionSet_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; iface->ActivateActionSet( params->controllerHandle, params->actionSetHandle ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamController_SteamController005_ActivateActionSet( void *args ) NTSTATUS ISteamController_SteamController005_GetCurrentActionSet( void *args ) { struct ISteamController_SteamController005_GetCurrentActionSet_params *params = (struct ISteamController_SteamController005_GetCurrentActionSet_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; params->_ret = iface->GetCurrentActionSet( params->controllerHandle ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamController_SteamController005_GetCurrentActionSet( void *args ) NTSTATUS ISteamController_SteamController005_GetDigitalActionHandle( void *args ) { struct ISteamController_SteamController005_GetDigitalActionHandle_params *params = (struct ISteamController_SteamController005_GetDigitalActionHandle_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamController_SteamController005_GetDigitalActionHandle( void *args NTSTATUS ISteamController_SteamController005_GetDigitalActionData( void *args ) { struct ISteamController_SteamController005_GetDigitalActionData_params *params = (struct ISteamController_SteamController005_GetDigitalActionData_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; *params->_ret = iface->GetDigitalActionData( params->controllerHandle, params->digitalActionHandle ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamController_SteamController005_GetDigitalActionData( void *args ) NTSTATUS ISteamController_SteamController005_GetDigitalActionOrigins( void *args ) { struct ISteamController_SteamController005_GetDigitalActionOrigins_params *params = (struct ISteamController_SteamController005_GetDigitalActionOrigins_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; params->_ret = iface->GetDigitalActionOrigins( params->controllerHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamController_SteamController005_GetDigitalActionOrigins( void *args NTSTATUS ISteamController_SteamController005_GetAnalogActionHandle( void *args ) { struct ISteamController_SteamController005_GetAnalogActionHandle_params *params = (struct ISteamController_SteamController005_GetAnalogActionHandle_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamController_SteamController005_GetAnalogActionHandle( void *args ) NTSTATUS ISteamController_SteamController005_GetAnalogActionData( void *args ) { struct ISteamController_SteamController005_GetAnalogActionData_params *params = (struct ISteamController_SteamController005_GetAnalogActionData_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; *params->_ret = iface->GetAnalogActionData( params->controllerHandle, params->analogActionHandle ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamController_SteamController005_GetAnalogActionData( void *args ) NTSTATUS ISteamController_SteamController005_GetAnalogActionOrigins( void *args ) { struct ISteamController_SteamController005_GetAnalogActionOrigins_params *params = (struct ISteamController_SteamController005_GetAnalogActionOrigins_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; params->_ret = iface->GetAnalogActionOrigins( params->controllerHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamController_SteamController005_GetAnalogActionOrigins( void *args NTSTATUS ISteamController_SteamController005_StopAnalogActionMomentum( void *args ) { struct ISteamController_SteamController005_StopAnalogActionMomentum_params *params = (struct ISteamController_SteamController005_StopAnalogActionMomentum_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; iface->StopAnalogActionMomentum( params->controllerHandle, params->eAction ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamController_SteamController005_StopAnalogActionMomentum( void *arg NTSTATUS ISteamController_SteamController005_TriggerHapticPulse( void *args ) { struct ISteamController_SteamController005_TriggerHapticPulse_params *params = (struct ISteamController_SteamController005_TriggerHapticPulse_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; iface->TriggerHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamController_SteamController005_TriggerHapticPulse( void *args ) NTSTATUS ISteamController_SteamController005_TriggerRepeatedHapticPulse( void *args ) { struct ISteamController_SteamController005_TriggerRepeatedHapticPulse_params *params = (struct ISteamController_SteamController005_TriggerRepeatedHapticPulse_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; iface->TriggerRepeatedHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamController_SteamController005_TriggerRepeatedHapticPulse( void *a NTSTATUS ISteamController_SteamController005_TriggerVibration( void *args ) { struct ISteamController_SteamController005_TriggerVibration_params *params = (struct ISteamController_SteamController005_TriggerVibration_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; iface->TriggerVibration( params->controllerHandle, params->usLeftSpeed, params->usRightSpeed ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamController_SteamController005_TriggerVibration( void *args ) NTSTATUS ISteamController_SteamController005_SetLEDColor( void *args ) { struct ISteamController_SteamController005_SetLEDColor_params *params = (struct ISteamController_SteamController005_SetLEDColor_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; iface->SetLEDColor( params->controllerHandle, params->nColorR, params->nColorG, params->nColorB, params->nFlags ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamController_SteamController005_SetLEDColor( void *args ) NTSTATUS ISteamController_SteamController005_GetGamepadIndexForController( void *args ) { struct ISteamController_SteamController005_GetGamepadIndexForController_params *params = (struct ISteamController_SteamController005_GetGamepadIndexForController_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; params->_ret = iface->GetGamepadIndexForController( params->ulControllerHandle ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamController_SteamController005_GetGamepadIndexForController( void NTSTATUS ISteamController_SteamController005_GetControllerForGamepadIndex( void *args ) { struct ISteamController_SteamController005_GetControllerForGamepadIndex_params *params = (struct ISteamController_SteamController005_GetControllerForGamepadIndex_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; params->_ret = iface->GetControllerForGamepadIndex( params->nIndex ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamController_SteamController005_GetControllerForGamepadIndex( void NTSTATUS ISteamController_SteamController005_GetMotionData( void *args ) { struct ISteamController_SteamController005_GetMotionData_params *params = (struct ISteamController_SteamController005_GetMotionData_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; *params->_ret = iface->GetMotionData( params->controllerHandle ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamController_SteamController005_GetMotionData( void *args ) NTSTATUS ISteamController_SteamController005_ShowDigitalActionOrigins( void *args ) { struct ISteamController_SteamController005_ShowDigitalActionOrigins_params *params = (struct ISteamController_SteamController005_ShowDigitalActionOrigins_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; params->_ret = iface->ShowDigitalActionOrigins( params->controllerHandle, params->digitalActionHandle, params->flScale, params->flXPosition, params->flYPosition ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamController_SteamController005_ShowDigitalActionOrigins( void *arg NTSTATUS ISteamController_SteamController005_ShowAnalogActionOrigins( void *args ) { struct ISteamController_SteamController005_ShowAnalogActionOrigins_params *params = (struct ISteamController_SteamController005_ShowAnalogActionOrigins_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; params->_ret = iface->ShowAnalogActionOrigins( params->controllerHandle, params->analogActionHandle, params->flScale, params->flXPosition, params->flYPosition ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamController_SteamController005_ShowAnalogActionOrigins( void *args NTSTATUS ISteamController_SteamController005_GetStringForActionOrigin( void *args ) { struct ISteamController_SteamController005_GetStringForActionOrigin_params *params = (struct ISteamController_SteamController005_GetStringForActionOrigin_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; params->_ret = iface->GetStringForActionOrigin( params->eOrigin ); return 0; } diff --git a/lsteamclient/cppISteamController_SteamController006.cpp b/lsteamclient/cppISteamController_SteamController006.cpp index 52b9f05a..a1c42245 100644 --- a/lsteamclient/cppISteamController_SteamController006.cpp +++ b/lsteamclient/cppISteamController_SteamController006.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamController_SteamController006_Init( void *args ) { struct ISteamController_SteamController006_Init_params *params = (struct ISteamController_SteamController006_Init_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; params->_ret = iface->Init( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamController_SteamController006_Init( void *args ) NTSTATUS ISteamController_SteamController006_Shutdown( void *args ) { struct ISteamController_SteamController006_Shutdown_params *params = (struct ISteamController_SteamController006_Shutdown_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; params->_ret = iface->Shutdown( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamController_SteamController006_Shutdown( void *args ) NTSTATUS ISteamController_SteamController006_RunFrame( void *args ) { struct ISteamController_SteamController006_RunFrame_params *params = (struct ISteamController_SteamController006_RunFrame_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamController_SteamController006_RunFrame( void *args ) NTSTATUS ISteamController_SteamController006_GetConnectedControllers( void *args ) { struct ISteamController_SteamController006_GetConnectedControllers_params *params = (struct ISteamController_SteamController006_GetConnectedControllers_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; params->_ret = iface->GetConnectedControllers( params->handlesOut ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamController_SteamController006_GetConnectedControllers( void *args NTSTATUS ISteamController_SteamController006_ShowBindingPanel( void *args ) { struct ISteamController_SteamController006_ShowBindingPanel_params *params = (struct ISteamController_SteamController006_ShowBindingPanel_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; params->_ret = iface->ShowBindingPanel( params->controllerHandle ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamController_SteamController006_ShowBindingPanel( void *args ) NTSTATUS ISteamController_SteamController006_GetActionSetHandle( void *args ) { struct ISteamController_SteamController006_GetActionSetHandle_params *params = (struct ISteamController_SteamController006_GetActionSetHandle_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamController_SteamController006_GetActionSetHandle( void *args ) NTSTATUS ISteamController_SteamController006_ActivateActionSet( void *args ) { struct ISteamController_SteamController006_ActivateActionSet_params *params = (struct ISteamController_SteamController006_ActivateActionSet_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; iface->ActivateActionSet( params->controllerHandle, params->actionSetHandle ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamController_SteamController006_ActivateActionSet( void *args ) NTSTATUS ISteamController_SteamController006_GetCurrentActionSet( void *args ) { struct ISteamController_SteamController006_GetCurrentActionSet_params *params = (struct ISteamController_SteamController006_GetCurrentActionSet_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; params->_ret = iface->GetCurrentActionSet( params->controllerHandle ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamController_SteamController006_GetCurrentActionSet( void *args ) NTSTATUS ISteamController_SteamController006_ActivateActionSetLayer( void *args ) { struct ISteamController_SteamController006_ActivateActionSetLayer_params *params = (struct ISteamController_SteamController006_ActivateActionSetLayer_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; iface->ActivateActionSetLayer( params->controllerHandle, params->actionSetLayerHandle ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamController_SteamController006_ActivateActionSetLayer( void *args NTSTATUS ISteamController_SteamController006_DeactivateActionSetLayer( void *args ) { struct ISteamController_SteamController006_DeactivateActionSetLayer_params *params = (struct ISteamController_SteamController006_DeactivateActionSetLayer_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; iface->DeactivateActionSetLayer( params->controllerHandle, params->actionSetLayerHandle ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamController_SteamController006_DeactivateActionSetLayer( void *arg NTSTATUS ISteamController_SteamController006_DeactivateAllActionSetLayers( void *args ) { struct ISteamController_SteamController006_DeactivateAllActionSetLayers_params *params = (struct ISteamController_SteamController006_DeactivateAllActionSetLayers_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; iface->DeactivateAllActionSetLayers( params->controllerHandle ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamController_SteamController006_DeactivateAllActionSetLayers( void NTSTATUS ISteamController_SteamController006_GetActiveActionSetLayers( void *args ) { struct ISteamController_SteamController006_GetActiveActionSetLayers_params *params = (struct ISteamController_SteamController006_GetActiveActionSetLayers_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; params->_ret = iface->GetActiveActionSetLayers( params->controllerHandle, params->handlesOut ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamController_SteamController006_GetActiveActionSetLayers( void *arg NTSTATUS ISteamController_SteamController006_GetDigitalActionHandle( void *args ) { struct ISteamController_SteamController006_GetDigitalActionHandle_params *params = (struct ISteamController_SteamController006_GetDigitalActionHandle_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamController_SteamController006_GetDigitalActionHandle( void *args NTSTATUS ISteamController_SteamController006_GetDigitalActionData( void *args ) { struct ISteamController_SteamController006_GetDigitalActionData_params *params = (struct ISteamController_SteamController006_GetDigitalActionData_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; *params->_ret = iface->GetDigitalActionData( params->controllerHandle, params->digitalActionHandle ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamController_SteamController006_GetDigitalActionData( void *args ) NTSTATUS ISteamController_SteamController006_GetDigitalActionOrigins( void *args ) { struct ISteamController_SteamController006_GetDigitalActionOrigins_params *params = (struct ISteamController_SteamController006_GetDigitalActionOrigins_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; params->_ret = iface->GetDigitalActionOrigins( params->controllerHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamController_SteamController006_GetDigitalActionOrigins( void *args NTSTATUS ISteamController_SteamController006_GetAnalogActionHandle( void *args ) { struct ISteamController_SteamController006_GetAnalogActionHandle_params *params = (struct ISteamController_SteamController006_GetAnalogActionHandle_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamController_SteamController006_GetAnalogActionHandle( void *args ) NTSTATUS ISteamController_SteamController006_GetAnalogActionData( void *args ) { struct ISteamController_SteamController006_GetAnalogActionData_params *params = (struct ISteamController_SteamController006_GetAnalogActionData_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; *params->_ret = iface->GetAnalogActionData( params->controllerHandle, params->analogActionHandle ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamController_SteamController006_GetAnalogActionData( void *args ) NTSTATUS ISteamController_SteamController006_GetAnalogActionOrigins( void *args ) { struct ISteamController_SteamController006_GetAnalogActionOrigins_params *params = (struct ISteamController_SteamController006_GetAnalogActionOrigins_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; params->_ret = iface->GetAnalogActionOrigins( params->controllerHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamController_SteamController006_GetAnalogActionOrigins( void *args NTSTATUS ISteamController_SteamController006_StopAnalogActionMomentum( void *args ) { struct ISteamController_SteamController006_StopAnalogActionMomentum_params *params = (struct ISteamController_SteamController006_StopAnalogActionMomentum_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; iface->StopAnalogActionMomentum( params->controllerHandle, params->eAction ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamController_SteamController006_StopAnalogActionMomentum( void *arg NTSTATUS ISteamController_SteamController006_TriggerHapticPulse( void *args ) { struct ISteamController_SteamController006_TriggerHapticPulse_params *params = (struct ISteamController_SteamController006_TriggerHapticPulse_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; iface->TriggerHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamController_SteamController006_TriggerHapticPulse( void *args ) NTSTATUS ISteamController_SteamController006_TriggerRepeatedHapticPulse( void *args ) { struct ISteamController_SteamController006_TriggerRepeatedHapticPulse_params *params = (struct ISteamController_SteamController006_TriggerRepeatedHapticPulse_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; iface->TriggerRepeatedHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamController_SteamController006_TriggerRepeatedHapticPulse( void *a NTSTATUS ISteamController_SteamController006_TriggerVibration( void *args ) { struct ISteamController_SteamController006_TriggerVibration_params *params = (struct ISteamController_SteamController006_TriggerVibration_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; iface->TriggerVibration( params->controllerHandle, params->usLeftSpeed, params->usRightSpeed ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamController_SteamController006_TriggerVibration( void *args ) NTSTATUS ISteamController_SteamController006_SetLEDColor( void *args ) { struct ISteamController_SteamController006_SetLEDColor_params *params = (struct ISteamController_SteamController006_SetLEDColor_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; iface->SetLEDColor( params->controllerHandle, params->nColorR, params->nColorG, params->nColorB, params->nFlags ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamController_SteamController006_SetLEDColor( void *args ) NTSTATUS ISteamController_SteamController006_GetGamepadIndexForController( void *args ) { struct ISteamController_SteamController006_GetGamepadIndexForController_params *params = (struct ISteamController_SteamController006_GetGamepadIndexForController_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; params->_ret = iface->GetGamepadIndexForController( params->ulControllerHandle ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamController_SteamController006_GetGamepadIndexForController( void NTSTATUS ISteamController_SteamController006_GetControllerForGamepadIndex( void *args ) { struct ISteamController_SteamController006_GetControllerForGamepadIndex_params *params = (struct ISteamController_SteamController006_GetControllerForGamepadIndex_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; params->_ret = iface->GetControllerForGamepadIndex( params->nIndex ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamController_SteamController006_GetControllerForGamepadIndex( void NTSTATUS ISteamController_SteamController006_GetMotionData( void *args ) { struct ISteamController_SteamController006_GetMotionData_params *params = (struct ISteamController_SteamController006_GetMotionData_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; *params->_ret = iface->GetMotionData( params->controllerHandle ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamController_SteamController006_GetMotionData( void *args ) NTSTATUS ISteamController_SteamController006_ShowDigitalActionOrigins( void *args ) { struct ISteamController_SteamController006_ShowDigitalActionOrigins_params *params = (struct ISteamController_SteamController006_ShowDigitalActionOrigins_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; params->_ret = iface->ShowDigitalActionOrigins( params->controllerHandle, params->digitalActionHandle, params->flScale, params->flXPosition, params->flYPosition ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamController_SteamController006_ShowDigitalActionOrigins( void *arg NTSTATUS ISteamController_SteamController006_ShowAnalogActionOrigins( void *args ) { struct ISteamController_SteamController006_ShowAnalogActionOrigins_params *params = (struct ISteamController_SteamController006_ShowAnalogActionOrigins_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; params->_ret = iface->ShowAnalogActionOrigins( params->controllerHandle, params->analogActionHandle, params->flScale, params->flXPosition, params->flYPosition ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamController_SteamController006_ShowAnalogActionOrigins( void *args NTSTATUS ISteamController_SteamController006_GetStringForActionOrigin( void *args ) { struct ISteamController_SteamController006_GetStringForActionOrigin_params *params = (struct ISteamController_SteamController006_GetStringForActionOrigin_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; params->_ret = iface->GetStringForActionOrigin( params->eOrigin ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamController_SteamController006_GetStringForActionOrigin( void *arg NTSTATUS ISteamController_SteamController006_GetInputTypeForHandle( void *args ) { struct ISteamController_SteamController006_GetInputTypeForHandle_params *params = (struct ISteamController_SteamController006_GetInputTypeForHandle_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; params->_ret = iface->GetInputTypeForHandle( params->controllerHandle ); return 0; } diff --git a/lsteamclient/cppISteamController_SteamController007.cpp b/lsteamclient/cppISteamController_SteamController007.cpp index 683dfe7c..bd028474 100644 --- a/lsteamclient/cppISteamController_SteamController007.cpp +++ b/lsteamclient/cppISteamController_SteamController007.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamController_SteamController007_Init( void *args ) { struct ISteamController_SteamController007_Init_params *params = (struct ISteamController_SteamController007_Init_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->Init( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamController_SteamController007_Init( void *args ) NTSTATUS ISteamController_SteamController007_Shutdown( void *args ) { struct ISteamController_SteamController007_Shutdown_params *params = (struct ISteamController_SteamController007_Shutdown_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->Shutdown( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamController_SteamController007_Shutdown( void *args ) NTSTATUS ISteamController_SteamController007_RunFrame( void *args ) { struct ISteamController_SteamController007_RunFrame_params *params = (struct ISteamController_SteamController007_RunFrame_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamController_SteamController007_RunFrame( void *args ) NTSTATUS ISteamController_SteamController007_GetConnectedControllers( void *args ) { struct ISteamController_SteamController007_GetConnectedControllers_params *params = (struct ISteamController_SteamController007_GetConnectedControllers_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->GetConnectedControllers( params->handlesOut ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamController_SteamController007_GetConnectedControllers( void *args NTSTATUS ISteamController_SteamController007_GetActionSetHandle( void *args ) { struct ISteamController_SteamController007_GetActionSetHandle_params *params = (struct ISteamController_SteamController007_GetActionSetHandle_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamController_SteamController007_GetActionSetHandle( void *args ) NTSTATUS ISteamController_SteamController007_ActivateActionSet( void *args ) { struct ISteamController_SteamController007_ActivateActionSet_params *params = (struct ISteamController_SteamController007_ActivateActionSet_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; iface->ActivateActionSet( params->controllerHandle, params->actionSetHandle ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamController_SteamController007_ActivateActionSet( void *args ) NTSTATUS ISteamController_SteamController007_GetCurrentActionSet( void *args ) { struct ISteamController_SteamController007_GetCurrentActionSet_params *params = (struct ISteamController_SteamController007_GetCurrentActionSet_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->GetCurrentActionSet( params->controllerHandle ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamController_SteamController007_GetCurrentActionSet( void *args ) NTSTATUS ISteamController_SteamController007_ActivateActionSetLayer( void *args ) { struct ISteamController_SteamController007_ActivateActionSetLayer_params *params = (struct ISteamController_SteamController007_ActivateActionSetLayer_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; iface->ActivateActionSetLayer( params->controllerHandle, params->actionSetLayerHandle ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamController_SteamController007_ActivateActionSetLayer( void *args NTSTATUS ISteamController_SteamController007_DeactivateActionSetLayer( void *args ) { struct ISteamController_SteamController007_DeactivateActionSetLayer_params *params = (struct ISteamController_SteamController007_DeactivateActionSetLayer_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; iface->DeactivateActionSetLayer( params->controllerHandle, params->actionSetLayerHandle ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamController_SteamController007_DeactivateActionSetLayer( void *arg NTSTATUS ISteamController_SteamController007_DeactivateAllActionSetLayers( void *args ) { struct ISteamController_SteamController007_DeactivateAllActionSetLayers_params *params = (struct ISteamController_SteamController007_DeactivateAllActionSetLayers_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; iface->DeactivateAllActionSetLayers( params->controllerHandle ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamController_SteamController007_DeactivateAllActionSetLayers( void NTSTATUS ISteamController_SteamController007_GetActiveActionSetLayers( void *args ) { struct ISteamController_SteamController007_GetActiveActionSetLayers_params *params = (struct ISteamController_SteamController007_GetActiveActionSetLayers_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->GetActiveActionSetLayers( params->controllerHandle, params->handlesOut ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamController_SteamController007_GetActiveActionSetLayers( void *arg NTSTATUS ISteamController_SteamController007_GetDigitalActionHandle( void *args ) { struct ISteamController_SteamController007_GetDigitalActionHandle_params *params = (struct ISteamController_SteamController007_GetDigitalActionHandle_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamController_SteamController007_GetDigitalActionHandle( void *args NTSTATUS ISteamController_SteamController007_GetDigitalActionData( void *args ) { struct ISteamController_SteamController007_GetDigitalActionData_params *params = (struct ISteamController_SteamController007_GetDigitalActionData_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; *params->_ret = iface->GetDigitalActionData( params->controllerHandle, params->digitalActionHandle ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamController_SteamController007_GetDigitalActionData( void *args ) NTSTATUS ISteamController_SteamController007_GetDigitalActionOrigins( void *args ) { struct ISteamController_SteamController007_GetDigitalActionOrigins_params *params = (struct ISteamController_SteamController007_GetDigitalActionOrigins_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->GetDigitalActionOrigins( params->controllerHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamController_SteamController007_GetDigitalActionOrigins( void *args NTSTATUS ISteamController_SteamController007_GetAnalogActionHandle( void *args ) { struct ISteamController_SteamController007_GetAnalogActionHandle_params *params = (struct ISteamController_SteamController007_GetAnalogActionHandle_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamController_SteamController007_GetAnalogActionHandle( void *args ) NTSTATUS ISteamController_SteamController007_GetAnalogActionData( void *args ) { struct ISteamController_SteamController007_GetAnalogActionData_params *params = (struct ISteamController_SteamController007_GetAnalogActionData_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; *params->_ret = iface->GetAnalogActionData( params->controllerHandle, params->analogActionHandle ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamController_SteamController007_GetAnalogActionData( void *args ) NTSTATUS ISteamController_SteamController007_GetAnalogActionOrigins( void *args ) { struct ISteamController_SteamController007_GetAnalogActionOrigins_params *params = (struct ISteamController_SteamController007_GetAnalogActionOrigins_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->GetAnalogActionOrigins( params->controllerHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamController_SteamController007_GetAnalogActionOrigins( void *args NTSTATUS ISteamController_SteamController007_GetStringForActionOrigin( void *args ) { struct ISteamController_SteamController007_GetStringForActionOrigin_params *params = (struct ISteamController_SteamController007_GetStringForActionOrigin_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->GetStringForActionOrigin( params->eOrigin ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamController_SteamController007_GetStringForActionOrigin( void *arg NTSTATUS ISteamController_SteamController007_StopAnalogActionMomentum( void *args ) { struct ISteamController_SteamController007_StopAnalogActionMomentum_params *params = (struct ISteamController_SteamController007_StopAnalogActionMomentum_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; iface->StopAnalogActionMomentum( params->controllerHandle, params->eAction ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamController_SteamController007_StopAnalogActionMomentum( void *arg NTSTATUS ISteamController_SteamController007_GetMotionData( void *args ) { struct ISteamController_SteamController007_GetMotionData_params *params = (struct ISteamController_SteamController007_GetMotionData_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; *params->_ret = iface->GetMotionData( params->controllerHandle ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamController_SteamController007_GetMotionData( void *args ) NTSTATUS ISteamController_SteamController007_TriggerHapticPulse( void *args ) { struct ISteamController_SteamController007_TriggerHapticPulse_params *params = (struct ISteamController_SteamController007_TriggerHapticPulse_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; iface->TriggerHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamController_SteamController007_TriggerHapticPulse( void *args ) NTSTATUS ISteamController_SteamController007_TriggerRepeatedHapticPulse( void *args ) { struct ISteamController_SteamController007_TriggerRepeatedHapticPulse_params *params = (struct ISteamController_SteamController007_TriggerRepeatedHapticPulse_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; iface->TriggerRepeatedHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamController_SteamController007_TriggerRepeatedHapticPulse( void *a NTSTATUS ISteamController_SteamController007_TriggerVibration( void *args ) { struct ISteamController_SteamController007_TriggerVibration_params *params = (struct ISteamController_SteamController007_TriggerVibration_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; iface->TriggerVibration( params->controllerHandle, params->usLeftSpeed, params->usRightSpeed ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamController_SteamController007_TriggerVibration( void *args ) NTSTATUS ISteamController_SteamController007_SetLEDColor( void *args ) { struct ISteamController_SteamController007_SetLEDColor_params *params = (struct ISteamController_SteamController007_SetLEDColor_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; iface->SetLEDColor( params->controllerHandle, params->nColorR, params->nColorG, params->nColorB, params->nFlags ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamController_SteamController007_SetLEDColor( void *args ) NTSTATUS ISteamController_SteamController007_ShowBindingPanel( void *args ) { struct ISteamController_SteamController007_ShowBindingPanel_params *params = (struct ISteamController_SteamController007_ShowBindingPanel_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->ShowBindingPanel( params->controllerHandle ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamController_SteamController007_ShowBindingPanel( void *args ) NTSTATUS ISteamController_SteamController007_GetInputTypeForHandle( void *args ) { struct ISteamController_SteamController007_GetInputTypeForHandle_params *params = (struct ISteamController_SteamController007_GetInputTypeForHandle_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->GetInputTypeForHandle( params->controllerHandle ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamController_SteamController007_GetInputTypeForHandle( void *args ) NTSTATUS ISteamController_SteamController007_GetControllerForGamepadIndex( void *args ) { struct ISteamController_SteamController007_GetControllerForGamepadIndex_params *params = (struct ISteamController_SteamController007_GetControllerForGamepadIndex_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->GetControllerForGamepadIndex( params->nIndex ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamController_SteamController007_GetControllerForGamepadIndex( void NTSTATUS ISteamController_SteamController007_GetGamepadIndexForController( void *args ) { struct ISteamController_SteamController007_GetGamepadIndexForController_params *params = (struct ISteamController_SteamController007_GetGamepadIndexForController_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->GetGamepadIndexForController( params->ulControllerHandle ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamController_SteamController007_GetGamepadIndexForController( void NTSTATUS ISteamController_SteamController007_GetStringForXboxOrigin( void *args ) { struct ISteamController_SteamController007_GetStringForXboxOrigin_params *params = (struct ISteamController_SteamController007_GetStringForXboxOrigin_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->GetStringForXboxOrigin( params->eOrigin ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamController_SteamController007_GetStringForXboxOrigin( void *args NTSTATUS ISteamController_SteamController007_GetActionOriginFromXboxOrigin( void *args ) { struct ISteamController_SteamController007_GetActionOriginFromXboxOrigin_params *params = (struct ISteamController_SteamController007_GetActionOriginFromXboxOrigin_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->GetActionOriginFromXboxOrigin( params->controllerHandle, params->eOrigin ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamController_SteamController007_GetActionOriginFromXboxOrigin( void NTSTATUS ISteamController_SteamController007_TranslateActionOrigin( void *args ) { struct ISteamController_SteamController007_TranslateActionOrigin_params *params = (struct ISteamController_SteamController007_TranslateActionOrigin_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->TranslateActionOrigin( params->eDestinationInputType, params->eSourceOrigin ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamController_SteamController007_TranslateActionOrigin( void *args ) NTSTATUS ISteamController_SteamController007_GetControllerBindingRevision( void *args ) { struct ISteamController_SteamController007_GetControllerBindingRevision_params *params = (struct ISteamController_SteamController007_GetControllerBindingRevision_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; params->_ret = iface->GetControllerBindingRevision( params->controllerHandle, params->pMajor, params->pMinor ); return 0; } diff --git a/lsteamclient/cppISteamController_SteamController008.cpp b/lsteamclient/cppISteamController_SteamController008.cpp index 60ca903f..09b64ab2 100644 --- a/lsteamclient/cppISteamController_SteamController008.cpp +++ b/lsteamclient/cppISteamController_SteamController008.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamController_SteamController008_Init( void *args ) { struct ISteamController_SteamController008_Init_params *params = (struct ISteamController_SteamController008_Init_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->Init( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamController_SteamController008_Init( void *args ) NTSTATUS ISteamController_SteamController008_Shutdown( void *args ) { struct ISteamController_SteamController008_Shutdown_params *params = (struct ISteamController_SteamController008_Shutdown_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->Shutdown( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamController_SteamController008_Shutdown( void *args ) NTSTATUS ISteamController_SteamController008_RunFrame( void *args ) { struct ISteamController_SteamController008_RunFrame_params *params = (struct ISteamController_SteamController008_RunFrame_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamController_SteamController008_RunFrame( void *args ) NTSTATUS ISteamController_SteamController008_GetConnectedControllers( void *args ) { struct ISteamController_SteamController008_GetConnectedControllers_params *params = (struct ISteamController_SteamController008_GetConnectedControllers_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->GetConnectedControllers( params->handlesOut ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamController_SteamController008_GetConnectedControllers( void *args NTSTATUS ISteamController_SteamController008_GetActionSetHandle( void *args ) { struct ISteamController_SteamController008_GetActionSetHandle_params *params = (struct ISteamController_SteamController008_GetActionSetHandle_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamController_SteamController008_GetActionSetHandle( void *args ) NTSTATUS ISteamController_SteamController008_ActivateActionSet( void *args ) { struct ISteamController_SteamController008_ActivateActionSet_params *params = (struct ISteamController_SteamController008_ActivateActionSet_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; iface->ActivateActionSet( params->controllerHandle, params->actionSetHandle ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamController_SteamController008_ActivateActionSet( void *args ) NTSTATUS ISteamController_SteamController008_GetCurrentActionSet( void *args ) { struct ISteamController_SteamController008_GetCurrentActionSet_params *params = (struct ISteamController_SteamController008_GetCurrentActionSet_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->GetCurrentActionSet( params->controllerHandle ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamController_SteamController008_GetCurrentActionSet( void *args ) NTSTATUS ISteamController_SteamController008_ActivateActionSetLayer( void *args ) { struct ISteamController_SteamController008_ActivateActionSetLayer_params *params = (struct ISteamController_SteamController008_ActivateActionSetLayer_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; iface->ActivateActionSetLayer( params->controllerHandle, params->actionSetLayerHandle ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamController_SteamController008_ActivateActionSetLayer( void *args NTSTATUS ISteamController_SteamController008_DeactivateActionSetLayer( void *args ) { struct ISteamController_SteamController008_DeactivateActionSetLayer_params *params = (struct ISteamController_SteamController008_DeactivateActionSetLayer_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; iface->DeactivateActionSetLayer( params->controllerHandle, params->actionSetLayerHandle ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamController_SteamController008_DeactivateActionSetLayer( void *arg NTSTATUS ISteamController_SteamController008_DeactivateAllActionSetLayers( void *args ) { struct ISteamController_SteamController008_DeactivateAllActionSetLayers_params *params = (struct ISteamController_SteamController008_DeactivateAllActionSetLayers_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; iface->DeactivateAllActionSetLayers( params->controllerHandle ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamController_SteamController008_DeactivateAllActionSetLayers( void NTSTATUS ISteamController_SteamController008_GetActiveActionSetLayers( void *args ) { struct ISteamController_SteamController008_GetActiveActionSetLayers_params *params = (struct ISteamController_SteamController008_GetActiveActionSetLayers_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->GetActiveActionSetLayers( params->controllerHandle, params->handlesOut ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamController_SteamController008_GetActiveActionSetLayers( void *arg NTSTATUS ISteamController_SteamController008_GetDigitalActionHandle( void *args ) { struct ISteamController_SteamController008_GetDigitalActionHandle_params *params = (struct ISteamController_SteamController008_GetDigitalActionHandle_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamController_SteamController008_GetDigitalActionHandle( void *args NTSTATUS ISteamController_SteamController008_GetDigitalActionData( void *args ) { struct ISteamController_SteamController008_GetDigitalActionData_params *params = (struct ISteamController_SteamController008_GetDigitalActionData_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; *params->_ret = iface->GetDigitalActionData( params->controllerHandle, params->digitalActionHandle ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamController_SteamController008_GetDigitalActionData( void *args ) NTSTATUS ISteamController_SteamController008_GetDigitalActionOrigins( void *args ) { struct ISteamController_SteamController008_GetDigitalActionOrigins_params *params = (struct ISteamController_SteamController008_GetDigitalActionOrigins_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->GetDigitalActionOrigins( params->controllerHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamController_SteamController008_GetDigitalActionOrigins( void *args NTSTATUS ISteamController_SteamController008_GetAnalogActionHandle( void *args ) { struct ISteamController_SteamController008_GetAnalogActionHandle_params *params = (struct ISteamController_SteamController008_GetAnalogActionHandle_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamController_SteamController008_GetAnalogActionHandle( void *args ) NTSTATUS ISteamController_SteamController008_GetAnalogActionData( void *args ) { struct ISteamController_SteamController008_GetAnalogActionData_params *params = (struct ISteamController_SteamController008_GetAnalogActionData_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; *params->_ret = iface->GetAnalogActionData( params->controllerHandle, params->analogActionHandle ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamController_SteamController008_GetAnalogActionData( void *args ) NTSTATUS ISteamController_SteamController008_GetAnalogActionOrigins( void *args ) { struct ISteamController_SteamController008_GetAnalogActionOrigins_params *params = (struct ISteamController_SteamController008_GetAnalogActionOrigins_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->GetAnalogActionOrigins( params->controllerHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamController_SteamController008_GetAnalogActionOrigins( void *args NTSTATUS ISteamController_SteamController008_GetStringForActionOrigin( void *args ) { struct ISteamController_SteamController008_GetStringForActionOrigin_params *params = (struct ISteamController_SteamController008_GetStringForActionOrigin_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->GetStringForActionOrigin( params->eOrigin ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamController_SteamController008_GetStringForActionOrigin( void *arg NTSTATUS ISteamController_SteamController008_StopAnalogActionMomentum( void *args ) { struct ISteamController_SteamController008_StopAnalogActionMomentum_params *params = (struct ISteamController_SteamController008_StopAnalogActionMomentum_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; iface->StopAnalogActionMomentum( params->controllerHandle, params->eAction ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamController_SteamController008_StopAnalogActionMomentum( void *arg NTSTATUS ISteamController_SteamController008_GetMotionData( void *args ) { struct ISteamController_SteamController008_GetMotionData_params *params = (struct ISteamController_SteamController008_GetMotionData_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; *params->_ret = iface->GetMotionData( params->controllerHandle ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamController_SteamController008_GetMotionData( void *args ) NTSTATUS ISteamController_SteamController008_TriggerHapticPulse( void *args ) { struct ISteamController_SteamController008_TriggerHapticPulse_params *params = (struct ISteamController_SteamController008_TriggerHapticPulse_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; iface->TriggerHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamController_SteamController008_TriggerHapticPulse( void *args ) NTSTATUS ISteamController_SteamController008_TriggerRepeatedHapticPulse( void *args ) { struct ISteamController_SteamController008_TriggerRepeatedHapticPulse_params *params = (struct ISteamController_SteamController008_TriggerRepeatedHapticPulse_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; iface->TriggerRepeatedHapticPulse( params->controllerHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamController_SteamController008_TriggerRepeatedHapticPulse( void *a NTSTATUS ISteamController_SteamController008_TriggerVibration( void *args ) { struct ISteamController_SteamController008_TriggerVibration_params *params = (struct ISteamController_SteamController008_TriggerVibration_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; iface->TriggerVibration( params->controllerHandle, params->usLeftSpeed, params->usRightSpeed ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamController_SteamController008_TriggerVibration( void *args ) NTSTATUS ISteamController_SteamController008_SetLEDColor( void *args ) { struct ISteamController_SteamController008_SetLEDColor_params *params = (struct ISteamController_SteamController008_SetLEDColor_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; iface->SetLEDColor( params->controllerHandle, params->nColorR, params->nColorG, params->nColorB, params->nFlags ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamController_SteamController008_SetLEDColor( void *args ) NTSTATUS ISteamController_SteamController008_ShowBindingPanel( void *args ) { struct ISteamController_SteamController008_ShowBindingPanel_params *params = (struct ISteamController_SteamController008_ShowBindingPanel_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->ShowBindingPanel( params->controllerHandle ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamController_SteamController008_ShowBindingPanel( void *args ) NTSTATUS ISteamController_SteamController008_GetInputTypeForHandle( void *args ) { struct ISteamController_SteamController008_GetInputTypeForHandle_params *params = (struct ISteamController_SteamController008_GetInputTypeForHandle_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->GetInputTypeForHandle( params->controllerHandle ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamController_SteamController008_GetInputTypeForHandle( void *args ) NTSTATUS ISteamController_SteamController008_GetControllerForGamepadIndex( void *args ) { struct ISteamController_SteamController008_GetControllerForGamepadIndex_params *params = (struct ISteamController_SteamController008_GetControllerForGamepadIndex_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->GetControllerForGamepadIndex( params->nIndex ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamController_SteamController008_GetControllerForGamepadIndex( void NTSTATUS ISteamController_SteamController008_GetGamepadIndexForController( void *args ) { struct ISteamController_SteamController008_GetGamepadIndexForController_params *params = (struct ISteamController_SteamController008_GetGamepadIndexForController_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->GetGamepadIndexForController( params->ulControllerHandle ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamController_SteamController008_GetGamepadIndexForController( void NTSTATUS ISteamController_SteamController008_GetStringForXboxOrigin( void *args ) { struct ISteamController_SteamController008_GetStringForXboxOrigin_params *params = (struct ISteamController_SteamController008_GetStringForXboxOrigin_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->GetStringForXboxOrigin( params->eOrigin ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamController_SteamController008_GetStringForXboxOrigin( void *args NTSTATUS ISteamController_SteamController008_GetActionOriginFromXboxOrigin( void *args ) { struct ISteamController_SteamController008_GetActionOriginFromXboxOrigin_params *params = (struct ISteamController_SteamController008_GetActionOriginFromXboxOrigin_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->GetActionOriginFromXboxOrigin( params->controllerHandle, params->eOrigin ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamController_SteamController008_GetActionOriginFromXboxOrigin( void NTSTATUS ISteamController_SteamController008_TranslateActionOrigin( void *args ) { struct ISteamController_SteamController008_TranslateActionOrigin_params *params = (struct ISteamController_SteamController008_TranslateActionOrigin_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->TranslateActionOrigin( params->eDestinationInputType, params->eSourceOrigin ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamController_SteamController008_TranslateActionOrigin( void *args ) NTSTATUS ISteamController_SteamController008_GetControllerBindingRevision( void *args ) { struct ISteamController_SteamController008_GetControllerBindingRevision_params *params = (struct ISteamController_SteamController008_GetControllerBindingRevision_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; params->_ret = iface->GetControllerBindingRevision( params->controllerHandle, params->pMajor, params->pMinor ); return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends001.cpp b/lsteamclient/cppISteamFriends_SteamFriends001.cpp index 0987b3cb..590e4214 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends001.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamFriends_SteamFriends001_GetPersonaName( void *args ) { struct ISteamFriends_SteamFriends001_GetPersonaName_params *params = (struct ISteamFriends_SteamFriends001_GetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->GetPersonaName( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamFriends_SteamFriends001_GetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends001_SetPersonaName( void *args ) { struct ISteamFriends_SteamFriends001_SetPersonaName_params *params = (struct ISteamFriends_SteamFriends001_SetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; iface->SetPersonaName( params->pchPersonaName ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamFriends_SteamFriends001_SetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends001_GetPersonaState( void *args ) { struct ISteamFriends_SteamFriends001_GetPersonaState_params *params = (struct ISteamFriends_SteamFriends001_GetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->GetPersonaState( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamFriends_SteamFriends001_GetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends001_SetPersonaState( void *args ) { struct ISteamFriends_SteamFriends001_SetPersonaState_params *params = (struct ISteamFriends_SteamFriends001_SetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; iface->SetPersonaState( params->ePersonaState ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamFriends_SteamFriends001_SetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends001_AddFriend( void *args ) { struct ISteamFriends_SteamFriends001_AddFriend_params *params = (struct ISteamFriends_SteamFriends001_AddFriend_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->AddFriend( params->steamIDFriend ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamFriends_SteamFriends001_AddFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends001_RemoveFriend( void *args ) { struct ISteamFriends_SteamFriends001_RemoveFriend_params *params = (struct ISteamFriends_SteamFriends001_RemoveFriend_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->RemoveFriend( params->steamIDFriend ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamFriends_SteamFriends001_RemoveFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends001_HasFriend( void *args ) { struct ISteamFriends_SteamFriends001_HasFriend_params *params = (struct ISteamFriends_SteamFriends001_HasFriend_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->HasFriend( params->steamIDFriend ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamFriends_SteamFriends001_HasFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends001_GetFriendRelationship( void *args ) { struct ISteamFriends_SteamFriends001_GetFriendRelationship_params *params = (struct ISteamFriends_SteamFriends001_GetFriendRelationship_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamFriends_SteamFriends001_GetFriendRelationship( void *args ) NTSTATUS ISteamFriends_SteamFriends001_GetFriendPersonaState( void *args ) { struct ISteamFriends_SteamFriends001_GetFriendPersonaState_params *params = (struct ISteamFriends_SteamFriends001_GetFriendPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamFriends_SteamFriends001_GetFriendPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed( void *args ) { struct ISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed_params *params = (struct ISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->Deprecated_GetFriendGamePlayed( params->steamIDFriend, params->pnGameID, params->punGameIP, params->pusGamePort ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed( void *arg NTSTATUS ISteamFriends_SteamFriends001_GetFriendPersonaName( void *args ) { struct ISteamFriends_SteamFriends001_GetFriendPersonaName_params *params = (struct ISteamFriends_SteamFriends001_GetFriendPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamFriends_SteamFriends001_GetFriendPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends001_AddFriendByName( void *args ) { struct ISteamFriends_SteamFriends001_AddFriendByName_params *params = (struct ISteamFriends_SteamFriends001_AddFriendByName_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->AddFriendByName( params->pchEmailOrAccountName ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamFriends_SteamFriends001_AddFriendByName( void *args ) NTSTATUS ISteamFriends_SteamFriends001_GetFriendCount( void *args ) { struct ISteamFriends_SteamFriends001_GetFriendCount_params *params = (struct ISteamFriends_SteamFriends001_GetFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->GetFriendCount( ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamFriends_SteamFriends001_GetFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends001_GetFriendByIndex( void *args ) { struct ISteamFriends_SteamFriends001_GetFriendByIndex_params *params = (struct ISteamFriends_SteamFriends001_GetFriendByIndex_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; *params->_ret = iface->GetFriendByIndex( params->iFriend ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamFriends_SteamFriends001_GetFriendByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends001_SendMsgToFriend( void *args ) { struct ISteamFriends_SteamFriends001_SendMsgToFriend_params *params = (struct ISteamFriends_SteamFriends001_SendMsgToFriend_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; iface->SendMsgToFriend( params->steamIDFriend, params->eChatEntryType, params->pchMsgBody ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamFriends_SteamFriends001_SendMsgToFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends001_SetFriendRegValue( void *args ) { struct ISteamFriends_SteamFriends001_SetFriendRegValue_params *params = (struct ISteamFriends_SteamFriends001_SetFriendRegValue_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; iface->SetFriendRegValue( params->steamIDFriend, params->pchKey, params->pchValue ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamFriends_SteamFriends001_SetFriendRegValue( void *args ) NTSTATUS ISteamFriends_SteamFriends001_GetFriendRegValue( void *args ) { struct ISteamFriends_SteamFriends001_GetFriendRegValue_params *params = (struct ISteamFriends_SteamFriends001_GetFriendRegValue_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->GetFriendRegValue( params->steamIDFriend, params->pchKey ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamFriends_SteamFriends001_GetFriendRegValue( void *args ) NTSTATUS ISteamFriends_SteamFriends001_GetFriendPersonaNameHistory( void *args ) { struct ISteamFriends_SteamFriends001_GetFriendPersonaNameHistory_params *params = (struct ISteamFriends_SteamFriends001_GetFriendPersonaNameHistory_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamFriends_SteamFriends001_GetFriendPersonaNameHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends001_GetChatMessage( void *args ) { struct ISteamFriends_SteamFriends001_GetChatMessage_params *params = (struct ISteamFriends_SteamFriends001_GetChatMessage_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->GetChatMessage( params->steamIDFriend, params->iChatID, params->pvData, params->cubData, params->peChatEntryType ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamFriends_SteamFriends001_GetChatMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends001_SendMsgToFriend_2( void *args ) { struct ISteamFriends_SteamFriends001_SendMsgToFriend_2_params *params = (struct ISteamFriends_SteamFriends001_SendMsgToFriend_2_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->SendMsgToFriend( params->steamIDFriend, params->eChatEntryType, params->pvMsgBody, params->cubMsgBody ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamFriends_SteamFriends001_SendMsgToFriend_2( void *args ) NTSTATUS ISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart( void *args ) { struct ISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart_params *params = (struct ISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->GetChatIDOfChatHistoryStart( params->steamIDFriend ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart( void *args ) NTSTATUS ISteamFriends_SteamFriends001_SetChatHistoryStart( void *args ) { struct ISteamFriends_SteamFriends001_SetChatHistoryStart_params *params = (struct ISteamFriends_SteamFriends001_SetChatHistoryStart_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; iface->SetChatHistoryStart( params->steamIDFriend, params->iChatID ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamFriends_SteamFriends001_SetChatHistoryStart( void *args ) NTSTATUS ISteamFriends_SteamFriends001_ClearChatHistory( void *args ) { struct ISteamFriends_SteamFriends001_ClearChatHistory_params *params = (struct ISteamFriends_SteamFriends001_ClearChatHistory_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; iface->ClearChatHistory( params->steamIDFriend ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamFriends_SteamFriends001_ClearChatHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends001_InviteFriendByEmail( void *args ) { struct ISteamFriends_SteamFriends001_InviteFriendByEmail_params *params = (struct ISteamFriends_SteamFriends001_InviteFriendByEmail_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->InviteFriendByEmail( params->pchEmailAccount ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamFriends_SteamFriends001_InviteFriendByEmail( void *args ) NTSTATUS ISteamFriends_SteamFriends001_GetBlockedFriendCount( void *args ) { struct ISteamFriends_SteamFriends001_GetBlockedFriendCount_params *params = (struct ISteamFriends_SteamFriends001_GetBlockedFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->GetBlockedFriendCount( ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamFriends_SteamFriends001_GetBlockedFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends001_GetFriendGamePlayed( void *args ) { struct ISteamFriends_SteamFriends001_GetFriendGamePlayed_params *params = (struct ISteamFriends_SteamFriends001_GetFriendGamePlayed_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pulGameID, params->punGameIP, params->pusGamePort ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamFriends_SteamFriends001_GetFriendGamePlayed( void *args ) NTSTATUS ISteamFriends_SteamFriends001_GetFriendGamePlayed2( void *args ) { struct ISteamFriends_SteamFriends001_GetFriendGamePlayed2_params *params = (struct ISteamFriends_SteamFriends001_GetFriendGamePlayed2_params *)args; - struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->linux_side; + struct u_ISteamFriends_SteamFriends001 *iface = (struct u_ISteamFriends_SteamFriends001 *)params->u_iface; params->_ret = iface->GetFriendGamePlayed2( params->steamIDFriend, params->pulGameID, params->punGameIP, params->pusGamePort, params->pusQueryPort ); return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends002.cpp b/lsteamclient/cppISteamFriends_SteamFriends002.cpp index 87e4b721..25165a90 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends002.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamFriends_SteamFriends002_GetPersonaName( void *args ) { struct ISteamFriends_SteamFriends002_GetPersonaName_params *params = (struct ISteamFriends_SteamFriends002_GetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->GetPersonaName( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamFriends_SteamFriends002_GetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends002_SetPersonaName( void *args ) { struct ISteamFriends_SteamFriends002_SetPersonaName_params *params = (struct ISteamFriends_SteamFriends002_SetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; iface->SetPersonaName( params->pchPersonaName ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamFriends_SteamFriends002_SetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends002_GetPersonaState( void *args ) { struct ISteamFriends_SteamFriends002_GetPersonaState_params *params = (struct ISteamFriends_SteamFriends002_GetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->GetPersonaState( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamFriends_SteamFriends002_GetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends002_SetPersonaState( void *args ) { struct ISteamFriends_SteamFriends002_SetPersonaState_params *params = (struct ISteamFriends_SteamFriends002_SetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; iface->SetPersonaState( params->ePersonaState ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamFriends_SteamFriends002_SetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends002_GetFriendCount( void *args ) { struct ISteamFriends_SteamFriends002_GetFriendCount_params *params = (struct ISteamFriends_SteamFriends002_GetFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->GetFriendCount( params->iFriendFlags ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamFriends_SteamFriends002_GetFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends002_GetFriendByIndex( void *args ) { struct ISteamFriends_SteamFriends002_GetFriendByIndex_params *params = (struct ISteamFriends_SteamFriends002_GetFriendByIndex_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamFriends_SteamFriends002_GetFriendByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends002_GetFriendRelationship( void *args ) { struct ISteamFriends_SteamFriends002_GetFriendRelationship_params *params = (struct ISteamFriends_SteamFriends002_GetFriendRelationship_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamFriends_SteamFriends002_GetFriendRelationship( void *args ) NTSTATUS ISteamFriends_SteamFriends002_GetFriendPersonaState( void *args ) { struct ISteamFriends_SteamFriends002_GetFriendPersonaState_params *params = (struct ISteamFriends_SteamFriends002_GetFriendPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamFriends_SteamFriends002_GetFriendPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends002_GetFriendPersonaName( void *args ) { struct ISteamFriends_SteamFriends002_GetFriendPersonaName_params *params = (struct ISteamFriends_SteamFriends002_GetFriendPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamFriends_SteamFriends002_GetFriendPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends002_SetFriendRegValue( void *args ) { struct ISteamFriends_SteamFriends002_SetFriendRegValue_params *params = (struct ISteamFriends_SteamFriends002_SetFriendRegValue_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; iface->SetFriendRegValue( params->steamIDFriend, params->pchKey, params->pchValue ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamFriends_SteamFriends002_SetFriendRegValue( void *args ) NTSTATUS ISteamFriends_SteamFriends002_GetFriendRegValue( void *args ) { struct ISteamFriends_SteamFriends002_GetFriendRegValue_params *params = (struct ISteamFriends_SteamFriends002_GetFriendRegValue_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->GetFriendRegValue( params->steamIDFriend, params->pchKey ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamFriends_SteamFriends002_GetFriendRegValue( void *args ) NTSTATUS ISteamFriends_SteamFriends002_GetFriendGamePlayed( void *args ) { struct ISteamFriends_SteamFriends002_GetFriendGamePlayed_params *params = (struct ISteamFriends_SteamFriends002_GetFriendGamePlayed_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pulGameID, params->punGameIP, params->pusGamePort, params->pusQueryPort ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamFriends_SteamFriends002_GetFriendGamePlayed( void *args ) NTSTATUS ISteamFriends_SteamFriends002_GetFriendPersonaNameHistory( void *args ) { struct ISteamFriends_SteamFriends002_GetFriendPersonaNameHistory_params *params = (struct ISteamFriends_SteamFriends002_GetFriendPersonaNameHistory_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamFriends_SteamFriends002_GetFriendPersonaNameHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends002_AddFriend( void *args ) { struct ISteamFriends_SteamFriends002_AddFriend_params *params = (struct ISteamFriends_SteamFriends002_AddFriend_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->AddFriend( params->steamIDFriend ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamFriends_SteamFriends002_AddFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends002_RemoveFriend( void *args ) { struct ISteamFriends_SteamFriends002_RemoveFriend_params *params = (struct ISteamFriends_SteamFriends002_RemoveFriend_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->RemoveFriend( params->steamIDFriend ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamFriends_SteamFriends002_RemoveFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends002_HasFriend( void *args ) { struct ISteamFriends_SteamFriends002_HasFriend_params *params = (struct ISteamFriends_SteamFriends002_HasFriend_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamFriends_SteamFriends002_HasFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends002_AddFriendByName( void *args ) { struct ISteamFriends_SteamFriends002_AddFriendByName_params *params = (struct ISteamFriends_SteamFriends002_AddFriendByName_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->AddFriendByName( params->pchEmailOrAccountName ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamFriends_SteamFriends002_AddFriendByName( void *args ) NTSTATUS ISteamFriends_SteamFriends002_InviteFriendByEmail( void *args ) { struct ISteamFriends_SteamFriends002_InviteFriendByEmail_params *params = (struct ISteamFriends_SteamFriends002_InviteFriendByEmail_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->InviteFriendByEmail( params->pchEmailAccount ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamFriends_SteamFriends002_InviteFriendByEmail( void *args ) NTSTATUS ISteamFriends_SteamFriends002_GetChatMessage( void *args ) { struct ISteamFriends_SteamFriends002_GetChatMessage_params *params = (struct ISteamFriends_SteamFriends002_GetChatMessage_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->GetChatMessage( params->steamIDFriend, params->iChatID, params->pvData, params->cubData, params->peChatEntryType ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamFriends_SteamFriends002_GetChatMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends002_SendMsgToFriend( void *args ) { struct ISteamFriends_SteamFriends002_SendMsgToFriend_params *params = (struct ISteamFriends_SteamFriends002_SendMsgToFriend_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->SendMsgToFriend( params->steamIDFriend, params->eChatEntryType, params->pvMsgBody, params->cubMsgBody ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamFriends_SteamFriends002_SendMsgToFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart( void *args ) { struct ISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart_params *params = (struct ISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->GetChatIDOfChatHistoryStart( params->steamIDFriend ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart( void *args ) NTSTATUS ISteamFriends_SteamFriends002_SetChatHistoryStart( void *args ) { struct ISteamFriends_SteamFriends002_SetChatHistoryStart_params *params = (struct ISteamFriends_SteamFriends002_SetChatHistoryStart_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; iface->SetChatHistoryStart( params->steamIDFriend, params->iChatID ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamFriends_SteamFriends002_SetChatHistoryStart( void *args ) NTSTATUS ISteamFriends_SteamFriends002_ClearChatHistory( void *args ) { struct ISteamFriends_SteamFriends002_ClearChatHistory_params *params = (struct ISteamFriends_SteamFriends002_ClearChatHistory_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; iface->ClearChatHistory( params->steamIDFriend ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamFriends_SteamFriends002_ClearChatHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends002_GetClanCount( void *args ) { struct ISteamFriends_SteamFriends002_GetClanCount_params *params = (struct ISteamFriends_SteamFriends002_GetClanCount_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->GetClanCount( ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamFriends_SteamFriends002_GetClanCount( void *args ) NTSTATUS ISteamFriends_SteamFriends002_GetClanByIndex( void *args ) { struct ISteamFriends_SteamFriends002_GetClanByIndex_params *params = (struct ISteamFriends_SteamFriends002_GetClanByIndex_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; *params->_ret = iface->GetClanByIndex( params->iClan ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamFriends_SteamFriends002_GetClanByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends002_GetClanName( void *args ) { struct ISteamFriends_SteamFriends002_GetClanName_params *params = (struct ISteamFriends_SteamFriends002_GetClanName_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->GetClanName( params->steamIDClan ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamFriends_SteamFriends002_GetClanName( void *args ) NTSTATUS ISteamFriends_SteamFriends002_InviteFriendToClan( void *args ) { struct ISteamFriends_SteamFriends002_InviteFriendToClan_params *params = (struct ISteamFriends_SteamFriends002_InviteFriendToClan_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->InviteFriendToClan( params->steamIDFriend, params->steamIDClan ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamFriends_SteamFriends002_InviteFriendToClan( void *args ) NTSTATUS ISteamFriends_SteamFriends002_AcknowledgeInviteToClan( void *args ) { struct ISteamFriends_SteamFriends002_AcknowledgeInviteToClan_params *params = (struct ISteamFriends_SteamFriends002_AcknowledgeInviteToClan_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->AcknowledgeInviteToClan( params->steamIDClan, params->bAcceptOrDenyClanInvite ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamFriends_SteamFriends002_AcknowledgeInviteToClan( void *args ) NTSTATUS ISteamFriends_SteamFriends002_GetFriendCountFromSource( void *args ) { struct ISteamFriends_SteamFriends002_GetFriendCountFromSource_params *params = (struct ISteamFriends_SteamFriends002_GetFriendCountFromSource_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamFriends_SteamFriends002_GetFriendCountFromSource( void *args ) NTSTATUS ISteamFriends_SteamFriends002_GetFriendFromSourceByIndex( void *args ) { struct ISteamFriends_SteamFriends002_GetFriendFromSourceByIndex_params *params = (struct ISteamFriends_SteamFriends002_GetFriendFromSourceByIndex_params *)args; - struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->linux_side; + struct u_ISteamFriends_SteamFriends002 *iface = (struct u_ISteamFriends_SteamFriends002 *)params->u_iface; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends003.cpp b/lsteamclient/cppISteamFriends_SteamFriends003.cpp index 44b0e1a7..d815e5a1 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends003.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends003.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamFriends_SteamFriends003_GetPersonaName( void *args ) { struct ISteamFriends_SteamFriends003_GetPersonaName_params *params = (struct ISteamFriends_SteamFriends003_GetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; params->_ret = iface->GetPersonaName( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamFriends_SteamFriends003_GetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends003_SetPersonaName( void *args ) { struct ISteamFriends_SteamFriends003_SetPersonaName_params *params = (struct ISteamFriends_SteamFriends003_SetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; iface->SetPersonaName( params->pchPersonaName ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamFriends_SteamFriends003_SetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends003_GetPersonaState( void *args ) { struct ISteamFriends_SteamFriends003_GetPersonaState_params *params = (struct ISteamFriends_SteamFriends003_GetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; params->_ret = iface->GetPersonaState( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamFriends_SteamFriends003_GetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends003_GetFriendCount( void *args ) { struct ISteamFriends_SteamFriends003_GetFriendCount_params *params = (struct ISteamFriends_SteamFriends003_GetFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; params->_ret = iface->GetFriendCount( params->iFriendFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamFriends_SteamFriends003_GetFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends003_GetFriendByIndex( void *args ) { struct ISteamFriends_SteamFriends003_GetFriendByIndex_params *params = (struct ISteamFriends_SteamFriends003_GetFriendByIndex_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamFriends_SteamFriends003_GetFriendByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends003_GetFriendRelationship( void *args ) { struct ISteamFriends_SteamFriends003_GetFriendRelationship_params *params = (struct ISteamFriends_SteamFriends003_GetFriendRelationship_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamFriends_SteamFriends003_GetFriendRelationship( void *args ) NTSTATUS ISteamFriends_SteamFriends003_GetFriendPersonaState( void *args ) { struct ISteamFriends_SteamFriends003_GetFriendPersonaState_params *params = (struct ISteamFriends_SteamFriends003_GetFriendPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamFriends_SteamFriends003_GetFriendPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends003_GetFriendPersonaName( void *args ) { struct ISteamFriends_SteamFriends003_GetFriendPersonaName_params *params = (struct ISteamFriends_SteamFriends003_GetFriendPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamFriends_SteamFriends003_GetFriendPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends003_GetFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends003_GetFriendAvatar_params *params = (struct ISteamFriends_SteamFriends003_GetFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; params->_ret = iface->GetFriendAvatar( params->steamIDFriend ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamFriends_SteamFriends003_GetFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends003_GetFriendGamePlayed( void *args ) { struct ISteamFriends_SteamFriends003_GetFriendGamePlayed_params *params = (struct ISteamFriends_SteamFriends003_GetFriendGamePlayed_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pulGameID, params->punGameIP, params->pusGamePort, params->pusQueryPort ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamFriends_SteamFriends003_GetFriendGamePlayed( void *args ) NTSTATUS ISteamFriends_SteamFriends003_GetFriendPersonaNameHistory( void *args ) { struct ISteamFriends_SteamFriends003_GetFriendPersonaNameHistory_params *params = (struct ISteamFriends_SteamFriends003_GetFriendPersonaNameHistory_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamFriends_SteamFriends003_GetFriendPersonaNameHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends003_HasFriend( void *args ) { struct ISteamFriends_SteamFriends003_HasFriend_params *params = (struct ISteamFriends_SteamFriends003_HasFriend_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamFriends_SteamFriends003_HasFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends003_GetClanCount( void *args ) { struct ISteamFriends_SteamFriends003_GetClanCount_params *params = (struct ISteamFriends_SteamFriends003_GetClanCount_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; params->_ret = iface->GetClanCount( ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamFriends_SteamFriends003_GetClanCount( void *args ) NTSTATUS ISteamFriends_SteamFriends003_GetClanByIndex( void *args ) { struct ISteamFriends_SteamFriends003_GetClanByIndex_params *params = (struct ISteamFriends_SteamFriends003_GetClanByIndex_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; *params->_ret = iface->GetClanByIndex( params->iClan ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamFriends_SteamFriends003_GetClanByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends003_GetClanName( void *args ) { struct ISteamFriends_SteamFriends003_GetClanName_params *params = (struct ISteamFriends_SteamFriends003_GetClanName_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; params->_ret = iface->GetClanName( params->steamIDClan ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamFriends_SteamFriends003_GetClanName( void *args ) NTSTATUS ISteamFriends_SteamFriends003_GetFriendCountFromSource( void *args ) { struct ISteamFriends_SteamFriends003_GetFriendCountFromSource_params *params = (struct ISteamFriends_SteamFriends003_GetFriendCountFromSource_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamFriends_SteamFriends003_GetFriendCountFromSource( void *args ) NTSTATUS ISteamFriends_SteamFriends003_GetFriendFromSourceByIndex( void *args ) { struct ISteamFriends_SteamFriends003_GetFriendFromSourceByIndex_params *params = (struct ISteamFriends_SteamFriends003_GetFriendFromSourceByIndex_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamFriends_SteamFriends003_GetFriendFromSourceByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends003_IsUserInSource( void *args ) { struct ISteamFriends_SteamFriends003_IsUserInSource_params *params = (struct ISteamFriends_SteamFriends003_IsUserInSource_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamFriends_SteamFriends003_IsUserInSource( void *args ) NTSTATUS ISteamFriends_SteamFriends003_SetInGameVoiceSpeaking( void *args ) { struct ISteamFriends_SteamFriends003_SetInGameVoiceSpeaking_params *params = (struct ISteamFriends_SteamFriends003_SetInGameVoiceSpeaking_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamFriends_SteamFriends003_SetInGameVoiceSpeaking( void *args ) NTSTATUS ISteamFriends_SteamFriends003_ActivateGameOverlay( void *args ) { struct ISteamFriends_SteamFriends003_ActivateGameOverlay_params *params = (struct ISteamFriends_SteamFriends003_ActivateGameOverlay_params *)args; - struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->linux_side; + struct u_ISteamFriends_SteamFriends003 *iface = (struct u_ISteamFriends_SteamFriends003 *)params->u_iface; iface->ActivateGameOverlay( params->pchDialog ); return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends004.cpp b/lsteamclient/cppISteamFriends_SteamFriends004.cpp index e73c0c85..bb6d71ee 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends004.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends004.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamFriends_SteamFriends004_GetPersonaName( void *args ) { struct ISteamFriends_SteamFriends004_GetPersonaName_params *params = (struct ISteamFriends_SteamFriends004_GetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; params->_ret = iface->GetPersonaName( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamFriends_SteamFriends004_GetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends004_SetPersonaName( void *args ) { struct ISteamFriends_SteamFriends004_SetPersonaName_params *params = (struct ISteamFriends_SteamFriends004_SetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; iface->SetPersonaName( params->pchPersonaName ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamFriends_SteamFriends004_SetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends004_GetPersonaState( void *args ) { struct ISteamFriends_SteamFriends004_GetPersonaState_params *params = (struct ISteamFriends_SteamFriends004_GetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; params->_ret = iface->GetPersonaState( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamFriends_SteamFriends004_GetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends004_GetFriendCount( void *args ) { struct ISteamFriends_SteamFriends004_GetFriendCount_params *params = (struct ISteamFriends_SteamFriends004_GetFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; params->_ret = iface->GetFriendCount( params->iFriendFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamFriends_SteamFriends004_GetFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends004_GetFriendByIndex( void *args ) { struct ISteamFriends_SteamFriends004_GetFriendByIndex_params *params = (struct ISteamFriends_SteamFriends004_GetFriendByIndex_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamFriends_SteamFriends004_GetFriendByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends004_GetFriendRelationship( void *args ) { struct ISteamFriends_SteamFriends004_GetFriendRelationship_params *params = (struct ISteamFriends_SteamFriends004_GetFriendRelationship_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamFriends_SteamFriends004_GetFriendRelationship( void *args ) NTSTATUS ISteamFriends_SteamFriends004_GetFriendPersonaState( void *args ) { struct ISteamFriends_SteamFriends004_GetFriendPersonaState_params *params = (struct ISteamFriends_SteamFriends004_GetFriendPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamFriends_SteamFriends004_GetFriendPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends004_GetFriendPersonaName( void *args ) { struct ISteamFriends_SteamFriends004_GetFriendPersonaName_params *params = (struct ISteamFriends_SteamFriends004_GetFriendPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamFriends_SteamFriends004_GetFriendPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends004_GetFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends004_GetFriendAvatar_params *params = (struct ISteamFriends_SteamFriends004_GetFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; params->_ret = iface->GetFriendAvatar( params->steamIDFriend, params->eAvatarSize ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamFriends_SteamFriends004_GetFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends004_GetFriendGamePlayed( void *args ) { struct ISteamFriends_SteamFriends004_GetFriendGamePlayed_params *params = (struct ISteamFriends_SteamFriends004_GetFriendGamePlayed_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pulGameID, params->punGameIP, params->pusGamePort, params->pusQueryPort ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamFriends_SteamFriends004_GetFriendGamePlayed( void *args ) NTSTATUS ISteamFriends_SteamFriends004_GetFriendPersonaNameHistory( void *args ) { struct ISteamFriends_SteamFriends004_GetFriendPersonaNameHistory_params *params = (struct ISteamFriends_SteamFriends004_GetFriendPersonaNameHistory_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamFriends_SteamFriends004_GetFriendPersonaNameHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends004_HasFriend( void *args ) { struct ISteamFriends_SteamFriends004_HasFriend_params *params = (struct ISteamFriends_SteamFriends004_HasFriend_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamFriends_SteamFriends004_HasFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends004_GetClanCount( void *args ) { struct ISteamFriends_SteamFriends004_GetClanCount_params *params = (struct ISteamFriends_SteamFriends004_GetClanCount_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; params->_ret = iface->GetClanCount( ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamFriends_SteamFriends004_GetClanCount( void *args ) NTSTATUS ISteamFriends_SteamFriends004_GetClanByIndex( void *args ) { struct ISteamFriends_SteamFriends004_GetClanByIndex_params *params = (struct ISteamFriends_SteamFriends004_GetClanByIndex_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; *params->_ret = iface->GetClanByIndex( params->iClan ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamFriends_SteamFriends004_GetClanByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends004_GetClanName( void *args ) { struct ISteamFriends_SteamFriends004_GetClanName_params *params = (struct ISteamFriends_SteamFriends004_GetClanName_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; params->_ret = iface->GetClanName( params->steamIDClan ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamFriends_SteamFriends004_GetClanName( void *args ) NTSTATUS ISteamFriends_SteamFriends004_GetFriendCountFromSource( void *args ) { struct ISteamFriends_SteamFriends004_GetFriendCountFromSource_params *params = (struct ISteamFriends_SteamFriends004_GetFriendCountFromSource_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamFriends_SteamFriends004_GetFriendCountFromSource( void *args ) NTSTATUS ISteamFriends_SteamFriends004_GetFriendFromSourceByIndex( void *args ) { struct ISteamFriends_SteamFriends004_GetFriendFromSourceByIndex_params *params = (struct ISteamFriends_SteamFriends004_GetFriendFromSourceByIndex_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamFriends_SteamFriends004_GetFriendFromSourceByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends004_IsUserInSource( void *args ) { struct ISteamFriends_SteamFriends004_IsUserInSource_params *params = (struct ISteamFriends_SteamFriends004_IsUserInSource_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamFriends_SteamFriends004_IsUserInSource( void *args ) NTSTATUS ISteamFriends_SteamFriends004_SetInGameVoiceSpeaking( void *args ) { struct ISteamFriends_SteamFriends004_SetInGameVoiceSpeaking_params *params = (struct ISteamFriends_SteamFriends004_SetInGameVoiceSpeaking_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamFriends_SteamFriends004_SetInGameVoiceSpeaking( void *args ) NTSTATUS ISteamFriends_SteamFriends004_ActivateGameOverlay( void *args ) { struct ISteamFriends_SteamFriends004_ActivateGameOverlay_params *params = (struct ISteamFriends_SteamFriends004_ActivateGameOverlay_params *)args; - struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->linux_side; + struct u_ISteamFriends_SteamFriends004 *iface = (struct u_ISteamFriends_SteamFriends004 *)params->u_iface; iface->ActivateGameOverlay( params->pchDialog ); return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends005.cpp b/lsteamclient/cppISteamFriends_SteamFriends005.cpp index 76847ffb..a37a651b 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends005.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends005.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamFriends_SteamFriends005_GetPersonaName( void *args ) { struct ISteamFriends_SteamFriends005_GetPersonaName_params *params = (struct ISteamFriends_SteamFriends005_GetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; params->_ret = iface->GetPersonaName( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamFriends_SteamFriends005_GetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends005_SetPersonaName( void *args ) { struct ISteamFriends_SteamFriends005_SetPersonaName_params *params = (struct ISteamFriends_SteamFriends005_SetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; iface->SetPersonaName( params->pchPersonaName ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamFriends_SteamFriends005_SetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends005_GetPersonaState( void *args ) { struct ISteamFriends_SteamFriends005_GetPersonaState_params *params = (struct ISteamFriends_SteamFriends005_GetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; params->_ret = iface->GetPersonaState( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamFriends_SteamFriends005_GetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends005_GetFriendCount( void *args ) { struct ISteamFriends_SteamFriends005_GetFriendCount_params *params = (struct ISteamFriends_SteamFriends005_GetFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; params->_ret = iface->GetFriendCount( params->iFriendFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamFriends_SteamFriends005_GetFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends005_GetFriendByIndex( void *args ) { struct ISteamFriends_SteamFriends005_GetFriendByIndex_params *params = (struct ISteamFriends_SteamFriends005_GetFriendByIndex_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamFriends_SteamFriends005_GetFriendByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends005_GetFriendRelationship( void *args ) { struct ISteamFriends_SteamFriends005_GetFriendRelationship_params *params = (struct ISteamFriends_SteamFriends005_GetFriendRelationship_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamFriends_SteamFriends005_GetFriendRelationship( void *args ) NTSTATUS ISteamFriends_SteamFriends005_GetFriendPersonaState( void *args ) { struct ISteamFriends_SteamFriends005_GetFriendPersonaState_params *params = (struct ISteamFriends_SteamFriends005_GetFriendPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamFriends_SteamFriends005_GetFriendPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends005_GetFriendPersonaName( void *args ) { struct ISteamFriends_SteamFriends005_GetFriendPersonaName_params *params = (struct ISteamFriends_SteamFriends005_GetFriendPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamFriends_SteamFriends005_GetFriendPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends005_GetFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends005_GetFriendAvatar_params *params = (struct ISteamFriends_SteamFriends005_GetFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; params->_ret = iface->GetFriendAvatar( params->steamIDFriend, params->eAvatarSize ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamFriends_SteamFriends005_GetFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends005_GetFriendGamePlayed( void *args ) { struct ISteamFriends_SteamFriends005_GetFriendGamePlayed_params *params = (struct ISteamFriends_SteamFriends005_GetFriendGamePlayed_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamFriends_SteamFriends005_GetFriendGamePlayed( void *args ) NTSTATUS ISteamFriends_SteamFriends005_GetFriendPersonaNameHistory( void *args ) { struct ISteamFriends_SteamFriends005_GetFriendPersonaNameHistory_params *params = (struct ISteamFriends_SteamFriends005_GetFriendPersonaNameHistory_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamFriends_SteamFriends005_GetFriendPersonaNameHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends005_HasFriend( void *args ) { struct ISteamFriends_SteamFriends005_HasFriend_params *params = (struct ISteamFriends_SteamFriends005_HasFriend_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamFriends_SteamFriends005_HasFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends005_GetClanCount( void *args ) { struct ISteamFriends_SteamFriends005_GetClanCount_params *params = (struct ISteamFriends_SteamFriends005_GetClanCount_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; params->_ret = iface->GetClanCount( ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamFriends_SteamFriends005_GetClanCount( void *args ) NTSTATUS ISteamFriends_SteamFriends005_GetClanByIndex( void *args ) { struct ISteamFriends_SteamFriends005_GetClanByIndex_params *params = (struct ISteamFriends_SteamFriends005_GetClanByIndex_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; *params->_ret = iface->GetClanByIndex( params->iClan ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamFriends_SteamFriends005_GetClanByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends005_GetClanName( void *args ) { struct ISteamFriends_SteamFriends005_GetClanName_params *params = (struct ISteamFriends_SteamFriends005_GetClanName_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; params->_ret = iface->GetClanName( params->steamIDClan ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamFriends_SteamFriends005_GetClanName( void *args ) NTSTATUS ISteamFriends_SteamFriends005_GetFriendCountFromSource( void *args ) { struct ISteamFriends_SteamFriends005_GetFriendCountFromSource_params *params = (struct ISteamFriends_SteamFriends005_GetFriendCountFromSource_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamFriends_SteamFriends005_GetFriendCountFromSource( void *args ) NTSTATUS ISteamFriends_SteamFriends005_GetFriendFromSourceByIndex( void *args ) { struct ISteamFriends_SteamFriends005_GetFriendFromSourceByIndex_params *params = (struct ISteamFriends_SteamFriends005_GetFriendFromSourceByIndex_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamFriends_SteamFriends005_GetFriendFromSourceByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends005_IsUserInSource( void *args ) { struct ISteamFriends_SteamFriends005_IsUserInSource_params *params = (struct ISteamFriends_SteamFriends005_IsUserInSource_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamFriends_SteamFriends005_IsUserInSource( void *args ) NTSTATUS ISteamFriends_SteamFriends005_SetInGameVoiceSpeaking( void *args ) { struct ISteamFriends_SteamFriends005_SetInGameVoiceSpeaking_params *params = (struct ISteamFriends_SteamFriends005_SetInGameVoiceSpeaking_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamFriends_SteamFriends005_SetInGameVoiceSpeaking( void *args ) NTSTATUS ISteamFriends_SteamFriends005_ActivateGameOverlay( void *args ) { struct ISteamFriends_SteamFriends005_ActivateGameOverlay_params *params = (struct ISteamFriends_SteamFriends005_ActivateGameOverlay_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; iface->ActivateGameOverlay( params->pchDialog ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamFriends_SteamFriends005_ActivateGameOverlay( void *args ) NTSTATUS ISteamFriends_SteamFriends005_ActivateGameOverlayToUser( void *args ) { struct ISteamFriends_SteamFriends005_ActivateGameOverlayToUser_params *params = (struct ISteamFriends_SteamFriends005_ActivateGameOverlayToUser_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamFriends_SteamFriends005_ActivateGameOverlayToUser( void *args ) NTSTATUS ISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage( void *args ) { struct ISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage_params *params = (struct ISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 ); iface->ActivateGameOverlayToWebPage( u_pchURL ); steamclient_free_path( u_pchURL ); @@ -186,7 +186,7 @@ NTSTATUS ISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage( void *args NTSTATUS ISteamFriends_SteamFriends005_ActivateGameOverlayToStore( void *args ) { struct ISteamFriends_SteamFriends005_ActivateGameOverlayToStore_params *params = (struct ISteamFriends_SteamFriends005_ActivateGameOverlayToStore_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; iface->ActivateGameOverlayToStore( params->nAppID ); return 0; } @@ -194,7 +194,7 @@ NTSTATUS ISteamFriends_SteamFriends005_ActivateGameOverlayToStore( void *args ) NTSTATUS ISteamFriends_SteamFriends005_SetPlayedWith( void *args ) { struct ISteamFriends_SteamFriends005_SetPlayedWith_params *params = (struct ISteamFriends_SteamFriends005_SetPlayedWith_params *)args; - struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->linux_side; + struct u_ISteamFriends_SteamFriends005 *iface = (struct u_ISteamFriends_SteamFriends005 *)params->u_iface; iface->SetPlayedWith( params->steamIDUserPlayedWith ); return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends006.cpp b/lsteamclient/cppISteamFriends_SteamFriends006.cpp index 6d880233..8463fe47 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends006.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends006.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamFriends_SteamFriends006_GetPersonaName( void *args ) { struct ISteamFriends_SteamFriends006_GetPersonaName_params *params = (struct ISteamFriends_SteamFriends006_GetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; params->_ret = iface->GetPersonaName( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamFriends_SteamFriends006_GetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends006_SetPersonaName( void *args ) { struct ISteamFriends_SteamFriends006_SetPersonaName_params *params = (struct ISteamFriends_SteamFriends006_SetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; iface->SetPersonaName( params->pchPersonaName ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamFriends_SteamFriends006_SetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends006_GetPersonaState( void *args ) { struct ISteamFriends_SteamFriends006_GetPersonaState_params *params = (struct ISteamFriends_SteamFriends006_GetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; params->_ret = iface->GetPersonaState( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamFriends_SteamFriends006_GetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends006_GetFriendCount( void *args ) { struct ISteamFriends_SteamFriends006_GetFriendCount_params *params = (struct ISteamFriends_SteamFriends006_GetFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; params->_ret = iface->GetFriendCount( params->iFriendFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamFriends_SteamFriends006_GetFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends006_GetFriendByIndex( void *args ) { struct ISteamFriends_SteamFriends006_GetFriendByIndex_params *params = (struct ISteamFriends_SteamFriends006_GetFriendByIndex_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamFriends_SteamFriends006_GetFriendByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends006_GetFriendRelationship( void *args ) { struct ISteamFriends_SteamFriends006_GetFriendRelationship_params *params = (struct ISteamFriends_SteamFriends006_GetFriendRelationship_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamFriends_SteamFriends006_GetFriendRelationship( void *args ) NTSTATUS ISteamFriends_SteamFriends006_GetFriendPersonaState( void *args ) { struct ISteamFriends_SteamFriends006_GetFriendPersonaState_params *params = (struct ISteamFriends_SteamFriends006_GetFriendPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamFriends_SteamFriends006_GetFriendPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends006_GetFriendPersonaName( void *args ) { struct ISteamFriends_SteamFriends006_GetFriendPersonaName_params *params = (struct ISteamFriends_SteamFriends006_GetFriendPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamFriends_SteamFriends006_GetFriendPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends006_GetFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends006_GetFriendAvatar_params *params = (struct ISteamFriends_SteamFriends006_GetFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; params->_ret = iface->GetFriendAvatar( params->steamIDFriend, params->eAvatarSize ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamFriends_SteamFriends006_GetFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends006_GetFriendGamePlayed( void *args ) { struct ISteamFriends_SteamFriends006_GetFriendGamePlayed_params *params = (struct ISteamFriends_SteamFriends006_GetFriendGamePlayed_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamFriends_SteamFriends006_GetFriendGamePlayed( void *args ) NTSTATUS ISteamFriends_SteamFriends006_GetFriendPersonaNameHistory( void *args ) { struct ISteamFriends_SteamFriends006_GetFriendPersonaNameHistory_params *params = (struct ISteamFriends_SteamFriends006_GetFriendPersonaNameHistory_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamFriends_SteamFriends006_GetFriendPersonaNameHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends006_HasFriend( void *args ) { struct ISteamFriends_SteamFriends006_HasFriend_params *params = (struct ISteamFriends_SteamFriends006_HasFriend_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamFriends_SteamFriends006_HasFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends006_GetClanCount( void *args ) { struct ISteamFriends_SteamFriends006_GetClanCount_params *params = (struct ISteamFriends_SteamFriends006_GetClanCount_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; params->_ret = iface->GetClanCount( ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamFriends_SteamFriends006_GetClanCount( void *args ) NTSTATUS ISteamFriends_SteamFriends006_GetClanByIndex( void *args ) { struct ISteamFriends_SteamFriends006_GetClanByIndex_params *params = (struct ISteamFriends_SteamFriends006_GetClanByIndex_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; *params->_ret = iface->GetClanByIndex( params->iClan ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamFriends_SteamFriends006_GetClanByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends006_GetClanName( void *args ) { struct ISteamFriends_SteamFriends006_GetClanName_params *params = (struct ISteamFriends_SteamFriends006_GetClanName_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; params->_ret = iface->GetClanName( params->steamIDClan ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamFriends_SteamFriends006_GetClanName( void *args ) NTSTATUS ISteamFriends_SteamFriends006_GetClanTag( void *args ) { struct ISteamFriends_SteamFriends006_GetClanTag_params *params = (struct ISteamFriends_SteamFriends006_GetClanTag_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; params->_ret = iface->GetClanTag( params->steamIDClan ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamFriends_SteamFriends006_GetClanTag( void *args ) NTSTATUS ISteamFriends_SteamFriends006_GetFriendCountFromSource( void *args ) { struct ISteamFriends_SteamFriends006_GetFriendCountFromSource_params *params = (struct ISteamFriends_SteamFriends006_GetFriendCountFromSource_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamFriends_SteamFriends006_GetFriendCountFromSource( void *args ) NTSTATUS ISteamFriends_SteamFriends006_GetFriendFromSourceByIndex( void *args ) { struct ISteamFriends_SteamFriends006_GetFriendFromSourceByIndex_params *params = (struct ISteamFriends_SteamFriends006_GetFriendFromSourceByIndex_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamFriends_SteamFriends006_GetFriendFromSourceByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends006_IsUserInSource( void *args ) { struct ISteamFriends_SteamFriends006_IsUserInSource_params *params = (struct ISteamFriends_SteamFriends006_IsUserInSource_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamFriends_SteamFriends006_IsUserInSource( void *args ) NTSTATUS ISteamFriends_SteamFriends006_SetInGameVoiceSpeaking( void *args ) { struct ISteamFriends_SteamFriends006_SetInGameVoiceSpeaking_params *params = (struct ISteamFriends_SteamFriends006_SetInGameVoiceSpeaking_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamFriends_SteamFriends006_SetInGameVoiceSpeaking( void *args ) NTSTATUS ISteamFriends_SteamFriends006_ActivateGameOverlay( void *args ) { struct ISteamFriends_SteamFriends006_ActivateGameOverlay_params *params = (struct ISteamFriends_SteamFriends006_ActivateGameOverlay_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; iface->ActivateGameOverlay( params->pchDialog ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamFriends_SteamFriends006_ActivateGameOverlay( void *args ) NTSTATUS ISteamFriends_SteamFriends006_ActivateGameOverlayToUser( void *args ) { struct ISteamFriends_SteamFriends006_ActivateGameOverlayToUser_params *params = (struct ISteamFriends_SteamFriends006_ActivateGameOverlayToUser_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamFriends_SteamFriends006_ActivateGameOverlayToUser( void *args ) NTSTATUS ISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage( void *args ) { struct ISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage_params *params = (struct ISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 ); iface->ActivateGameOverlayToWebPage( u_pchURL ); steamclient_free_path( u_pchURL ); @@ -194,7 +194,7 @@ NTSTATUS ISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage( void *args NTSTATUS ISteamFriends_SteamFriends006_ActivateGameOverlayToStore( void *args ) { struct ISteamFriends_SteamFriends006_ActivateGameOverlayToStore_params *params = (struct ISteamFriends_SteamFriends006_ActivateGameOverlayToStore_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; iface->ActivateGameOverlayToStore( params->nAppID ); return 0; } @@ -202,7 +202,7 @@ NTSTATUS ISteamFriends_SteamFriends006_ActivateGameOverlayToStore( void *args ) NTSTATUS ISteamFriends_SteamFriends006_SetPlayedWith( void *args ) { struct ISteamFriends_SteamFriends006_SetPlayedWith_params *params = (struct ISteamFriends_SteamFriends006_SetPlayedWith_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; iface->SetPlayedWith( params->steamIDUserPlayedWith ); return 0; } @@ -210,7 +210,7 @@ NTSTATUS ISteamFriends_SteamFriends006_SetPlayedWith( void *args ) NTSTATUS ISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog( void *args ) { struct ISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog_params *params = (struct ISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog_params *)args; - struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side; + struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->u_iface; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends007.cpp b/lsteamclient/cppISteamFriends_SteamFriends007.cpp index d1e484dc..1784394f 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends007.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends007.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamFriends_SteamFriends007_GetPersonaName( void *args ) { struct ISteamFriends_SteamFriends007_GetPersonaName_params *params = (struct ISteamFriends_SteamFriends007_GetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; params->_ret = iface->GetPersonaName( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamFriends_SteamFriends007_GetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends007_SetPersonaName( void *args ) { struct ISteamFriends_SteamFriends007_SetPersonaName_params *params = (struct ISteamFriends_SteamFriends007_SetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; iface->SetPersonaName( params->pchPersonaName ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamFriends_SteamFriends007_SetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends007_GetPersonaState( void *args ) { struct ISteamFriends_SteamFriends007_GetPersonaState_params *params = (struct ISteamFriends_SteamFriends007_GetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; params->_ret = iface->GetPersonaState( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamFriends_SteamFriends007_GetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends007_GetFriendCount( void *args ) { struct ISteamFriends_SteamFriends007_GetFriendCount_params *params = (struct ISteamFriends_SteamFriends007_GetFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; params->_ret = iface->GetFriendCount( params->iFriendFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamFriends_SteamFriends007_GetFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends007_GetFriendByIndex( void *args ) { struct ISteamFriends_SteamFriends007_GetFriendByIndex_params *params = (struct ISteamFriends_SteamFriends007_GetFriendByIndex_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamFriends_SteamFriends007_GetFriendByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends007_GetFriendRelationship( void *args ) { struct ISteamFriends_SteamFriends007_GetFriendRelationship_params *params = (struct ISteamFriends_SteamFriends007_GetFriendRelationship_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamFriends_SteamFriends007_GetFriendRelationship( void *args ) NTSTATUS ISteamFriends_SteamFriends007_GetFriendPersonaState( void *args ) { struct ISteamFriends_SteamFriends007_GetFriendPersonaState_params *params = (struct ISteamFriends_SteamFriends007_GetFriendPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamFriends_SteamFriends007_GetFriendPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends007_GetFriendPersonaName( void *args ) { struct ISteamFriends_SteamFriends007_GetFriendPersonaName_params *params = (struct ISteamFriends_SteamFriends007_GetFriendPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamFriends_SteamFriends007_GetFriendPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends007_GetFriendGamePlayed( void *args ) { struct ISteamFriends_SteamFriends007_GetFriendGamePlayed_params *params = (struct ISteamFriends_SteamFriends007_GetFriendGamePlayed_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamFriends_SteamFriends007_GetFriendGamePlayed( void *args ) NTSTATUS ISteamFriends_SteamFriends007_GetFriendPersonaNameHistory( void *args ) { struct ISteamFriends_SteamFriends007_GetFriendPersonaNameHistory_params *params = (struct ISteamFriends_SteamFriends007_GetFriendPersonaNameHistory_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamFriends_SteamFriends007_GetFriendPersonaNameHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends007_HasFriend( void *args ) { struct ISteamFriends_SteamFriends007_HasFriend_params *params = (struct ISteamFriends_SteamFriends007_HasFriend_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamFriends_SteamFriends007_HasFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends007_GetClanCount( void *args ) { struct ISteamFriends_SteamFriends007_GetClanCount_params *params = (struct ISteamFriends_SteamFriends007_GetClanCount_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; params->_ret = iface->GetClanCount( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamFriends_SteamFriends007_GetClanCount( void *args ) NTSTATUS ISteamFriends_SteamFriends007_GetClanByIndex( void *args ) { struct ISteamFriends_SteamFriends007_GetClanByIndex_params *params = (struct ISteamFriends_SteamFriends007_GetClanByIndex_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; *params->_ret = iface->GetClanByIndex( params->iClan ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamFriends_SteamFriends007_GetClanByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends007_GetClanName( void *args ) { struct ISteamFriends_SteamFriends007_GetClanName_params *params = (struct ISteamFriends_SteamFriends007_GetClanName_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; params->_ret = iface->GetClanName( params->steamIDClan ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamFriends_SteamFriends007_GetClanName( void *args ) NTSTATUS ISteamFriends_SteamFriends007_GetClanTag( void *args ) { struct ISteamFriends_SteamFriends007_GetClanTag_params *params = (struct ISteamFriends_SteamFriends007_GetClanTag_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; params->_ret = iface->GetClanTag( params->steamIDClan ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamFriends_SteamFriends007_GetClanTag( void *args ) NTSTATUS ISteamFriends_SteamFriends007_GetFriendCountFromSource( void *args ) { struct ISteamFriends_SteamFriends007_GetFriendCountFromSource_params *params = (struct ISteamFriends_SteamFriends007_GetFriendCountFromSource_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamFriends_SteamFriends007_GetFriendCountFromSource( void *args ) NTSTATUS ISteamFriends_SteamFriends007_GetFriendFromSourceByIndex( void *args ) { struct ISteamFriends_SteamFriends007_GetFriendFromSourceByIndex_params *params = (struct ISteamFriends_SteamFriends007_GetFriendFromSourceByIndex_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamFriends_SteamFriends007_GetFriendFromSourceByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends007_IsUserInSource( void *args ) { struct ISteamFriends_SteamFriends007_IsUserInSource_params *params = (struct ISteamFriends_SteamFriends007_IsUserInSource_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamFriends_SteamFriends007_IsUserInSource( void *args ) NTSTATUS ISteamFriends_SteamFriends007_SetInGameVoiceSpeaking( void *args ) { struct ISteamFriends_SteamFriends007_SetInGameVoiceSpeaking_params *params = (struct ISteamFriends_SteamFriends007_SetInGameVoiceSpeaking_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamFriends_SteamFriends007_SetInGameVoiceSpeaking( void *args ) NTSTATUS ISteamFriends_SteamFriends007_ActivateGameOverlay( void *args ) { struct ISteamFriends_SteamFriends007_ActivateGameOverlay_params *params = (struct ISteamFriends_SteamFriends007_ActivateGameOverlay_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; iface->ActivateGameOverlay( params->pchDialog ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamFriends_SteamFriends007_ActivateGameOverlay( void *args ) NTSTATUS ISteamFriends_SteamFriends007_ActivateGameOverlayToUser( void *args ) { struct ISteamFriends_SteamFriends007_ActivateGameOverlayToUser_params *params = (struct ISteamFriends_SteamFriends007_ActivateGameOverlayToUser_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamFriends_SteamFriends007_ActivateGameOverlayToUser( void *args ) NTSTATUS ISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage( void *args ) { struct ISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage_params *params = (struct ISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 ); iface->ActivateGameOverlayToWebPage( u_pchURL ); steamclient_free_path( u_pchURL ); @@ -186,7 +186,7 @@ NTSTATUS ISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage( void *args NTSTATUS ISteamFriends_SteamFriends007_ActivateGameOverlayToStore( void *args ) { struct ISteamFriends_SteamFriends007_ActivateGameOverlayToStore_params *params = (struct ISteamFriends_SteamFriends007_ActivateGameOverlayToStore_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; iface->ActivateGameOverlayToStore( params->nAppID ); return 0; } @@ -194,7 +194,7 @@ NTSTATUS ISteamFriends_SteamFriends007_ActivateGameOverlayToStore( void *args ) NTSTATUS ISteamFriends_SteamFriends007_SetPlayedWith( void *args ) { struct ISteamFriends_SteamFriends007_SetPlayedWith_params *params = (struct ISteamFriends_SteamFriends007_SetPlayedWith_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; iface->SetPlayedWith( params->steamIDUserPlayedWith ); return 0; } @@ -202,7 +202,7 @@ NTSTATUS ISteamFriends_SteamFriends007_SetPlayedWith( void *args ) NTSTATUS ISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog( void *args ) { struct ISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog_params *params = (struct ISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); return 0; } @@ -210,7 +210,7 @@ NTSTATUS ISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog( void *ar NTSTATUS ISteamFriends_SteamFriends007_GetSmallFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends007_GetSmallFriendAvatar_params *params = (struct ISteamFriends_SteamFriends007_GetSmallFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); return 0; } @@ -218,7 +218,7 @@ NTSTATUS ISteamFriends_SteamFriends007_GetSmallFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends007_GetMediumFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends007_GetMediumFriendAvatar_params *params = (struct ISteamFriends_SteamFriends007_GetMediumFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); return 0; } @@ -226,7 +226,7 @@ NTSTATUS ISteamFriends_SteamFriends007_GetMediumFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends007_GetLargeFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends007_GetLargeFriendAvatar_params *params = (struct ISteamFriends_SteamFriends007_GetLargeFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->linux_side; + struct u_ISteamFriends_SteamFriends007 *iface = (struct u_ISteamFriends_SteamFriends007 *)params->u_iface; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends008.cpp b/lsteamclient/cppISteamFriends_SteamFriends008.cpp index f5672634..ec138f96 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends008.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends008.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetPersonaName( void *args ) { struct ISteamFriends_SteamFriends008_GetPersonaName_params *params = (struct ISteamFriends_SteamFriends008_GetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->GetPersonaName( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends008_SetPersonaName( void *args ) { struct ISteamFriends_SteamFriends008_SetPersonaName_params *params = (struct ISteamFriends_SteamFriends008_SetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; iface->SetPersonaName( params->pchPersonaName ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamFriends_SteamFriends008_SetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetPersonaState( void *args ) { struct ISteamFriends_SteamFriends008_GetPersonaState_params *params = (struct ISteamFriends_SteamFriends008_GetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->GetPersonaState( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetFriendCount( void *args ) { struct ISteamFriends_SteamFriends008_GetFriendCount_params *params = (struct ISteamFriends_SteamFriends008_GetFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->GetFriendCount( params->iFriendFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetFriendByIndex( void *args ) { struct ISteamFriends_SteamFriends008_GetFriendByIndex_params *params = (struct ISteamFriends_SteamFriends008_GetFriendByIndex_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetFriendByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetFriendRelationship( void *args ) { struct ISteamFriends_SteamFriends008_GetFriendRelationship_params *params = (struct ISteamFriends_SteamFriends008_GetFriendRelationship_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetFriendRelationship( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetFriendPersonaState( void *args ) { struct ISteamFriends_SteamFriends008_GetFriendPersonaState_params *params = (struct ISteamFriends_SteamFriends008_GetFriendPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetFriendPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetFriendPersonaName( void *args ) { struct ISteamFriends_SteamFriends008_GetFriendPersonaName_params *params = (struct ISteamFriends_SteamFriends008_GetFriendPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetFriendPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetFriendGamePlayed( void *args ) { struct ISteamFriends_SteamFriends008_GetFriendGamePlayed_params *params = (struct ISteamFriends_SteamFriends008_GetFriendGamePlayed_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetFriendGamePlayed( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetFriendPersonaNameHistory( void *args ) { struct ISteamFriends_SteamFriends008_GetFriendPersonaNameHistory_params *params = (struct ISteamFriends_SteamFriends008_GetFriendPersonaNameHistory_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetFriendPersonaNameHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends008_HasFriend( void *args ) { struct ISteamFriends_SteamFriends008_HasFriend_params *params = (struct ISteamFriends_SteamFriends008_HasFriend_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamFriends_SteamFriends008_HasFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetClanCount( void *args ) { struct ISteamFriends_SteamFriends008_GetClanCount_params *params = (struct ISteamFriends_SteamFriends008_GetClanCount_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->GetClanCount( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetClanCount( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetClanByIndex( void *args ) { struct ISteamFriends_SteamFriends008_GetClanByIndex_params *params = (struct ISteamFriends_SteamFriends008_GetClanByIndex_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; *params->_ret = iface->GetClanByIndex( params->iClan ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetClanByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetClanName( void *args ) { struct ISteamFriends_SteamFriends008_GetClanName_params *params = (struct ISteamFriends_SteamFriends008_GetClanName_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->GetClanName( params->steamIDClan ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetClanName( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetClanTag( void *args ) { struct ISteamFriends_SteamFriends008_GetClanTag_params *params = (struct ISteamFriends_SteamFriends008_GetClanTag_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->GetClanTag( params->steamIDClan ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetClanTag( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetFriendCountFromSource( void *args ) { struct ISteamFriends_SteamFriends008_GetFriendCountFromSource_params *params = (struct ISteamFriends_SteamFriends008_GetFriendCountFromSource_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetFriendCountFromSource( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetFriendFromSourceByIndex( void *args ) { struct ISteamFriends_SteamFriends008_GetFriendFromSourceByIndex_params *params = (struct ISteamFriends_SteamFriends008_GetFriendFromSourceByIndex_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetFriendFromSourceByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends008_IsUserInSource( void *args ) { struct ISteamFriends_SteamFriends008_IsUserInSource_params *params = (struct ISteamFriends_SteamFriends008_IsUserInSource_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamFriends_SteamFriends008_IsUserInSource( void *args ) NTSTATUS ISteamFriends_SteamFriends008_SetInGameVoiceSpeaking( void *args ) { struct ISteamFriends_SteamFriends008_SetInGameVoiceSpeaking_params *params = (struct ISteamFriends_SteamFriends008_SetInGameVoiceSpeaking_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamFriends_SteamFriends008_SetInGameVoiceSpeaking( void *args ) NTSTATUS ISteamFriends_SteamFriends008_ActivateGameOverlay( void *args ) { struct ISteamFriends_SteamFriends008_ActivateGameOverlay_params *params = (struct ISteamFriends_SteamFriends008_ActivateGameOverlay_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; iface->ActivateGameOverlay( params->pchDialog ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamFriends_SteamFriends008_ActivateGameOverlay( void *args ) NTSTATUS ISteamFriends_SteamFriends008_ActivateGameOverlayToUser( void *args ) { struct ISteamFriends_SteamFriends008_ActivateGameOverlayToUser_params *params = (struct ISteamFriends_SteamFriends008_ActivateGameOverlayToUser_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamFriends_SteamFriends008_ActivateGameOverlayToUser( void *args ) NTSTATUS ISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage( void *args ) { struct ISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage_params *params = (struct ISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 ); iface->ActivateGameOverlayToWebPage( u_pchURL ); steamclient_free_path( u_pchURL ); @@ -186,7 +186,7 @@ NTSTATUS ISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage( void *args NTSTATUS ISteamFriends_SteamFriends008_ActivateGameOverlayToStore( void *args ) { struct ISteamFriends_SteamFriends008_ActivateGameOverlayToStore_params *params = (struct ISteamFriends_SteamFriends008_ActivateGameOverlayToStore_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; iface->ActivateGameOverlayToStore( params->nAppID ); return 0; } @@ -194,7 +194,7 @@ NTSTATUS ISteamFriends_SteamFriends008_ActivateGameOverlayToStore( void *args ) NTSTATUS ISteamFriends_SteamFriends008_SetPlayedWith( void *args ) { struct ISteamFriends_SteamFriends008_SetPlayedWith_params *params = (struct ISteamFriends_SteamFriends008_SetPlayedWith_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; iface->SetPlayedWith( params->steamIDUserPlayedWith ); return 0; } @@ -202,7 +202,7 @@ NTSTATUS ISteamFriends_SteamFriends008_SetPlayedWith( void *args ) NTSTATUS ISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog( void *args ) { struct ISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog_params *params = (struct ISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); return 0; } @@ -210,7 +210,7 @@ NTSTATUS ISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog( void *ar NTSTATUS ISteamFriends_SteamFriends008_GetSmallFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends008_GetSmallFriendAvatar_params *params = (struct ISteamFriends_SteamFriends008_GetSmallFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); return 0; } @@ -218,7 +218,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetSmallFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetMediumFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends008_GetMediumFriendAvatar_params *params = (struct ISteamFriends_SteamFriends008_GetMediumFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); return 0; } @@ -226,7 +226,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetMediumFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetLargeFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends008_GetLargeFriendAvatar_params *params = (struct ISteamFriends_SteamFriends008_GetLargeFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); return 0; } @@ -234,7 +234,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetLargeFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends008_RequestUserInformation( void *args ) { struct ISteamFriends_SteamFriends008_RequestUserInformation_params *params = (struct ISteamFriends_SteamFriends008_RequestUserInformation_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); return 0; } @@ -242,7 +242,7 @@ NTSTATUS ISteamFriends_SteamFriends008_RequestUserInformation( void *args ) NTSTATUS ISteamFriends_SteamFriends008_RequestClanOfficerList( void *args ) { struct ISteamFriends_SteamFriends008_RequestClanOfficerList_params *params = (struct ISteamFriends_SteamFriends008_RequestClanOfficerList_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); return 0; } @@ -250,7 +250,7 @@ NTSTATUS ISteamFriends_SteamFriends008_RequestClanOfficerList( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetClanOwner( void *args ) { struct ISteamFriends_SteamFriends008_GetClanOwner_params *params = (struct ISteamFriends_SteamFriends008_GetClanOwner_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; *params->_ret = iface->GetClanOwner( params->steamIDClan ); return 0; } @@ -258,7 +258,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetClanOwner( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetClanOfficerCount( void *args ) { struct ISteamFriends_SteamFriends008_GetClanOfficerCount_params *params = (struct ISteamFriends_SteamFriends008_GetClanOfficerCount_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); return 0; } @@ -266,7 +266,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetClanOfficerCount( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetClanOfficerByIndex( void *args ) { struct ISteamFriends_SteamFriends008_GetClanOfficerByIndex_params *params = (struct ISteamFriends_SteamFriends008_GetClanOfficerByIndex_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); return 0; } @@ -274,7 +274,7 @@ NTSTATUS ISteamFriends_SteamFriends008_GetClanOfficerByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends008_GetUserRestrictions( void *args ) { struct ISteamFriends_SteamFriends008_GetUserRestrictions_params *params = (struct ISteamFriends_SteamFriends008_GetUserRestrictions_params *)args; - struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->linux_side; + struct u_ISteamFriends_SteamFriends008 *iface = (struct u_ISteamFriends_SteamFriends008 *)params->u_iface; params->_ret = iface->GetUserRestrictions( ); return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends009.cpp b/lsteamclient/cppISteamFriends_SteamFriends009.cpp index 3e67fb0a..6de9feea 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends009.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends009.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetPersonaName( void *args ) { struct ISteamFriends_SteamFriends009_GetPersonaName_params *params = (struct ISteamFriends_SteamFriends009_GetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetPersonaName( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends009_SetPersonaName( void *args ) { struct ISteamFriends_SteamFriends009_SetPersonaName_params *params = (struct ISteamFriends_SteamFriends009_SetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; iface->SetPersonaName( params->pchPersonaName ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamFriends_SteamFriends009_SetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetPersonaState( void *args ) { struct ISteamFriends_SteamFriends009_GetPersonaState_params *params = (struct ISteamFriends_SteamFriends009_GetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetPersonaState( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetFriendCount( void *args ) { struct ISteamFriends_SteamFriends009_GetFriendCount_params *params = (struct ISteamFriends_SteamFriends009_GetFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetFriendCount( params->iFriendFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetFriendByIndex( void *args ) { struct ISteamFriends_SteamFriends009_GetFriendByIndex_params *params = (struct ISteamFriends_SteamFriends009_GetFriendByIndex_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetFriendByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetFriendRelationship( void *args ) { struct ISteamFriends_SteamFriends009_GetFriendRelationship_params *params = (struct ISteamFriends_SteamFriends009_GetFriendRelationship_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetFriendRelationship( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetFriendPersonaState( void *args ) { struct ISteamFriends_SteamFriends009_GetFriendPersonaState_params *params = (struct ISteamFriends_SteamFriends009_GetFriendPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetFriendPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetFriendPersonaName( void *args ) { struct ISteamFriends_SteamFriends009_GetFriendPersonaName_params *params = (struct ISteamFriends_SteamFriends009_GetFriendPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetFriendPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetFriendGamePlayed( void *args ) { struct ISteamFriends_SteamFriends009_GetFriendGamePlayed_params *params = (struct ISteamFriends_SteamFriends009_GetFriendGamePlayed_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetFriendGamePlayed( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetFriendPersonaNameHistory( void *args ) { struct ISteamFriends_SteamFriends009_GetFriendPersonaNameHistory_params *params = (struct ISteamFriends_SteamFriends009_GetFriendPersonaNameHistory_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetFriendPersonaNameHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends009_HasFriend( void *args ) { struct ISteamFriends_SteamFriends009_HasFriend_params *params = (struct ISteamFriends_SteamFriends009_HasFriend_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamFriends_SteamFriends009_HasFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetClanCount( void *args ) { struct ISteamFriends_SteamFriends009_GetClanCount_params *params = (struct ISteamFriends_SteamFriends009_GetClanCount_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetClanCount( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetClanCount( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetClanByIndex( void *args ) { struct ISteamFriends_SteamFriends009_GetClanByIndex_params *params = (struct ISteamFriends_SteamFriends009_GetClanByIndex_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; *params->_ret = iface->GetClanByIndex( params->iClan ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetClanByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetClanName( void *args ) { struct ISteamFriends_SteamFriends009_GetClanName_params *params = (struct ISteamFriends_SteamFriends009_GetClanName_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetClanName( params->steamIDClan ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetClanName( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetClanTag( void *args ) { struct ISteamFriends_SteamFriends009_GetClanTag_params *params = (struct ISteamFriends_SteamFriends009_GetClanTag_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetClanTag( params->steamIDClan ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetClanTag( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetFriendCountFromSource( void *args ) { struct ISteamFriends_SteamFriends009_GetFriendCountFromSource_params *params = (struct ISteamFriends_SteamFriends009_GetFriendCountFromSource_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetFriendCountFromSource( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetFriendFromSourceByIndex( void *args ) { struct ISteamFriends_SteamFriends009_GetFriendFromSourceByIndex_params *params = (struct ISteamFriends_SteamFriends009_GetFriendFromSourceByIndex_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetFriendFromSourceByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends009_IsUserInSource( void *args ) { struct ISteamFriends_SteamFriends009_IsUserInSource_params *params = (struct ISteamFriends_SteamFriends009_IsUserInSource_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamFriends_SteamFriends009_IsUserInSource( void *args ) NTSTATUS ISteamFriends_SteamFriends009_SetInGameVoiceSpeaking( void *args ) { struct ISteamFriends_SteamFriends009_SetInGameVoiceSpeaking_params *params = (struct ISteamFriends_SteamFriends009_SetInGameVoiceSpeaking_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamFriends_SteamFriends009_SetInGameVoiceSpeaking( void *args ) NTSTATUS ISteamFriends_SteamFriends009_ActivateGameOverlay( void *args ) { struct ISteamFriends_SteamFriends009_ActivateGameOverlay_params *params = (struct ISteamFriends_SteamFriends009_ActivateGameOverlay_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; iface->ActivateGameOverlay( params->pchDialog ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamFriends_SteamFriends009_ActivateGameOverlay( void *args ) NTSTATUS ISteamFriends_SteamFriends009_ActivateGameOverlayToUser( void *args ) { struct ISteamFriends_SteamFriends009_ActivateGameOverlayToUser_params *params = (struct ISteamFriends_SteamFriends009_ActivateGameOverlayToUser_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamFriends_SteamFriends009_ActivateGameOverlayToUser( void *args ) NTSTATUS ISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage( void *args ) { struct ISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage_params *params = (struct ISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 ); iface->ActivateGameOverlayToWebPage( u_pchURL ); steamclient_free_path( u_pchURL ); @@ -186,7 +186,7 @@ NTSTATUS ISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage( void *args NTSTATUS ISteamFriends_SteamFriends009_ActivateGameOverlayToStore( void *args ) { struct ISteamFriends_SteamFriends009_ActivateGameOverlayToStore_params *params = (struct ISteamFriends_SteamFriends009_ActivateGameOverlayToStore_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; iface->ActivateGameOverlayToStore( params->nAppID ); return 0; } @@ -194,7 +194,7 @@ NTSTATUS ISteamFriends_SteamFriends009_ActivateGameOverlayToStore( void *args ) NTSTATUS ISteamFriends_SteamFriends009_SetPlayedWith( void *args ) { struct ISteamFriends_SteamFriends009_SetPlayedWith_params *params = (struct ISteamFriends_SteamFriends009_SetPlayedWith_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; iface->SetPlayedWith( params->steamIDUserPlayedWith ); return 0; } @@ -202,7 +202,7 @@ NTSTATUS ISteamFriends_SteamFriends009_SetPlayedWith( void *args ) NTSTATUS ISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog( void *args ) { struct ISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog_params *params = (struct ISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); return 0; } @@ -210,7 +210,7 @@ NTSTATUS ISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog( void *ar NTSTATUS ISteamFriends_SteamFriends009_GetSmallFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends009_GetSmallFriendAvatar_params *params = (struct ISteamFriends_SteamFriends009_GetSmallFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); return 0; } @@ -218,7 +218,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetSmallFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetMediumFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends009_GetMediumFriendAvatar_params *params = (struct ISteamFriends_SteamFriends009_GetMediumFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); return 0; } @@ -226,7 +226,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetMediumFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetLargeFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends009_GetLargeFriendAvatar_params *params = (struct ISteamFriends_SteamFriends009_GetLargeFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); return 0; } @@ -234,7 +234,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetLargeFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends009_RequestUserInformation( void *args ) { struct ISteamFriends_SteamFriends009_RequestUserInformation_params *params = (struct ISteamFriends_SteamFriends009_RequestUserInformation_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); return 0; } @@ -242,7 +242,7 @@ NTSTATUS ISteamFriends_SteamFriends009_RequestUserInformation( void *args ) NTSTATUS ISteamFriends_SteamFriends009_RequestClanOfficerList( void *args ) { struct ISteamFriends_SteamFriends009_RequestClanOfficerList_params *params = (struct ISteamFriends_SteamFriends009_RequestClanOfficerList_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); return 0; } @@ -250,7 +250,7 @@ NTSTATUS ISteamFriends_SteamFriends009_RequestClanOfficerList( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetClanOwner( void *args ) { struct ISteamFriends_SteamFriends009_GetClanOwner_params *params = (struct ISteamFriends_SteamFriends009_GetClanOwner_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; *params->_ret = iface->GetClanOwner( params->steamIDClan ); return 0; } @@ -258,7 +258,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetClanOwner( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetClanOfficerCount( void *args ) { struct ISteamFriends_SteamFriends009_GetClanOfficerCount_params *params = (struct ISteamFriends_SteamFriends009_GetClanOfficerCount_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); return 0; } @@ -266,7 +266,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetClanOfficerCount( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetClanOfficerByIndex( void *args ) { struct ISteamFriends_SteamFriends009_GetClanOfficerByIndex_params *params = (struct ISteamFriends_SteamFriends009_GetClanOfficerByIndex_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); return 0; } @@ -274,7 +274,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetClanOfficerByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetUserRestrictions( void *args ) { struct ISteamFriends_SteamFriends009_GetUserRestrictions_params *params = (struct ISteamFriends_SteamFriends009_GetUserRestrictions_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetUserRestrictions( ); return 0; } @@ -282,7 +282,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetUserRestrictions( void *args ) NTSTATUS ISteamFriends_SteamFriends009_SetRichPresence( void *args ) { struct ISteamFriends_SteamFriends009_SetRichPresence_params *params = (struct ISteamFriends_SteamFriends009_SetRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->SetRichPresence( params->pchKey, params->pchValue ); return 0; } @@ -290,7 +290,7 @@ NTSTATUS ISteamFriends_SteamFriends009_SetRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends009_ClearRichPresence( void *args ) { struct ISteamFriends_SteamFriends009_ClearRichPresence_params *params = (struct ISteamFriends_SteamFriends009_ClearRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; iface->ClearRichPresence( ); return 0; } @@ -298,7 +298,7 @@ NTSTATUS ISteamFriends_SteamFriends009_ClearRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetFriendRichPresence( void *args ) { struct ISteamFriends_SteamFriends009_GetFriendRichPresence_params *params = (struct ISteamFriends_SteamFriends009_GetFriendRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetFriendRichPresence( params->steamIDFriend, params->pchKey ); return 0; } @@ -306,7 +306,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetFriendRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount( void *args ) { struct ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount_params *params = (struct ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetFriendRichPresenceKeyCount( params->steamIDFriend ); return 0; } @@ -314,7 +314,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount( void *args NTSTATUS ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex( void *args ) { struct ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex_params *params = (struct ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetFriendRichPresenceKeyByIndex( params->steamIDFriend, params->iKey ); return 0; } @@ -322,7 +322,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex( void *ar NTSTATUS ISteamFriends_SteamFriends009_InviteUserToGame( void *args ) { struct ISteamFriends_SteamFriends009_InviteUserToGame_params *params = (struct ISteamFriends_SteamFriends009_InviteUserToGame_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->InviteUserToGame( params->steamIDFriend, params->pchConnectString ); return 0; } @@ -330,7 +330,7 @@ NTSTATUS ISteamFriends_SteamFriends009_InviteUserToGame( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetCoplayFriendCount( void *args ) { struct ISteamFriends_SteamFriends009_GetCoplayFriendCount_params *params = (struct ISteamFriends_SteamFriends009_GetCoplayFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetCoplayFriendCount( ); return 0; } @@ -338,7 +338,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetCoplayFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetCoplayFriend( void *args ) { struct ISteamFriends_SteamFriends009_GetCoplayFriend_params *params = (struct ISteamFriends_SteamFriends009_GetCoplayFriend_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; *params->_ret = iface->GetCoplayFriend( params->iCoplayFriend ); return 0; } @@ -346,7 +346,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetCoplayFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetFriendCoplayTime( void *args ) { struct ISteamFriends_SteamFriends009_GetFriendCoplayTime_params *params = (struct ISteamFriends_SteamFriends009_GetFriendCoplayTime_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetFriendCoplayTime( params->steamIDFriend ); return 0; } @@ -354,7 +354,7 @@ NTSTATUS ISteamFriends_SteamFriends009_GetFriendCoplayTime( void *args ) NTSTATUS ISteamFriends_SteamFriends009_GetFriendCoplayGame( void *args ) { struct ISteamFriends_SteamFriends009_GetFriendCoplayGame_params *params = (struct ISteamFriends_SteamFriends009_GetFriendCoplayGame_params *)args; - struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->linux_side; + struct u_ISteamFriends_SteamFriends009 *iface = (struct u_ISteamFriends_SteamFriends009 *)params->u_iface; params->_ret = iface->GetFriendCoplayGame( params->steamIDFriend ); return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends010.cpp b/lsteamclient/cppISteamFriends_SteamFriends010.cpp index f5b63ada..27bf72c7 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends010.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends010.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetPersonaName( void *args ) { struct ISteamFriends_SteamFriends010_GetPersonaName_params *params = (struct ISteamFriends_SteamFriends010_GetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetPersonaName( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends010_SetPersonaName( void *args ) { struct ISteamFriends_SteamFriends010_SetPersonaName_params *params = (struct ISteamFriends_SteamFriends010_SetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; iface->SetPersonaName( params->pchPersonaName ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamFriends_SteamFriends010_SetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetPersonaState( void *args ) { struct ISteamFriends_SteamFriends010_GetPersonaState_params *params = (struct ISteamFriends_SteamFriends010_GetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetPersonaState( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetFriendCount( void *args ) { struct ISteamFriends_SteamFriends010_GetFriendCount_params *params = (struct ISteamFriends_SteamFriends010_GetFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetFriendCount( params->iFriendFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetFriendByIndex( void *args ) { struct ISteamFriends_SteamFriends010_GetFriendByIndex_params *params = (struct ISteamFriends_SteamFriends010_GetFriendByIndex_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetFriendByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetFriendRelationship( void *args ) { struct ISteamFriends_SteamFriends010_GetFriendRelationship_params *params = (struct ISteamFriends_SteamFriends010_GetFriendRelationship_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetFriendRelationship( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetFriendPersonaState( void *args ) { struct ISteamFriends_SteamFriends010_GetFriendPersonaState_params *params = (struct ISteamFriends_SteamFriends010_GetFriendPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetFriendPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetFriendPersonaName( void *args ) { struct ISteamFriends_SteamFriends010_GetFriendPersonaName_params *params = (struct ISteamFriends_SteamFriends010_GetFriendPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetFriendPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetFriendGamePlayed( void *args ) { struct ISteamFriends_SteamFriends010_GetFriendGamePlayed_params *params = (struct ISteamFriends_SteamFriends010_GetFriendGamePlayed_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetFriendGamePlayed( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetFriendPersonaNameHistory( void *args ) { struct ISteamFriends_SteamFriends010_GetFriendPersonaNameHistory_params *params = (struct ISteamFriends_SteamFriends010_GetFriendPersonaNameHistory_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetFriendPersonaNameHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends010_HasFriend( void *args ) { struct ISteamFriends_SteamFriends010_HasFriend_params *params = (struct ISteamFriends_SteamFriends010_HasFriend_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamFriends_SteamFriends010_HasFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetClanCount( void *args ) { struct ISteamFriends_SteamFriends010_GetClanCount_params *params = (struct ISteamFriends_SteamFriends010_GetClanCount_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetClanCount( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetClanCount( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetClanByIndex( void *args ) { struct ISteamFriends_SteamFriends010_GetClanByIndex_params *params = (struct ISteamFriends_SteamFriends010_GetClanByIndex_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; *params->_ret = iface->GetClanByIndex( params->iClan ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetClanByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetClanName( void *args ) { struct ISteamFriends_SteamFriends010_GetClanName_params *params = (struct ISteamFriends_SteamFriends010_GetClanName_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetClanName( params->steamIDClan ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetClanName( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetClanTag( void *args ) { struct ISteamFriends_SteamFriends010_GetClanTag_params *params = (struct ISteamFriends_SteamFriends010_GetClanTag_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetClanTag( params->steamIDClan ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetClanTag( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetClanActivityCounts( void *args ) { struct ISteamFriends_SteamFriends010_GetClanActivityCounts_params *params = (struct ISteamFriends_SteamFriends010_GetClanActivityCounts_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetClanActivityCounts( params->steamIDClan, params->pnOnline, params->pnInGame, params->pnChatting ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetClanActivityCounts( void *args ) NTSTATUS ISteamFriends_SteamFriends010_DownloadClanActivityCounts( void *args ) { struct ISteamFriends_SteamFriends010_DownloadClanActivityCounts_params *params = (struct ISteamFriends_SteamFriends010_DownloadClanActivityCounts_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->DownloadClanActivityCounts( params->psteamIDClans, params->cClansToRequest ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamFriends_SteamFriends010_DownloadClanActivityCounts( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetFriendCountFromSource( void *args ) { struct ISteamFriends_SteamFriends010_GetFriendCountFromSource_params *params = (struct ISteamFriends_SteamFriends010_GetFriendCountFromSource_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetFriendCountFromSource( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetFriendFromSourceByIndex( void *args ) { struct ISteamFriends_SteamFriends010_GetFriendFromSourceByIndex_params *params = (struct ISteamFriends_SteamFriends010_GetFriendFromSourceByIndex_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetFriendFromSourceByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends010_IsUserInSource( void *args ) { struct ISteamFriends_SteamFriends010_IsUserInSource_params *params = (struct ISteamFriends_SteamFriends010_IsUserInSource_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamFriends_SteamFriends010_IsUserInSource( void *args ) NTSTATUS ISteamFriends_SteamFriends010_SetInGameVoiceSpeaking( void *args ) { struct ISteamFriends_SteamFriends010_SetInGameVoiceSpeaking_params *params = (struct ISteamFriends_SteamFriends010_SetInGameVoiceSpeaking_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamFriends_SteamFriends010_SetInGameVoiceSpeaking( void *args ) NTSTATUS ISteamFriends_SteamFriends010_ActivateGameOverlay( void *args ) { struct ISteamFriends_SteamFriends010_ActivateGameOverlay_params *params = (struct ISteamFriends_SteamFriends010_ActivateGameOverlay_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; iface->ActivateGameOverlay( params->pchDialog ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamFriends_SteamFriends010_ActivateGameOverlay( void *args ) NTSTATUS ISteamFriends_SteamFriends010_ActivateGameOverlayToUser( void *args ) { struct ISteamFriends_SteamFriends010_ActivateGameOverlayToUser_params *params = (struct ISteamFriends_SteamFriends010_ActivateGameOverlayToUser_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamFriends_SteamFriends010_ActivateGameOverlayToUser( void *args ) NTSTATUS ISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage( void *args ) { struct ISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage_params *params = (struct ISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 ); iface->ActivateGameOverlayToWebPage( u_pchURL ); steamclient_free_path( u_pchURL ); @@ -202,7 +202,7 @@ NTSTATUS ISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage( void *args NTSTATUS ISteamFriends_SteamFriends010_ActivateGameOverlayToStore( void *args ) { struct ISteamFriends_SteamFriends010_ActivateGameOverlayToStore_params *params = (struct ISteamFriends_SteamFriends010_ActivateGameOverlayToStore_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; iface->ActivateGameOverlayToStore( params->nAppID ); return 0; } @@ -210,7 +210,7 @@ NTSTATUS ISteamFriends_SteamFriends010_ActivateGameOverlayToStore( void *args ) NTSTATUS ISteamFriends_SteamFriends010_SetPlayedWith( void *args ) { struct ISteamFriends_SteamFriends010_SetPlayedWith_params *params = (struct ISteamFriends_SteamFriends010_SetPlayedWith_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; iface->SetPlayedWith( params->steamIDUserPlayedWith ); return 0; } @@ -218,7 +218,7 @@ NTSTATUS ISteamFriends_SteamFriends010_SetPlayedWith( void *args ) NTSTATUS ISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog( void *args ) { struct ISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog_params *params = (struct ISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); return 0; } @@ -226,7 +226,7 @@ NTSTATUS ISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog( void *ar NTSTATUS ISteamFriends_SteamFriends010_GetSmallFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends010_GetSmallFriendAvatar_params *params = (struct ISteamFriends_SteamFriends010_GetSmallFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); return 0; } @@ -234,7 +234,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetSmallFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetMediumFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends010_GetMediumFriendAvatar_params *params = (struct ISteamFriends_SteamFriends010_GetMediumFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); return 0; } @@ -242,7 +242,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetMediumFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetLargeFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends010_GetLargeFriendAvatar_params *params = (struct ISteamFriends_SteamFriends010_GetLargeFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); return 0; } @@ -250,7 +250,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetLargeFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends010_RequestUserInformation( void *args ) { struct ISteamFriends_SteamFriends010_RequestUserInformation_params *params = (struct ISteamFriends_SteamFriends010_RequestUserInformation_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); return 0; } @@ -258,7 +258,7 @@ NTSTATUS ISteamFriends_SteamFriends010_RequestUserInformation( void *args ) NTSTATUS ISteamFriends_SteamFriends010_RequestClanOfficerList( void *args ) { struct ISteamFriends_SteamFriends010_RequestClanOfficerList_params *params = (struct ISteamFriends_SteamFriends010_RequestClanOfficerList_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); return 0; } @@ -266,7 +266,7 @@ NTSTATUS ISteamFriends_SteamFriends010_RequestClanOfficerList( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetClanOwner( void *args ) { struct ISteamFriends_SteamFriends010_GetClanOwner_params *params = (struct ISteamFriends_SteamFriends010_GetClanOwner_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; *params->_ret = iface->GetClanOwner( params->steamIDClan ); return 0; } @@ -274,7 +274,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetClanOwner( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetClanOfficerCount( void *args ) { struct ISteamFriends_SteamFriends010_GetClanOfficerCount_params *params = (struct ISteamFriends_SteamFriends010_GetClanOfficerCount_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); return 0; } @@ -282,7 +282,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetClanOfficerCount( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetClanOfficerByIndex( void *args ) { struct ISteamFriends_SteamFriends010_GetClanOfficerByIndex_params *params = (struct ISteamFriends_SteamFriends010_GetClanOfficerByIndex_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); return 0; } @@ -290,7 +290,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetClanOfficerByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetUserRestrictions( void *args ) { struct ISteamFriends_SteamFriends010_GetUserRestrictions_params *params = (struct ISteamFriends_SteamFriends010_GetUserRestrictions_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetUserRestrictions( ); return 0; } @@ -298,7 +298,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetUserRestrictions( void *args ) NTSTATUS ISteamFriends_SteamFriends010_SetRichPresence( void *args ) { struct ISteamFriends_SteamFriends010_SetRichPresence_params *params = (struct ISteamFriends_SteamFriends010_SetRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->SetRichPresence( params->pchKey, params->pchValue ); return 0; } @@ -306,7 +306,7 @@ NTSTATUS ISteamFriends_SteamFriends010_SetRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends010_ClearRichPresence( void *args ) { struct ISteamFriends_SteamFriends010_ClearRichPresence_params *params = (struct ISteamFriends_SteamFriends010_ClearRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; iface->ClearRichPresence( ); return 0; } @@ -314,7 +314,7 @@ NTSTATUS ISteamFriends_SteamFriends010_ClearRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetFriendRichPresence( void *args ) { struct ISteamFriends_SteamFriends010_GetFriendRichPresence_params *params = (struct ISteamFriends_SteamFriends010_GetFriendRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetFriendRichPresence( params->steamIDFriend, params->pchKey ); return 0; } @@ -322,7 +322,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetFriendRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount( void *args ) { struct ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount_params *params = (struct ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetFriendRichPresenceKeyCount( params->steamIDFriend ); return 0; } @@ -330,7 +330,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount( void *args NTSTATUS ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex( void *args ) { struct ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex_params *params = (struct ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetFriendRichPresenceKeyByIndex( params->steamIDFriend, params->iKey ); return 0; } @@ -338,7 +338,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex( void *ar NTSTATUS ISteamFriends_SteamFriends010_InviteUserToGame( void *args ) { struct ISteamFriends_SteamFriends010_InviteUserToGame_params *params = (struct ISteamFriends_SteamFriends010_InviteUserToGame_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->InviteUserToGame( params->steamIDFriend, params->pchConnectString ); return 0; } @@ -346,7 +346,7 @@ NTSTATUS ISteamFriends_SteamFriends010_InviteUserToGame( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetCoplayFriendCount( void *args ) { struct ISteamFriends_SteamFriends010_GetCoplayFriendCount_params *params = (struct ISteamFriends_SteamFriends010_GetCoplayFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetCoplayFriendCount( ); return 0; } @@ -354,7 +354,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetCoplayFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetCoplayFriend( void *args ) { struct ISteamFriends_SteamFriends010_GetCoplayFriend_params *params = (struct ISteamFriends_SteamFriends010_GetCoplayFriend_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; *params->_ret = iface->GetCoplayFriend( params->iCoplayFriend ); return 0; } @@ -362,7 +362,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetCoplayFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetFriendCoplayTime( void *args ) { struct ISteamFriends_SteamFriends010_GetFriendCoplayTime_params *params = (struct ISteamFriends_SteamFriends010_GetFriendCoplayTime_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetFriendCoplayTime( params->steamIDFriend ); return 0; } @@ -370,7 +370,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetFriendCoplayTime( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetFriendCoplayGame( void *args ) { struct ISteamFriends_SteamFriends010_GetFriendCoplayGame_params *params = (struct ISteamFriends_SteamFriends010_GetFriendCoplayGame_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetFriendCoplayGame( params->steamIDFriend ); return 0; } @@ -378,7 +378,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetFriendCoplayGame( void *args ) NTSTATUS ISteamFriends_SteamFriends010_JoinClanChatRoom( void *args ) { struct ISteamFriends_SteamFriends010_JoinClanChatRoom_params *params = (struct ISteamFriends_SteamFriends010_JoinClanChatRoom_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->JoinClanChatRoom( params->steamIDClan ); return 0; } @@ -386,7 +386,7 @@ NTSTATUS ISteamFriends_SteamFriends010_JoinClanChatRoom( void *args ) NTSTATUS ISteamFriends_SteamFriends010_LeaveClanChatRoom( void *args ) { struct ISteamFriends_SteamFriends010_LeaveClanChatRoom_params *params = (struct ISteamFriends_SteamFriends010_LeaveClanChatRoom_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->LeaveClanChatRoom( params->steamIDClan ); return 0; } @@ -394,7 +394,7 @@ NTSTATUS ISteamFriends_SteamFriends010_LeaveClanChatRoom( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetClanChatMemberCount( void *args ) { struct ISteamFriends_SteamFriends010_GetClanChatMemberCount_params *params = (struct ISteamFriends_SteamFriends010_GetClanChatMemberCount_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetClanChatMemberCount( params->steamIDClan ); return 0; } @@ -402,7 +402,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetClanChatMemberCount( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetChatMemberByIndex( void *args ) { struct ISteamFriends_SteamFriends010_GetChatMemberByIndex_params *params = (struct ISteamFriends_SteamFriends010_GetChatMemberByIndex_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; *params->_ret = iface->GetChatMemberByIndex( params->steamIDClan, params->iUser ); return 0; } @@ -410,7 +410,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetChatMemberByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends010_SendClanChatMessage( void *args ) { struct ISteamFriends_SteamFriends010_SendClanChatMessage_params *params = (struct ISteamFriends_SteamFriends010_SendClanChatMessage_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->SendClanChatMessage( params->steamIDClanChat, params->pchText ); return 0; } @@ -418,7 +418,7 @@ NTSTATUS ISteamFriends_SteamFriends010_SendClanChatMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetClanChatMessage( void *args ) { struct ISteamFriends_SteamFriends010_GetClanChatMessage_params *params = (struct ISteamFriends_SteamFriends010_GetClanChatMessage_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetClanChatMessage( params->steamIDClanChat, params->iMessage, params->prgchText, params->cchTextMax, params->_e, params->_f ); return 0; } @@ -426,7 +426,7 @@ NTSTATUS ISteamFriends_SteamFriends010_GetClanChatMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends010_IsClanChatAdmin( void *args ) { struct ISteamFriends_SteamFriends010_IsClanChatAdmin_params *params = (struct ISteamFriends_SteamFriends010_IsClanChatAdmin_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->IsClanChatAdmin( params->steamIDClanChat, params->steamIDUser ); return 0; } @@ -434,7 +434,7 @@ NTSTATUS ISteamFriends_SteamFriends010_IsClanChatAdmin( void *args ) NTSTATUS ISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam( void *args ) { struct ISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam_params *params = (struct ISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->IsClanChatWindowOpenInSteam( params->steamIDClanChat ); return 0; } @@ -442,7 +442,7 @@ NTSTATUS ISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends010_OpenClanChatWindowInSteam( void *args ) { struct ISteamFriends_SteamFriends010_OpenClanChatWindowInSteam_params *params = (struct ISteamFriends_SteamFriends010_OpenClanChatWindowInSteam_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->OpenClanChatWindowInSteam( params->steamIDClanChat ); return 0; } @@ -450,7 +450,7 @@ NTSTATUS ISteamFriends_SteamFriends010_OpenClanChatWindowInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends010_CloseClanChatWindowInSteam( void *args ) { struct ISteamFriends_SteamFriends010_CloseClanChatWindowInSteam_params *params = (struct ISteamFriends_SteamFriends010_CloseClanChatWindowInSteam_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->CloseClanChatWindowInSteam( params->steamIDClanChat ); return 0; } @@ -458,7 +458,7 @@ NTSTATUS ISteamFriends_SteamFriends010_CloseClanChatWindowInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends010_SetListenForFriendsMessages( void *args ) { struct ISteamFriends_SteamFriends010_SetListenForFriendsMessages_params *params = (struct ISteamFriends_SteamFriends010_SetListenForFriendsMessages_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->SetListenForFriendsMessages( params->bInterceptEnabled ); return 0; } @@ -466,7 +466,7 @@ NTSTATUS ISteamFriends_SteamFriends010_SetListenForFriendsMessages( void *args ) NTSTATUS ISteamFriends_SteamFriends010_ReplyToFriendMessage( void *args ) { struct ISteamFriends_SteamFriends010_ReplyToFriendMessage_params *params = (struct ISteamFriends_SteamFriends010_ReplyToFriendMessage_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->ReplyToFriendMessage( params->steamIDFriend, params->pchMsgToSend ); return 0; } @@ -474,7 +474,7 @@ NTSTATUS ISteamFriends_SteamFriends010_ReplyToFriendMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends010_GetFriendMessage( void *args ) { struct ISteamFriends_SteamFriends010_GetFriendMessage_params *params = (struct ISteamFriends_SteamFriends010_GetFriendMessage_params *)args; - struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->linux_side; + struct u_ISteamFriends_SteamFriends010 *iface = (struct u_ISteamFriends_SteamFriends010 *)params->u_iface; params->_ret = iface->GetFriendMessage( params->steamIDFriend, params->iMessageID, params->pvData, params->cubData, params->peChatEntryType ); return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends011.cpp b/lsteamclient/cppISteamFriends_SteamFriends011.cpp index be388cf6..fcea062f 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends011.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends011.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetPersonaName( void *args ) { struct ISteamFriends_SteamFriends011_GetPersonaName_params *params = (struct ISteamFriends_SteamFriends011_GetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetPersonaName( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends011_SetPersonaName( void *args ) { struct ISteamFriends_SteamFriends011_SetPersonaName_params *params = (struct ISteamFriends_SteamFriends011_SetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; iface->SetPersonaName( params->pchPersonaName ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamFriends_SteamFriends011_SetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetPersonaState( void *args ) { struct ISteamFriends_SteamFriends011_GetPersonaState_params *params = (struct ISteamFriends_SteamFriends011_GetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetPersonaState( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetFriendCount( void *args ) { struct ISteamFriends_SteamFriends011_GetFriendCount_params *params = (struct ISteamFriends_SteamFriends011_GetFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetFriendCount( params->iFriendFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetFriendByIndex( void *args ) { struct ISteamFriends_SteamFriends011_GetFriendByIndex_params *params = (struct ISteamFriends_SteamFriends011_GetFriendByIndex_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetFriendByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetFriendRelationship( void *args ) { struct ISteamFriends_SteamFriends011_GetFriendRelationship_params *params = (struct ISteamFriends_SteamFriends011_GetFriendRelationship_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetFriendRelationship( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetFriendPersonaState( void *args ) { struct ISteamFriends_SteamFriends011_GetFriendPersonaState_params *params = (struct ISteamFriends_SteamFriends011_GetFriendPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetFriendPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetFriendPersonaName( void *args ) { struct ISteamFriends_SteamFriends011_GetFriendPersonaName_params *params = (struct ISteamFriends_SteamFriends011_GetFriendPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetFriendPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetFriendGamePlayed( void *args ) { struct ISteamFriends_SteamFriends011_GetFriendGamePlayed_params *params = (struct ISteamFriends_SteamFriends011_GetFriendGamePlayed_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetFriendGamePlayed( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetFriendPersonaNameHistory( void *args ) { struct ISteamFriends_SteamFriends011_GetFriendPersonaNameHistory_params *params = (struct ISteamFriends_SteamFriends011_GetFriendPersonaNameHistory_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetFriendPersonaNameHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends011_HasFriend( void *args ) { struct ISteamFriends_SteamFriends011_HasFriend_params *params = (struct ISteamFriends_SteamFriends011_HasFriend_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamFriends_SteamFriends011_HasFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetClanCount( void *args ) { struct ISteamFriends_SteamFriends011_GetClanCount_params *params = (struct ISteamFriends_SteamFriends011_GetClanCount_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetClanCount( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetClanCount( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetClanByIndex( void *args ) { struct ISteamFriends_SteamFriends011_GetClanByIndex_params *params = (struct ISteamFriends_SteamFriends011_GetClanByIndex_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; *params->_ret = iface->GetClanByIndex( params->iClan ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetClanByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetClanName( void *args ) { struct ISteamFriends_SteamFriends011_GetClanName_params *params = (struct ISteamFriends_SteamFriends011_GetClanName_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetClanName( params->steamIDClan ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetClanName( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetClanTag( void *args ) { struct ISteamFriends_SteamFriends011_GetClanTag_params *params = (struct ISteamFriends_SteamFriends011_GetClanTag_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetClanTag( params->steamIDClan ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetClanTag( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetClanActivityCounts( void *args ) { struct ISteamFriends_SteamFriends011_GetClanActivityCounts_params *params = (struct ISteamFriends_SteamFriends011_GetClanActivityCounts_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetClanActivityCounts( params->steamIDClan, params->pnOnline, params->pnInGame, params->pnChatting ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetClanActivityCounts( void *args ) NTSTATUS ISteamFriends_SteamFriends011_DownloadClanActivityCounts( void *args ) { struct ISteamFriends_SteamFriends011_DownloadClanActivityCounts_params *params = (struct ISteamFriends_SteamFriends011_DownloadClanActivityCounts_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->DownloadClanActivityCounts( params->psteamIDClans, params->cClansToRequest ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamFriends_SteamFriends011_DownloadClanActivityCounts( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetFriendCountFromSource( void *args ) { struct ISteamFriends_SteamFriends011_GetFriendCountFromSource_params *params = (struct ISteamFriends_SteamFriends011_GetFriendCountFromSource_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetFriendCountFromSource( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetFriendFromSourceByIndex( void *args ) { struct ISteamFriends_SteamFriends011_GetFriendFromSourceByIndex_params *params = (struct ISteamFriends_SteamFriends011_GetFriendFromSourceByIndex_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetFriendFromSourceByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends011_IsUserInSource( void *args ) { struct ISteamFriends_SteamFriends011_IsUserInSource_params *params = (struct ISteamFriends_SteamFriends011_IsUserInSource_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamFriends_SteamFriends011_IsUserInSource( void *args ) NTSTATUS ISteamFriends_SteamFriends011_SetInGameVoiceSpeaking( void *args ) { struct ISteamFriends_SteamFriends011_SetInGameVoiceSpeaking_params *params = (struct ISteamFriends_SteamFriends011_SetInGameVoiceSpeaking_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamFriends_SteamFriends011_SetInGameVoiceSpeaking( void *args ) NTSTATUS ISteamFriends_SteamFriends011_ActivateGameOverlay( void *args ) { struct ISteamFriends_SteamFriends011_ActivateGameOverlay_params *params = (struct ISteamFriends_SteamFriends011_ActivateGameOverlay_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; iface->ActivateGameOverlay( params->pchDialog ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamFriends_SteamFriends011_ActivateGameOverlay( void *args ) NTSTATUS ISteamFriends_SteamFriends011_ActivateGameOverlayToUser( void *args ) { struct ISteamFriends_SteamFriends011_ActivateGameOverlayToUser_params *params = (struct ISteamFriends_SteamFriends011_ActivateGameOverlayToUser_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamFriends_SteamFriends011_ActivateGameOverlayToUser( void *args ) NTSTATUS ISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage( void *args ) { struct ISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage_params *params = (struct ISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 ); iface->ActivateGameOverlayToWebPage( u_pchURL ); steamclient_free_path( u_pchURL ); @@ -202,7 +202,7 @@ NTSTATUS ISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage( void *args NTSTATUS ISteamFriends_SteamFriends011_ActivateGameOverlayToStore( void *args ) { struct ISteamFriends_SteamFriends011_ActivateGameOverlayToStore_params *params = (struct ISteamFriends_SteamFriends011_ActivateGameOverlayToStore_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; iface->ActivateGameOverlayToStore( params->nAppID ); return 0; } @@ -210,7 +210,7 @@ NTSTATUS ISteamFriends_SteamFriends011_ActivateGameOverlayToStore( void *args ) NTSTATUS ISteamFriends_SteamFriends011_SetPlayedWith( void *args ) { struct ISteamFriends_SteamFriends011_SetPlayedWith_params *params = (struct ISteamFriends_SteamFriends011_SetPlayedWith_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; iface->SetPlayedWith( params->steamIDUserPlayedWith ); return 0; } @@ -218,7 +218,7 @@ NTSTATUS ISteamFriends_SteamFriends011_SetPlayedWith( void *args ) NTSTATUS ISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog( void *args ) { struct ISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog_params *params = (struct ISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); return 0; } @@ -226,7 +226,7 @@ NTSTATUS ISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog( void *ar NTSTATUS ISteamFriends_SteamFriends011_GetSmallFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends011_GetSmallFriendAvatar_params *params = (struct ISteamFriends_SteamFriends011_GetSmallFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); return 0; } @@ -234,7 +234,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetSmallFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetMediumFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends011_GetMediumFriendAvatar_params *params = (struct ISteamFriends_SteamFriends011_GetMediumFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); return 0; } @@ -242,7 +242,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetMediumFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetLargeFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends011_GetLargeFriendAvatar_params *params = (struct ISteamFriends_SteamFriends011_GetLargeFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); return 0; } @@ -250,7 +250,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetLargeFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends011_RequestUserInformation( void *args ) { struct ISteamFriends_SteamFriends011_RequestUserInformation_params *params = (struct ISteamFriends_SteamFriends011_RequestUserInformation_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); return 0; } @@ -258,7 +258,7 @@ NTSTATUS ISteamFriends_SteamFriends011_RequestUserInformation( void *args ) NTSTATUS ISteamFriends_SteamFriends011_RequestClanOfficerList( void *args ) { struct ISteamFriends_SteamFriends011_RequestClanOfficerList_params *params = (struct ISteamFriends_SteamFriends011_RequestClanOfficerList_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); return 0; } @@ -266,7 +266,7 @@ NTSTATUS ISteamFriends_SteamFriends011_RequestClanOfficerList( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetClanOwner( void *args ) { struct ISteamFriends_SteamFriends011_GetClanOwner_params *params = (struct ISteamFriends_SteamFriends011_GetClanOwner_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; *params->_ret = iface->GetClanOwner( params->steamIDClan ); return 0; } @@ -274,7 +274,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetClanOwner( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetClanOfficerCount( void *args ) { struct ISteamFriends_SteamFriends011_GetClanOfficerCount_params *params = (struct ISteamFriends_SteamFriends011_GetClanOfficerCount_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); return 0; } @@ -282,7 +282,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetClanOfficerCount( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetClanOfficerByIndex( void *args ) { struct ISteamFriends_SteamFriends011_GetClanOfficerByIndex_params *params = (struct ISteamFriends_SteamFriends011_GetClanOfficerByIndex_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); return 0; } @@ -290,7 +290,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetClanOfficerByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetUserRestrictions( void *args ) { struct ISteamFriends_SteamFriends011_GetUserRestrictions_params *params = (struct ISteamFriends_SteamFriends011_GetUserRestrictions_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetUserRestrictions( ); return 0; } @@ -298,7 +298,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetUserRestrictions( void *args ) NTSTATUS ISteamFriends_SteamFriends011_SetRichPresence( void *args ) { struct ISteamFriends_SteamFriends011_SetRichPresence_params *params = (struct ISteamFriends_SteamFriends011_SetRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->SetRichPresence( params->pchKey, params->pchValue ); return 0; } @@ -306,7 +306,7 @@ NTSTATUS ISteamFriends_SteamFriends011_SetRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends011_ClearRichPresence( void *args ) { struct ISteamFriends_SteamFriends011_ClearRichPresence_params *params = (struct ISteamFriends_SteamFriends011_ClearRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; iface->ClearRichPresence( ); return 0; } @@ -314,7 +314,7 @@ NTSTATUS ISteamFriends_SteamFriends011_ClearRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetFriendRichPresence( void *args ) { struct ISteamFriends_SteamFriends011_GetFriendRichPresence_params *params = (struct ISteamFriends_SteamFriends011_GetFriendRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetFriendRichPresence( params->steamIDFriend, params->pchKey ); return 0; } @@ -322,7 +322,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetFriendRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount( void *args ) { struct ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount_params *params = (struct ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetFriendRichPresenceKeyCount( params->steamIDFriend ); return 0; } @@ -330,7 +330,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount( void *args NTSTATUS ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex( void *args ) { struct ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex_params *params = (struct ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetFriendRichPresenceKeyByIndex( params->steamIDFriend, params->iKey ); return 0; } @@ -338,7 +338,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex( void *ar NTSTATUS ISteamFriends_SteamFriends011_RequestFriendRichPresence( void *args ) { struct ISteamFriends_SteamFriends011_RequestFriendRichPresence_params *params = (struct ISteamFriends_SteamFriends011_RequestFriendRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; iface->RequestFriendRichPresence( params->steamIDFriend ); return 0; } @@ -346,7 +346,7 @@ NTSTATUS ISteamFriends_SteamFriends011_RequestFriendRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends011_InviteUserToGame( void *args ) { struct ISteamFriends_SteamFriends011_InviteUserToGame_params *params = (struct ISteamFriends_SteamFriends011_InviteUserToGame_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->InviteUserToGame( params->steamIDFriend, params->pchConnectString ); return 0; } @@ -354,7 +354,7 @@ NTSTATUS ISteamFriends_SteamFriends011_InviteUserToGame( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetCoplayFriendCount( void *args ) { struct ISteamFriends_SteamFriends011_GetCoplayFriendCount_params *params = (struct ISteamFriends_SteamFriends011_GetCoplayFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetCoplayFriendCount( ); return 0; } @@ -362,7 +362,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetCoplayFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetCoplayFriend( void *args ) { struct ISteamFriends_SteamFriends011_GetCoplayFriend_params *params = (struct ISteamFriends_SteamFriends011_GetCoplayFriend_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; *params->_ret = iface->GetCoplayFriend( params->iCoplayFriend ); return 0; } @@ -370,7 +370,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetCoplayFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetFriendCoplayTime( void *args ) { struct ISteamFriends_SteamFriends011_GetFriendCoplayTime_params *params = (struct ISteamFriends_SteamFriends011_GetFriendCoplayTime_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetFriendCoplayTime( params->steamIDFriend ); return 0; } @@ -378,7 +378,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetFriendCoplayTime( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetFriendCoplayGame( void *args ) { struct ISteamFriends_SteamFriends011_GetFriendCoplayGame_params *params = (struct ISteamFriends_SteamFriends011_GetFriendCoplayGame_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetFriendCoplayGame( params->steamIDFriend ); return 0; } @@ -386,7 +386,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetFriendCoplayGame( void *args ) NTSTATUS ISteamFriends_SteamFriends011_JoinClanChatRoom( void *args ) { struct ISteamFriends_SteamFriends011_JoinClanChatRoom_params *params = (struct ISteamFriends_SteamFriends011_JoinClanChatRoom_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->JoinClanChatRoom( params->steamIDClan ); return 0; } @@ -394,7 +394,7 @@ NTSTATUS ISteamFriends_SteamFriends011_JoinClanChatRoom( void *args ) NTSTATUS ISteamFriends_SteamFriends011_LeaveClanChatRoom( void *args ) { struct ISteamFriends_SteamFriends011_LeaveClanChatRoom_params *params = (struct ISteamFriends_SteamFriends011_LeaveClanChatRoom_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->LeaveClanChatRoom( params->steamIDClan ); return 0; } @@ -402,7 +402,7 @@ NTSTATUS ISteamFriends_SteamFriends011_LeaveClanChatRoom( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetClanChatMemberCount( void *args ) { struct ISteamFriends_SteamFriends011_GetClanChatMemberCount_params *params = (struct ISteamFriends_SteamFriends011_GetClanChatMemberCount_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetClanChatMemberCount( params->steamIDClan ); return 0; } @@ -410,7 +410,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetClanChatMemberCount( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetChatMemberByIndex( void *args ) { struct ISteamFriends_SteamFriends011_GetChatMemberByIndex_params *params = (struct ISteamFriends_SteamFriends011_GetChatMemberByIndex_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; *params->_ret = iface->GetChatMemberByIndex( params->steamIDClan, params->iUser ); return 0; } @@ -418,7 +418,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetChatMemberByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends011_SendClanChatMessage( void *args ) { struct ISteamFriends_SteamFriends011_SendClanChatMessage_params *params = (struct ISteamFriends_SteamFriends011_SendClanChatMessage_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->SendClanChatMessage( params->steamIDClanChat, params->pchText ); return 0; } @@ -426,7 +426,7 @@ NTSTATUS ISteamFriends_SteamFriends011_SendClanChatMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetClanChatMessage( void *args ) { struct ISteamFriends_SteamFriends011_GetClanChatMessage_params *params = (struct ISteamFriends_SteamFriends011_GetClanChatMessage_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetClanChatMessage( params->steamIDClanChat, params->iMessage, params->prgchText, params->cchTextMax, params->_e, params->_f ); return 0; } @@ -434,7 +434,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetClanChatMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends011_IsClanChatAdmin( void *args ) { struct ISteamFriends_SteamFriends011_IsClanChatAdmin_params *params = (struct ISteamFriends_SteamFriends011_IsClanChatAdmin_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->IsClanChatAdmin( params->steamIDClanChat, params->steamIDUser ); return 0; } @@ -442,7 +442,7 @@ NTSTATUS ISteamFriends_SteamFriends011_IsClanChatAdmin( void *args ) NTSTATUS ISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam( void *args ) { struct ISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam_params *params = (struct ISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->IsClanChatWindowOpenInSteam( params->steamIDClanChat ); return 0; } @@ -450,7 +450,7 @@ NTSTATUS ISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends011_OpenClanChatWindowInSteam( void *args ) { struct ISteamFriends_SteamFriends011_OpenClanChatWindowInSteam_params *params = (struct ISteamFriends_SteamFriends011_OpenClanChatWindowInSteam_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->OpenClanChatWindowInSteam( params->steamIDClanChat ); return 0; } @@ -458,7 +458,7 @@ NTSTATUS ISteamFriends_SteamFriends011_OpenClanChatWindowInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends011_CloseClanChatWindowInSteam( void *args ) { struct ISteamFriends_SteamFriends011_CloseClanChatWindowInSteam_params *params = (struct ISteamFriends_SteamFriends011_CloseClanChatWindowInSteam_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->CloseClanChatWindowInSteam( params->steamIDClanChat ); return 0; } @@ -466,7 +466,7 @@ NTSTATUS ISteamFriends_SteamFriends011_CloseClanChatWindowInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends011_SetListenForFriendsMessages( void *args ) { struct ISteamFriends_SteamFriends011_SetListenForFriendsMessages_params *params = (struct ISteamFriends_SteamFriends011_SetListenForFriendsMessages_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->SetListenForFriendsMessages( params->bInterceptEnabled ); return 0; } @@ -474,7 +474,7 @@ NTSTATUS ISteamFriends_SteamFriends011_SetListenForFriendsMessages( void *args ) NTSTATUS ISteamFriends_SteamFriends011_ReplyToFriendMessage( void *args ) { struct ISteamFriends_SteamFriends011_ReplyToFriendMessage_params *params = (struct ISteamFriends_SteamFriends011_ReplyToFriendMessage_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->ReplyToFriendMessage( params->steamIDFriend, params->pchMsgToSend ); return 0; } @@ -482,7 +482,7 @@ NTSTATUS ISteamFriends_SteamFriends011_ReplyToFriendMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetFriendMessage( void *args ) { struct ISteamFriends_SteamFriends011_GetFriendMessage_params *params = (struct ISteamFriends_SteamFriends011_GetFriendMessage_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetFriendMessage( params->steamIDFriend, params->iMessageID, params->pvData, params->cubData, params->peChatEntryType ); return 0; } @@ -490,7 +490,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetFriendMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends011_GetFollowerCount( void *args ) { struct ISteamFriends_SteamFriends011_GetFollowerCount_params *params = (struct ISteamFriends_SteamFriends011_GetFollowerCount_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->GetFollowerCount( params->steamID ); return 0; } @@ -498,7 +498,7 @@ NTSTATUS ISteamFriends_SteamFriends011_GetFollowerCount( void *args ) NTSTATUS ISteamFriends_SteamFriends011_IsFollowing( void *args ) { struct ISteamFriends_SteamFriends011_IsFollowing_params *params = (struct ISteamFriends_SteamFriends011_IsFollowing_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->IsFollowing( params->steamID ); return 0; } @@ -506,7 +506,7 @@ NTSTATUS ISteamFriends_SteamFriends011_IsFollowing( void *args ) NTSTATUS ISteamFriends_SteamFriends011_EnumerateFollowingList( void *args ) { struct ISteamFriends_SteamFriends011_EnumerateFollowingList_params *params = (struct ISteamFriends_SteamFriends011_EnumerateFollowingList_params *)args; - struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->linux_side; + struct u_ISteamFriends_SteamFriends011 *iface = (struct u_ISteamFriends_SteamFriends011 *)params->u_iface; params->_ret = iface->EnumerateFollowingList( params->unStartIndex ); return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends012.cpp b/lsteamclient/cppISteamFriends_SteamFriends012.cpp index 34602e5e..98dc2a81 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends012.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends012.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetPersonaName( void *args ) { struct ISteamFriends_SteamFriends012_GetPersonaName_params *params = (struct ISteamFriends_SteamFriends012_GetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetPersonaName( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends012_SetPersonaName( void *args ) { struct ISteamFriends_SteamFriends012_SetPersonaName_params *params = (struct ISteamFriends_SteamFriends012_SetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->SetPersonaName( params->pchPersonaName ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamFriends_SteamFriends012_SetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetPersonaState( void *args ) { struct ISteamFriends_SteamFriends012_GetPersonaState_params *params = (struct ISteamFriends_SteamFriends012_GetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetPersonaState( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetFriendCount( void *args ) { struct ISteamFriends_SteamFriends012_GetFriendCount_params *params = (struct ISteamFriends_SteamFriends012_GetFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetFriendCount( params->iFriendFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetFriendByIndex( void *args ) { struct ISteamFriends_SteamFriends012_GetFriendByIndex_params *params = (struct ISteamFriends_SteamFriends012_GetFriendByIndex_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetFriendByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetFriendRelationship( void *args ) { struct ISteamFriends_SteamFriends012_GetFriendRelationship_params *params = (struct ISteamFriends_SteamFriends012_GetFriendRelationship_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetFriendRelationship( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetFriendPersonaState( void *args ) { struct ISteamFriends_SteamFriends012_GetFriendPersonaState_params *params = (struct ISteamFriends_SteamFriends012_GetFriendPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetFriendPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetFriendPersonaName( void *args ) { struct ISteamFriends_SteamFriends012_GetFriendPersonaName_params *params = (struct ISteamFriends_SteamFriends012_GetFriendPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetFriendPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetFriendGamePlayed( void *args ) { struct ISteamFriends_SteamFriends012_GetFriendGamePlayed_params *params = (struct ISteamFriends_SteamFriends012_GetFriendGamePlayed_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetFriendGamePlayed( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetFriendPersonaNameHistory( void *args ) { struct ISteamFriends_SteamFriends012_GetFriendPersonaNameHistory_params *params = (struct ISteamFriends_SteamFriends012_GetFriendPersonaNameHistory_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetFriendPersonaNameHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends012_HasFriend( void *args ) { struct ISteamFriends_SteamFriends012_HasFriend_params *params = (struct ISteamFriends_SteamFriends012_HasFriend_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamFriends_SteamFriends012_HasFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetClanCount( void *args ) { struct ISteamFriends_SteamFriends012_GetClanCount_params *params = (struct ISteamFriends_SteamFriends012_GetClanCount_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetClanCount( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetClanCount( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetClanByIndex( void *args ) { struct ISteamFriends_SteamFriends012_GetClanByIndex_params *params = (struct ISteamFriends_SteamFriends012_GetClanByIndex_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; *params->_ret = iface->GetClanByIndex( params->iClan ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetClanByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetClanName( void *args ) { struct ISteamFriends_SteamFriends012_GetClanName_params *params = (struct ISteamFriends_SteamFriends012_GetClanName_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetClanName( params->steamIDClan ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetClanName( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetClanTag( void *args ) { struct ISteamFriends_SteamFriends012_GetClanTag_params *params = (struct ISteamFriends_SteamFriends012_GetClanTag_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetClanTag( params->steamIDClan ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetClanTag( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetClanActivityCounts( void *args ) { struct ISteamFriends_SteamFriends012_GetClanActivityCounts_params *params = (struct ISteamFriends_SteamFriends012_GetClanActivityCounts_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetClanActivityCounts( params->steamIDClan, params->pnOnline, params->pnInGame, params->pnChatting ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetClanActivityCounts( void *args ) NTSTATUS ISteamFriends_SteamFriends012_DownloadClanActivityCounts( void *args ) { struct ISteamFriends_SteamFriends012_DownloadClanActivityCounts_params *params = (struct ISteamFriends_SteamFriends012_DownloadClanActivityCounts_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->DownloadClanActivityCounts( params->psteamIDClans, params->cClansToRequest ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamFriends_SteamFriends012_DownloadClanActivityCounts( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetFriendCountFromSource( void *args ) { struct ISteamFriends_SteamFriends012_GetFriendCountFromSource_params *params = (struct ISteamFriends_SteamFriends012_GetFriendCountFromSource_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetFriendCountFromSource( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetFriendFromSourceByIndex( void *args ) { struct ISteamFriends_SteamFriends012_GetFriendFromSourceByIndex_params *params = (struct ISteamFriends_SteamFriends012_GetFriendFromSourceByIndex_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetFriendFromSourceByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends012_IsUserInSource( void *args ) { struct ISteamFriends_SteamFriends012_IsUserInSource_params *params = (struct ISteamFriends_SteamFriends012_IsUserInSource_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamFriends_SteamFriends012_IsUserInSource( void *args ) NTSTATUS ISteamFriends_SteamFriends012_SetInGameVoiceSpeaking( void *args ) { struct ISteamFriends_SteamFriends012_SetInGameVoiceSpeaking_params *params = (struct ISteamFriends_SteamFriends012_SetInGameVoiceSpeaking_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamFriends_SteamFriends012_SetInGameVoiceSpeaking( void *args ) NTSTATUS ISteamFriends_SteamFriends012_ActivateGameOverlay( void *args ) { struct ISteamFriends_SteamFriends012_ActivateGameOverlay_params *params = (struct ISteamFriends_SteamFriends012_ActivateGameOverlay_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; iface->ActivateGameOverlay( params->pchDialog ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamFriends_SteamFriends012_ActivateGameOverlay( void *args ) NTSTATUS ISteamFriends_SteamFriends012_ActivateGameOverlayToUser( void *args ) { struct ISteamFriends_SteamFriends012_ActivateGameOverlayToUser_params *params = (struct ISteamFriends_SteamFriends012_ActivateGameOverlayToUser_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamFriends_SteamFriends012_ActivateGameOverlayToUser( void *args ) NTSTATUS ISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage( void *args ) { struct ISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage_params *params = (struct ISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 ); iface->ActivateGameOverlayToWebPage( u_pchURL ); steamclient_free_path( u_pchURL ); @@ -202,7 +202,7 @@ NTSTATUS ISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage( void *args NTSTATUS ISteamFriends_SteamFriends012_ActivateGameOverlayToStore( void *args ) { struct ISteamFriends_SteamFriends012_ActivateGameOverlayToStore_params *params = (struct ISteamFriends_SteamFriends012_ActivateGameOverlayToStore_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; iface->ActivateGameOverlayToStore( params->nAppID ); return 0; } @@ -210,7 +210,7 @@ NTSTATUS ISteamFriends_SteamFriends012_ActivateGameOverlayToStore( void *args ) NTSTATUS ISteamFriends_SteamFriends012_SetPlayedWith( void *args ) { struct ISteamFriends_SteamFriends012_SetPlayedWith_params *params = (struct ISteamFriends_SteamFriends012_SetPlayedWith_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; iface->SetPlayedWith( params->steamIDUserPlayedWith ); return 0; } @@ -218,7 +218,7 @@ NTSTATUS ISteamFriends_SteamFriends012_SetPlayedWith( void *args ) NTSTATUS ISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog( void *args ) { struct ISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog_params *params = (struct ISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); return 0; } @@ -226,7 +226,7 @@ NTSTATUS ISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog( void *ar NTSTATUS ISteamFriends_SteamFriends012_GetSmallFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends012_GetSmallFriendAvatar_params *params = (struct ISteamFriends_SteamFriends012_GetSmallFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); return 0; } @@ -234,7 +234,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetSmallFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetMediumFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends012_GetMediumFriendAvatar_params *params = (struct ISteamFriends_SteamFriends012_GetMediumFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); return 0; } @@ -242,7 +242,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetMediumFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetLargeFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends012_GetLargeFriendAvatar_params *params = (struct ISteamFriends_SteamFriends012_GetLargeFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); return 0; } @@ -250,7 +250,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetLargeFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends012_RequestUserInformation( void *args ) { struct ISteamFriends_SteamFriends012_RequestUserInformation_params *params = (struct ISteamFriends_SteamFriends012_RequestUserInformation_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); return 0; } @@ -258,7 +258,7 @@ NTSTATUS ISteamFriends_SteamFriends012_RequestUserInformation( void *args ) NTSTATUS ISteamFriends_SteamFriends012_RequestClanOfficerList( void *args ) { struct ISteamFriends_SteamFriends012_RequestClanOfficerList_params *params = (struct ISteamFriends_SteamFriends012_RequestClanOfficerList_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); return 0; } @@ -266,7 +266,7 @@ NTSTATUS ISteamFriends_SteamFriends012_RequestClanOfficerList( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetClanOwner( void *args ) { struct ISteamFriends_SteamFriends012_GetClanOwner_params *params = (struct ISteamFriends_SteamFriends012_GetClanOwner_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; *params->_ret = iface->GetClanOwner( params->steamIDClan ); return 0; } @@ -274,7 +274,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetClanOwner( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetClanOfficerCount( void *args ) { struct ISteamFriends_SteamFriends012_GetClanOfficerCount_params *params = (struct ISteamFriends_SteamFriends012_GetClanOfficerCount_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); return 0; } @@ -282,7 +282,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetClanOfficerCount( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetClanOfficerByIndex( void *args ) { struct ISteamFriends_SteamFriends012_GetClanOfficerByIndex_params *params = (struct ISteamFriends_SteamFriends012_GetClanOfficerByIndex_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); return 0; } @@ -290,7 +290,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetClanOfficerByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetUserRestrictions( void *args ) { struct ISteamFriends_SteamFriends012_GetUserRestrictions_params *params = (struct ISteamFriends_SteamFriends012_GetUserRestrictions_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetUserRestrictions( ); return 0; } @@ -298,7 +298,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetUserRestrictions( void *args ) NTSTATUS ISteamFriends_SteamFriends012_SetRichPresence( void *args ) { struct ISteamFriends_SteamFriends012_SetRichPresence_params *params = (struct ISteamFriends_SteamFriends012_SetRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->SetRichPresence( params->pchKey, params->pchValue ); return 0; } @@ -306,7 +306,7 @@ NTSTATUS ISteamFriends_SteamFriends012_SetRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends012_ClearRichPresence( void *args ) { struct ISteamFriends_SteamFriends012_ClearRichPresence_params *params = (struct ISteamFriends_SteamFriends012_ClearRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; iface->ClearRichPresence( ); return 0; } @@ -314,7 +314,7 @@ NTSTATUS ISteamFriends_SteamFriends012_ClearRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetFriendRichPresence( void *args ) { struct ISteamFriends_SteamFriends012_GetFriendRichPresence_params *params = (struct ISteamFriends_SteamFriends012_GetFriendRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetFriendRichPresence( params->steamIDFriend, params->pchKey ); return 0; } @@ -322,7 +322,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetFriendRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount( void *args ) { struct ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount_params *params = (struct ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetFriendRichPresenceKeyCount( params->steamIDFriend ); return 0; } @@ -330,7 +330,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount( void *args NTSTATUS ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex( void *args ) { struct ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex_params *params = (struct ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetFriendRichPresenceKeyByIndex( params->steamIDFriend, params->iKey ); return 0; } @@ -338,7 +338,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex( void *ar NTSTATUS ISteamFriends_SteamFriends012_RequestFriendRichPresence( void *args ) { struct ISteamFriends_SteamFriends012_RequestFriendRichPresence_params *params = (struct ISteamFriends_SteamFriends012_RequestFriendRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; iface->RequestFriendRichPresence( params->steamIDFriend ); return 0; } @@ -346,7 +346,7 @@ NTSTATUS ISteamFriends_SteamFriends012_RequestFriendRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends012_InviteUserToGame( void *args ) { struct ISteamFriends_SteamFriends012_InviteUserToGame_params *params = (struct ISteamFriends_SteamFriends012_InviteUserToGame_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->InviteUserToGame( params->steamIDFriend, params->pchConnectString ); return 0; } @@ -354,7 +354,7 @@ NTSTATUS ISteamFriends_SteamFriends012_InviteUserToGame( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetCoplayFriendCount( void *args ) { struct ISteamFriends_SteamFriends012_GetCoplayFriendCount_params *params = (struct ISteamFriends_SteamFriends012_GetCoplayFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetCoplayFriendCount( ); return 0; } @@ -362,7 +362,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetCoplayFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetCoplayFriend( void *args ) { struct ISteamFriends_SteamFriends012_GetCoplayFriend_params *params = (struct ISteamFriends_SteamFriends012_GetCoplayFriend_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; *params->_ret = iface->GetCoplayFriend( params->iCoplayFriend ); return 0; } @@ -370,7 +370,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetCoplayFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetFriendCoplayTime( void *args ) { struct ISteamFriends_SteamFriends012_GetFriendCoplayTime_params *params = (struct ISteamFriends_SteamFriends012_GetFriendCoplayTime_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetFriendCoplayTime( params->steamIDFriend ); return 0; } @@ -378,7 +378,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetFriendCoplayTime( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetFriendCoplayGame( void *args ) { struct ISteamFriends_SteamFriends012_GetFriendCoplayGame_params *params = (struct ISteamFriends_SteamFriends012_GetFriendCoplayGame_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetFriendCoplayGame( params->steamIDFriend ); return 0; } @@ -386,7 +386,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetFriendCoplayGame( void *args ) NTSTATUS ISteamFriends_SteamFriends012_JoinClanChatRoom( void *args ) { struct ISteamFriends_SteamFriends012_JoinClanChatRoom_params *params = (struct ISteamFriends_SteamFriends012_JoinClanChatRoom_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->JoinClanChatRoom( params->steamIDClan ); return 0; } @@ -394,7 +394,7 @@ NTSTATUS ISteamFriends_SteamFriends012_JoinClanChatRoom( void *args ) NTSTATUS ISteamFriends_SteamFriends012_LeaveClanChatRoom( void *args ) { struct ISteamFriends_SteamFriends012_LeaveClanChatRoom_params *params = (struct ISteamFriends_SteamFriends012_LeaveClanChatRoom_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->LeaveClanChatRoom( params->steamIDClan ); return 0; } @@ -402,7 +402,7 @@ NTSTATUS ISteamFriends_SteamFriends012_LeaveClanChatRoom( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetClanChatMemberCount( void *args ) { struct ISteamFriends_SteamFriends012_GetClanChatMemberCount_params *params = (struct ISteamFriends_SteamFriends012_GetClanChatMemberCount_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetClanChatMemberCount( params->steamIDClan ); return 0; } @@ -410,7 +410,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetClanChatMemberCount( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetChatMemberByIndex( void *args ) { struct ISteamFriends_SteamFriends012_GetChatMemberByIndex_params *params = (struct ISteamFriends_SteamFriends012_GetChatMemberByIndex_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; *params->_ret = iface->GetChatMemberByIndex( params->steamIDClan, params->iUser ); return 0; } @@ -418,7 +418,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetChatMemberByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends012_SendClanChatMessage( void *args ) { struct ISteamFriends_SteamFriends012_SendClanChatMessage_params *params = (struct ISteamFriends_SteamFriends012_SendClanChatMessage_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->SendClanChatMessage( params->steamIDClanChat, params->pchText ); return 0; } @@ -426,7 +426,7 @@ NTSTATUS ISteamFriends_SteamFriends012_SendClanChatMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetClanChatMessage( void *args ) { struct ISteamFriends_SteamFriends012_GetClanChatMessage_params *params = (struct ISteamFriends_SteamFriends012_GetClanChatMessage_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetClanChatMessage( params->steamIDClanChat, params->iMessage, params->prgchText, params->cchTextMax, params->_e, params->_f ); return 0; } @@ -434,7 +434,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetClanChatMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends012_IsClanChatAdmin( void *args ) { struct ISteamFriends_SteamFriends012_IsClanChatAdmin_params *params = (struct ISteamFriends_SteamFriends012_IsClanChatAdmin_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->IsClanChatAdmin( params->steamIDClanChat, params->steamIDUser ); return 0; } @@ -442,7 +442,7 @@ NTSTATUS ISteamFriends_SteamFriends012_IsClanChatAdmin( void *args ) NTSTATUS ISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam( void *args ) { struct ISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam_params *params = (struct ISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->IsClanChatWindowOpenInSteam( params->steamIDClanChat ); return 0; } @@ -450,7 +450,7 @@ NTSTATUS ISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends012_OpenClanChatWindowInSteam( void *args ) { struct ISteamFriends_SteamFriends012_OpenClanChatWindowInSteam_params *params = (struct ISteamFriends_SteamFriends012_OpenClanChatWindowInSteam_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->OpenClanChatWindowInSteam( params->steamIDClanChat ); return 0; } @@ -458,7 +458,7 @@ NTSTATUS ISteamFriends_SteamFriends012_OpenClanChatWindowInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends012_CloseClanChatWindowInSteam( void *args ) { struct ISteamFriends_SteamFriends012_CloseClanChatWindowInSteam_params *params = (struct ISteamFriends_SteamFriends012_CloseClanChatWindowInSteam_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->CloseClanChatWindowInSteam( params->steamIDClanChat ); return 0; } @@ -466,7 +466,7 @@ NTSTATUS ISteamFriends_SteamFriends012_CloseClanChatWindowInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends012_SetListenForFriendsMessages( void *args ) { struct ISteamFriends_SteamFriends012_SetListenForFriendsMessages_params *params = (struct ISteamFriends_SteamFriends012_SetListenForFriendsMessages_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->SetListenForFriendsMessages( params->bInterceptEnabled ); return 0; } @@ -474,7 +474,7 @@ NTSTATUS ISteamFriends_SteamFriends012_SetListenForFriendsMessages( void *args ) NTSTATUS ISteamFriends_SteamFriends012_ReplyToFriendMessage( void *args ) { struct ISteamFriends_SteamFriends012_ReplyToFriendMessage_params *params = (struct ISteamFriends_SteamFriends012_ReplyToFriendMessage_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->ReplyToFriendMessage( params->steamIDFriend, params->pchMsgToSend ); return 0; } @@ -482,7 +482,7 @@ NTSTATUS ISteamFriends_SteamFriends012_ReplyToFriendMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetFriendMessage( void *args ) { struct ISteamFriends_SteamFriends012_GetFriendMessage_params *params = (struct ISteamFriends_SteamFriends012_GetFriendMessage_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetFriendMessage( params->steamIDFriend, params->iMessageID, params->pvData, params->cubData, params->peChatEntryType ); return 0; } @@ -490,7 +490,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetFriendMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends012_GetFollowerCount( void *args ) { struct ISteamFriends_SteamFriends012_GetFollowerCount_params *params = (struct ISteamFriends_SteamFriends012_GetFollowerCount_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->GetFollowerCount( params->steamID ); return 0; } @@ -498,7 +498,7 @@ NTSTATUS ISteamFriends_SteamFriends012_GetFollowerCount( void *args ) NTSTATUS ISteamFriends_SteamFriends012_IsFollowing( void *args ) { struct ISteamFriends_SteamFriends012_IsFollowing_params *params = (struct ISteamFriends_SteamFriends012_IsFollowing_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->IsFollowing( params->steamID ); return 0; } @@ -506,7 +506,7 @@ NTSTATUS ISteamFriends_SteamFriends012_IsFollowing( void *args ) NTSTATUS ISteamFriends_SteamFriends012_EnumerateFollowingList( void *args ) { struct ISteamFriends_SteamFriends012_EnumerateFollowingList_params *params = (struct ISteamFriends_SteamFriends012_EnumerateFollowingList_params *)args; - struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->linux_side; + struct u_ISteamFriends_SteamFriends012 *iface = (struct u_ISteamFriends_SteamFriends012 *)params->u_iface; params->_ret = iface->EnumerateFollowingList( params->unStartIndex ); return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends013.cpp b/lsteamclient/cppISteamFriends_SteamFriends013.cpp index 6ebba6c9..45d369e9 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends013.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends013.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetPersonaName( void *args ) { struct ISteamFriends_SteamFriends013_GetPersonaName_params *params = (struct ISteamFriends_SteamFriends013_GetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetPersonaName( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends013_SetPersonaName( void *args ) { struct ISteamFriends_SteamFriends013_SetPersonaName_params *params = (struct ISteamFriends_SteamFriends013_SetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->SetPersonaName( params->pchPersonaName ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamFriends_SteamFriends013_SetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetPersonaState( void *args ) { struct ISteamFriends_SteamFriends013_GetPersonaState_params *params = (struct ISteamFriends_SteamFriends013_GetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetPersonaState( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetFriendCount( void *args ) { struct ISteamFriends_SteamFriends013_GetFriendCount_params *params = (struct ISteamFriends_SteamFriends013_GetFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetFriendCount( params->iFriendFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetFriendByIndex( void *args ) { struct ISteamFriends_SteamFriends013_GetFriendByIndex_params *params = (struct ISteamFriends_SteamFriends013_GetFriendByIndex_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetFriendByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetFriendRelationship( void *args ) { struct ISteamFriends_SteamFriends013_GetFriendRelationship_params *params = (struct ISteamFriends_SteamFriends013_GetFriendRelationship_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetFriendRelationship( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetFriendPersonaState( void *args ) { struct ISteamFriends_SteamFriends013_GetFriendPersonaState_params *params = (struct ISteamFriends_SteamFriends013_GetFriendPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetFriendPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetFriendPersonaName( void *args ) { struct ISteamFriends_SteamFriends013_GetFriendPersonaName_params *params = (struct ISteamFriends_SteamFriends013_GetFriendPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetFriendPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetFriendGamePlayed( void *args ) { struct ISteamFriends_SteamFriends013_GetFriendGamePlayed_params *params = (struct ISteamFriends_SteamFriends013_GetFriendGamePlayed_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetFriendGamePlayed( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetFriendPersonaNameHistory( void *args ) { struct ISteamFriends_SteamFriends013_GetFriendPersonaNameHistory_params *params = (struct ISteamFriends_SteamFriends013_GetFriendPersonaNameHistory_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetFriendPersonaNameHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends013_HasFriend( void *args ) { struct ISteamFriends_SteamFriends013_HasFriend_params *params = (struct ISteamFriends_SteamFriends013_HasFriend_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamFriends_SteamFriends013_HasFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetClanCount( void *args ) { struct ISteamFriends_SteamFriends013_GetClanCount_params *params = (struct ISteamFriends_SteamFriends013_GetClanCount_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetClanCount( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetClanCount( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetClanByIndex( void *args ) { struct ISteamFriends_SteamFriends013_GetClanByIndex_params *params = (struct ISteamFriends_SteamFriends013_GetClanByIndex_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; *params->_ret = iface->GetClanByIndex( params->iClan ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetClanByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetClanName( void *args ) { struct ISteamFriends_SteamFriends013_GetClanName_params *params = (struct ISteamFriends_SteamFriends013_GetClanName_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetClanName( params->steamIDClan ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetClanName( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetClanTag( void *args ) { struct ISteamFriends_SteamFriends013_GetClanTag_params *params = (struct ISteamFriends_SteamFriends013_GetClanTag_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetClanTag( params->steamIDClan ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetClanTag( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetClanActivityCounts( void *args ) { struct ISteamFriends_SteamFriends013_GetClanActivityCounts_params *params = (struct ISteamFriends_SteamFriends013_GetClanActivityCounts_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetClanActivityCounts( params->steamIDClan, params->pnOnline, params->pnInGame, params->pnChatting ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetClanActivityCounts( void *args ) NTSTATUS ISteamFriends_SteamFriends013_DownloadClanActivityCounts( void *args ) { struct ISteamFriends_SteamFriends013_DownloadClanActivityCounts_params *params = (struct ISteamFriends_SteamFriends013_DownloadClanActivityCounts_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->DownloadClanActivityCounts( params->psteamIDClans, params->cClansToRequest ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamFriends_SteamFriends013_DownloadClanActivityCounts( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetFriendCountFromSource( void *args ) { struct ISteamFriends_SteamFriends013_GetFriendCountFromSource_params *params = (struct ISteamFriends_SteamFriends013_GetFriendCountFromSource_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetFriendCountFromSource( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetFriendFromSourceByIndex( void *args ) { struct ISteamFriends_SteamFriends013_GetFriendFromSourceByIndex_params *params = (struct ISteamFriends_SteamFriends013_GetFriendFromSourceByIndex_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetFriendFromSourceByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends013_IsUserInSource( void *args ) { struct ISteamFriends_SteamFriends013_IsUserInSource_params *params = (struct ISteamFriends_SteamFriends013_IsUserInSource_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamFriends_SteamFriends013_IsUserInSource( void *args ) NTSTATUS ISteamFriends_SteamFriends013_SetInGameVoiceSpeaking( void *args ) { struct ISteamFriends_SteamFriends013_SetInGameVoiceSpeaking_params *params = (struct ISteamFriends_SteamFriends013_SetInGameVoiceSpeaking_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamFriends_SteamFriends013_SetInGameVoiceSpeaking( void *args ) NTSTATUS ISteamFriends_SteamFriends013_ActivateGameOverlay( void *args ) { struct ISteamFriends_SteamFriends013_ActivateGameOverlay_params *params = (struct ISteamFriends_SteamFriends013_ActivateGameOverlay_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; iface->ActivateGameOverlay( params->pchDialog ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamFriends_SteamFriends013_ActivateGameOverlay( void *args ) NTSTATUS ISteamFriends_SteamFriends013_ActivateGameOverlayToUser( void *args ) { struct ISteamFriends_SteamFriends013_ActivateGameOverlayToUser_params *params = (struct ISteamFriends_SteamFriends013_ActivateGameOverlayToUser_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamFriends_SteamFriends013_ActivateGameOverlayToUser( void *args ) NTSTATUS ISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage( void *args ) { struct ISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage_params *params = (struct ISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 ); iface->ActivateGameOverlayToWebPage( u_pchURL ); steamclient_free_path( u_pchURL ); @@ -202,7 +202,7 @@ NTSTATUS ISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage( void *args NTSTATUS ISteamFriends_SteamFriends013_ActivateGameOverlayToStore( void *args ) { struct ISteamFriends_SteamFriends013_ActivateGameOverlayToStore_params *params = (struct ISteamFriends_SteamFriends013_ActivateGameOverlayToStore_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; iface->ActivateGameOverlayToStore( params->nAppID, params->eFlag ); return 0; } @@ -210,7 +210,7 @@ NTSTATUS ISteamFriends_SteamFriends013_ActivateGameOverlayToStore( void *args ) NTSTATUS ISteamFriends_SteamFriends013_SetPlayedWith( void *args ) { struct ISteamFriends_SteamFriends013_SetPlayedWith_params *params = (struct ISteamFriends_SteamFriends013_SetPlayedWith_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; iface->SetPlayedWith( params->steamIDUserPlayedWith ); return 0; } @@ -218,7 +218,7 @@ NTSTATUS ISteamFriends_SteamFriends013_SetPlayedWith( void *args ) NTSTATUS ISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog( void *args ) { struct ISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog_params *params = (struct ISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); return 0; } @@ -226,7 +226,7 @@ NTSTATUS ISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog( void *ar NTSTATUS ISteamFriends_SteamFriends013_GetSmallFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends013_GetSmallFriendAvatar_params *params = (struct ISteamFriends_SteamFriends013_GetSmallFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); return 0; } @@ -234,7 +234,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetSmallFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetMediumFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends013_GetMediumFriendAvatar_params *params = (struct ISteamFriends_SteamFriends013_GetMediumFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); return 0; } @@ -242,7 +242,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetMediumFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetLargeFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends013_GetLargeFriendAvatar_params *params = (struct ISteamFriends_SteamFriends013_GetLargeFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); return 0; } @@ -250,7 +250,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetLargeFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends013_RequestUserInformation( void *args ) { struct ISteamFriends_SteamFriends013_RequestUserInformation_params *params = (struct ISteamFriends_SteamFriends013_RequestUserInformation_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); return 0; } @@ -258,7 +258,7 @@ NTSTATUS ISteamFriends_SteamFriends013_RequestUserInformation( void *args ) NTSTATUS ISteamFriends_SteamFriends013_RequestClanOfficerList( void *args ) { struct ISteamFriends_SteamFriends013_RequestClanOfficerList_params *params = (struct ISteamFriends_SteamFriends013_RequestClanOfficerList_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); return 0; } @@ -266,7 +266,7 @@ NTSTATUS ISteamFriends_SteamFriends013_RequestClanOfficerList( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetClanOwner( void *args ) { struct ISteamFriends_SteamFriends013_GetClanOwner_params *params = (struct ISteamFriends_SteamFriends013_GetClanOwner_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; *params->_ret = iface->GetClanOwner( params->steamIDClan ); return 0; } @@ -274,7 +274,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetClanOwner( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetClanOfficerCount( void *args ) { struct ISteamFriends_SteamFriends013_GetClanOfficerCount_params *params = (struct ISteamFriends_SteamFriends013_GetClanOfficerCount_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); return 0; } @@ -282,7 +282,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetClanOfficerCount( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetClanOfficerByIndex( void *args ) { struct ISteamFriends_SteamFriends013_GetClanOfficerByIndex_params *params = (struct ISteamFriends_SteamFriends013_GetClanOfficerByIndex_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); return 0; } @@ -290,7 +290,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetClanOfficerByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetUserRestrictions( void *args ) { struct ISteamFriends_SteamFriends013_GetUserRestrictions_params *params = (struct ISteamFriends_SteamFriends013_GetUserRestrictions_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetUserRestrictions( ); return 0; } @@ -298,7 +298,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetUserRestrictions( void *args ) NTSTATUS ISteamFriends_SteamFriends013_SetRichPresence( void *args ) { struct ISteamFriends_SteamFriends013_SetRichPresence_params *params = (struct ISteamFriends_SteamFriends013_SetRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->SetRichPresence( params->pchKey, params->pchValue ); return 0; } @@ -306,7 +306,7 @@ NTSTATUS ISteamFriends_SteamFriends013_SetRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends013_ClearRichPresence( void *args ) { struct ISteamFriends_SteamFriends013_ClearRichPresence_params *params = (struct ISteamFriends_SteamFriends013_ClearRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; iface->ClearRichPresence( ); return 0; } @@ -314,7 +314,7 @@ NTSTATUS ISteamFriends_SteamFriends013_ClearRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetFriendRichPresence( void *args ) { struct ISteamFriends_SteamFriends013_GetFriendRichPresence_params *params = (struct ISteamFriends_SteamFriends013_GetFriendRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetFriendRichPresence( params->steamIDFriend, params->pchKey ); return 0; } @@ -322,7 +322,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetFriendRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount( void *args ) { struct ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount_params *params = (struct ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetFriendRichPresenceKeyCount( params->steamIDFriend ); return 0; } @@ -330,7 +330,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount( void *args NTSTATUS ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex( void *args ) { struct ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex_params *params = (struct ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetFriendRichPresenceKeyByIndex( params->steamIDFriend, params->iKey ); return 0; } @@ -338,7 +338,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex( void *ar NTSTATUS ISteamFriends_SteamFriends013_RequestFriendRichPresence( void *args ) { struct ISteamFriends_SteamFriends013_RequestFriendRichPresence_params *params = (struct ISteamFriends_SteamFriends013_RequestFriendRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; iface->RequestFriendRichPresence( params->steamIDFriend ); return 0; } @@ -346,7 +346,7 @@ NTSTATUS ISteamFriends_SteamFriends013_RequestFriendRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends013_InviteUserToGame( void *args ) { struct ISteamFriends_SteamFriends013_InviteUserToGame_params *params = (struct ISteamFriends_SteamFriends013_InviteUserToGame_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->InviteUserToGame( params->steamIDFriend, params->pchConnectString ); return 0; } @@ -354,7 +354,7 @@ NTSTATUS ISteamFriends_SteamFriends013_InviteUserToGame( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetCoplayFriendCount( void *args ) { struct ISteamFriends_SteamFriends013_GetCoplayFriendCount_params *params = (struct ISteamFriends_SteamFriends013_GetCoplayFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetCoplayFriendCount( ); return 0; } @@ -362,7 +362,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetCoplayFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetCoplayFriend( void *args ) { struct ISteamFriends_SteamFriends013_GetCoplayFriend_params *params = (struct ISteamFriends_SteamFriends013_GetCoplayFriend_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; *params->_ret = iface->GetCoplayFriend( params->iCoplayFriend ); return 0; } @@ -370,7 +370,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetCoplayFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetFriendCoplayTime( void *args ) { struct ISteamFriends_SteamFriends013_GetFriendCoplayTime_params *params = (struct ISteamFriends_SteamFriends013_GetFriendCoplayTime_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetFriendCoplayTime( params->steamIDFriend ); return 0; } @@ -378,7 +378,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetFriendCoplayTime( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetFriendCoplayGame( void *args ) { struct ISteamFriends_SteamFriends013_GetFriendCoplayGame_params *params = (struct ISteamFriends_SteamFriends013_GetFriendCoplayGame_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetFriendCoplayGame( params->steamIDFriend ); return 0; } @@ -386,7 +386,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetFriendCoplayGame( void *args ) NTSTATUS ISteamFriends_SteamFriends013_JoinClanChatRoom( void *args ) { struct ISteamFriends_SteamFriends013_JoinClanChatRoom_params *params = (struct ISteamFriends_SteamFriends013_JoinClanChatRoom_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->JoinClanChatRoom( params->steamIDClan ); return 0; } @@ -394,7 +394,7 @@ NTSTATUS ISteamFriends_SteamFriends013_JoinClanChatRoom( void *args ) NTSTATUS ISteamFriends_SteamFriends013_LeaveClanChatRoom( void *args ) { struct ISteamFriends_SteamFriends013_LeaveClanChatRoom_params *params = (struct ISteamFriends_SteamFriends013_LeaveClanChatRoom_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->LeaveClanChatRoom( params->steamIDClan ); return 0; } @@ -402,7 +402,7 @@ NTSTATUS ISteamFriends_SteamFriends013_LeaveClanChatRoom( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetClanChatMemberCount( void *args ) { struct ISteamFriends_SteamFriends013_GetClanChatMemberCount_params *params = (struct ISteamFriends_SteamFriends013_GetClanChatMemberCount_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetClanChatMemberCount( params->steamIDClan ); return 0; } @@ -410,7 +410,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetClanChatMemberCount( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetChatMemberByIndex( void *args ) { struct ISteamFriends_SteamFriends013_GetChatMemberByIndex_params *params = (struct ISteamFriends_SteamFriends013_GetChatMemberByIndex_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; *params->_ret = iface->GetChatMemberByIndex( params->steamIDClan, params->iUser ); return 0; } @@ -418,7 +418,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetChatMemberByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends013_SendClanChatMessage( void *args ) { struct ISteamFriends_SteamFriends013_SendClanChatMessage_params *params = (struct ISteamFriends_SteamFriends013_SendClanChatMessage_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->SendClanChatMessage( params->steamIDClanChat, params->pchText ); return 0; } @@ -426,7 +426,7 @@ NTSTATUS ISteamFriends_SteamFriends013_SendClanChatMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetClanChatMessage( void *args ) { struct ISteamFriends_SteamFriends013_GetClanChatMessage_params *params = (struct ISteamFriends_SteamFriends013_GetClanChatMessage_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetClanChatMessage( params->steamIDClanChat, params->iMessage, params->prgchText, params->cchTextMax, params->_e, params->_f ); return 0; } @@ -434,7 +434,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetClanChatMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends013_IsClanChatAdmin( void *args ) { struct ISteamFriends_SteamFriends013_IsClanChatAdmin_params *params = (struct ISteamFriends_SteamFriends013_IsClanChatAdmin_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->IsClanChatAdmin( params->steamIDClanChat, params->steamIDUser ); return 0; } @@ -442,7 +442,7 @@ NTSTATUS ISteamFriends_SteamFriends013_IsClanChatAdmin( void *args ) NTSTATUS ISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam( void *args ) { struct ISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam_params *params = (struct ISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->IsClanChatWindowOpenInSteam( params->steamIDClanChat ); return 0; } @@ -450,7 +450,7 @@ NTSTATUS ISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends013_OpenClanChatWindowInSteam( void *args ) { struct ISteamFriends_SteamFriends013_OpenClanChatWindowInSteam_params *params = (struct ISteamFriends_SteamFriends013_OpenClanChatWindowInSteam_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->OpenClanChatWindowInSteam( params->steamIDClanChat ); return 0; } @@ -458,7 +458,7 @@ NTSTATUS ISteamFriends_SteamFriends013_OpenClanChatWindowInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends013_CloseClanChatWindowInSteam( void *args ) { struct ISteamFriends_SteamFriends013_CloseClanChatWindowInSteam_params *params = (struct ISteamFriends_SteamFriends013_CloseClanChatWindowInSteam_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->CloseClanChatWindowInSteam( params->steamIDClanChat ); return 0; } @@ -466,7 +466,7 @@ NTSTATUS ISteamFriends_SteamFriends013_CloseClanChatWindowInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends013_SetListenForFriendsMessages( void *args ) { struct ISteamFriends_SteamFriends013_SetListenForFriendsMessages_params *params = (struct ISteamFriends_SteamFriends013_SetListenForFriendsMessages_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->SetListenForFriendsMessages( params->bInterceptEnabled ); return 0; } @@ -474,7 +474,7 @@ NTSTATUS ISteamFriends_SteamFriends013_SetListenForFriendsMessages( void *args ) NTSTATUS ISteamFriends_SteamFriends013_ReplyToFriendMessage( void *args ) { struct ISteamFriends_SteamFriends013_ReplyToFriendMessage_params *params = (struct ISteamFriends_SteamFriends013_ReplyToFriendMessage_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->ReplyToFriendMessage( params->steamIDFriend, params->pchMsgToSend ); return 0; } @@ -482,7 +482,7 @@ NTSTATUS ISteamFriends_SteamFriends013_ReplyToFriendMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetFriendMessage( void *args ) { struct ISteamFriends_SteamFriends013_GetFriendMessage_params *params = (struct ISteamFriends_SteamFriends013_GetFriendMessage_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetFriendMessage( params->steamIDFriend, params->iMessageID, params->pvData, params->cubData, params->peChatEntryType ); return 0; } @@ -490,7 +490,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetFriendMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends013_GetFollowerCount( void *args ) { struct ISteamFriends_SteamFriends013_GetFollowerCount_params *params = (struct ISteamFriends_SteamFriends013_GetFollowerCount_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->GetFollowerCount( params->steamID ); return 0; } @@ -498,7 +498,7 @@ NTSTATUS ISteamFriends_SteamFriends013_GetFollowerCount( void *args ) NTSTATUS ISteamFriends_SteamFriends013_IsFollowing( void *args ) { struct ISteamFriends_SteamFriends013_IsFollowing_params *params = (struct ISteamFriends_SteamFriends013_IsFollowing_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->IsFollowing( params->steamID ); return 0; } @@ -506,7 +506,7 @@ NTSTATUS ISteamFriends_SteamFriends013_IsFollowing( void *args ) NTSTATUS ISteamFriends_SteamFriends013_EnumerateFollowingList( void *args ) { struct ISteamFriends_SteamFriends013_EnumerateFollowingList_params *params = (struct ISteamFriends_SteamFriends013_EnumerateFollowingList_params *)args; - struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->linux_side; + struct u_ISteamFriends_SteamFriends013 *iface = (struct u_ISteamFriends_SteamFriends013 *)params->u_iface; params->_ret = iface->EnumerateFollowingList( params->unStartIndex ); return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends014.cpp b/lsteamclient/cppISteamFriends_SteamFriends014.cpp index ee06f5c2..747af001 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends014.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends014.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetPersonaName( void *args ) { struct ISteamFriends_SteamFriends014_GetPersonaName_params *params = (struct ISteamFriends_SteamFriends014_GetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetPersonaName( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends014_SetPersonaName( void *args ) { struct ISteamFriends_SteamFriends014_SetPersonaName_params *params = (struct ISteamFriends_SteamFriends014_SetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->SetPersonaName( params->pchPersonaName ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamFriends_SteamFriends014_SetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetPersonaState( void *args ) { struct ISteamFriends_SteamFriends014_GetPersonaState_params *params = (struct ISteamFriends_SteamFriends014_GetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetPersonaState( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetFriendCount( void *args ) { struct ISteamFriends_SteamFriends014_GetFriendCount_params *params = (struct ISteamFriends_SteamFriends014_GetFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetFriendCount( params->iFriendFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetFriendByIndex( void *args ) { struct ISteamFriends_SteamFriends014_GetFriendByIndex_params *params = (struct ISteamFriends_SteamFriends014_GetFriendByIndex_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetFriendByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetFriendRelationship( void *args ) { struct ISteamFriends_SteamFriends014_GetFriendRelationship_params *params = (struct ISteamFriends_SteamFriends014_GetFriendRelationship_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetFriendRelationship( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetFriendPersonaState( void *args ) { struct ISteamFriends_SteamFriends014_GetFriendPersonaState_params *params = (struct ISteamFriends_SteamFriends014_GetFriendPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetFriendPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetFriendPersonaName( void *args ) { struct ISteamFriends_SteamFriends014_GetFriendPersonaName_params *params = (struct ISteamFriends_SteamFriends014_GetFriendPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetFriendPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetFriendGamePlayed( void *args ) { struct ISteamFriends_SteamFriends014_GetFriendGamePlayed_params *params = (struct ISteamFriends_SteamFriends014_GetFriendGamePlayed_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetFriendGamePlayed( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetFriendPersonaNameHistory( void *args ) { struct ISteamFriends_SteamFriends014_GetFriendPersonaNameHistory_params *params = (struct ISteamFriends_SteamFriends014_GetFriendPersonaNameHistory_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetFriendPersonaNameHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetPlayerNickname( void *args ) { struct ISteamFriends_SteamFriends014_GetPlayerNickname_params *params = (struct ISteamFriends_SteamFriends014_GetPlayerNickname_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetPlayerNickname( params->steamIDPlayer ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetPlayerNickname( void *args ) NTSTATUS ISteamFriends_SteamFriends014_HasFriend( void *args ) { struct ISteamFriends_SteamFriends014_HasFriend_params *params = (struct ISteamFriends_SteamFriends014_HasFriend_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamFriends_SteamFriends014_HasFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetClanCount( void *args ) { struct ISteamFriends_SteamFriends014_GetClanCount_params *params = (struct ISteamFriends_SteamFriends014_GetClanCount_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetClanCount( ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetClanCount( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetClanByIndex( void *args ) { struct ISteamFriends_SteamFriends014_GetClanByIndex_params *params = (struct ISteamFriends_SteamFriends014_GetClanByIndex_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; *params->_ret = iface->GetClanByIndex( params->iClan ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetClanByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetClanName( void *args ) { struct ISteamFriends_SteamFriends014_GetClanName_params *params = (struct ISteamFriends_SteamFriends014_GetClanName_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetClanName( params->steamIDClan ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetClanName( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetClanTag( void *args ) { struct ISteamFriends_SteamFriends014_GetClanTag_params *params = (struct ISteamFriends_SteamFriends014_GetClanTag_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetClanTag( params->steamIDClan ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetClanTag( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetClanActivityCounts( void *args ) { struct ISteamFriends_SteamFriends014_GetClanActivityCounts_params *params = (struct ISteamFriends_SteamFriends014_GetClanActivityCounts_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetClanActivityCounts( params->steamIDClan, params->pnOnline, params->pnInGame, params->pnChatting ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetClanActivityCounts( void *args ) NTSTATUS ISteamFriends_SteamFriends014_DownloadClanActivityCounts( void *args ) { struct ISteamFriends_SteamFriends014_DownloadClanActivityCounts_params *params = (struct ISteamFriends_SteamFriends014_DownloadClanActivityCounts_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->DownloadClanActivityCounts( params->psteamIDClans, params->cClansToRequest ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamFriends_SteamFriends014_DownloadClanActivityCounts( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetFriendCountFromSource( void *args ) { struct ISteamFriends_SteamFriends014_GetFriendCountFromSource_params *params = (struct ISteamFriends_SteamFriends014_GetFriendCountFromSource_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetFriendCountFromSource( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetFriendFromSourceByIndex( void *args ) { struct ISteamFriends_SteamFriends014_GetFriendFromSourceByIndex_params *params = (struct ISteamFriends_SteamFriends014_GetFriendFromSourceByIndex_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetFriendFromSourceByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends014_IsUserInSource( void *args ) { struct ISteamFriends_SteamFriends014_IsUserInSource_params *params = (struct ISteamFriends_SteamFriends014_IsUserInSource_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamFriends_SteamFriends014_IsUserInSource( void *args ) NTSTATUS ISteamFriends_SteamFriends014_SetInGameVoiceSpeaking( void *args ) { struct ISteamFriends_SteamFriends014_SetInGameVoiceSpeaking_params *params = (struct ISteamFriends_SteamFriends014_SetInGameVoiceSpeaking_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamFriends_SteamFriends014_SetInGameVoiceSpeaking( void *args ) NTSTATUS ISteamFriends_SteamFriends014_ActivateGameOverlay( void *args ) { struct ISteamFriends_SteamFriends014_ActivateGameOverlay_params *params = (struct ISteamFriends_SteamFriends014_ActivateGameOverlay_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; iface->ActivateGameOverlay( params->pchDialog ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamFriends_SteamFriends014_ActivateGameOverlay( void *args ) NTSTATUS ISteamFriends_SteamFriends014_ActivateGameOverlayToUser( void *args ) { struct ISteamFriends_SteamFriends014_ActivateGameOverlayToUser_params *params = (struct ISteamFriends_SteamFriends014_ActivateGameOverlayToUser_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamFriends_SteamFriends014_ActivateGameOverlayToUser( void *args ) NTSTATUS ISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage( void *args ) { struct ISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage_params *params = (struct ISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 ); iface->ActivateGameOverlayToWebPage( u_pchURL ); steamclient_free_path( u_pchURL ); @@ -210,7 +210,7 @@ NTSTATUS ISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage( void *args NTSTATUS ISteamFriends_SteamFriends014_ActivateGameOverlayToStore( void *args ) { struct ISteamFriends_SteamFriends014_ActivateGameOverlayToStore_params *params = (struct ISteamFriends_SteamFriends014_ActivateGameOverlayToStore_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; iface->ActivateGameOverlayToStore( params->nAppID, params->eFlag ); return 0; } @@ -218,7 +218,7 @@ NTSTATUS ISteamFriends_SteamFriends014_ActivateGameOverlayToStore( void *args ) NTSTATUS ISteamFriends_SteamFriends014_SetPlayedWith( void *args ) { struct ISteamFriends_SteamFriends014_SetPlayedWith_params *params = (struct ISteamFriends_SteamFriends014_SetPlayedWith_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; iface->SetPlayedWith( params->steamIDUserPlayedWith ); return 0; } @@ -226,7 +226,7 @@ NTSTATUS ISteamFriends_SteamFriends014_SetPlayedWith( void *args ) NTSTATUS ISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog( void *args ) { struct ISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog_params *params = (struct ISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); return 0; } @@ -234,7 +234,7 @@ NTSTATUS ISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog( void *ar NTSTATUS ISteamFriends_SteamFriends014_GetSmallFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends014_GetSmallFriendAvatar_params *params = (struct ISteamFriends_SteamFriends014_GetSmallFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); return 0; } @@ -242,7 +242,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetSmallFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetMediumFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends014_GetMediumFriendAvatar_params *params = (struct ISteamFriends_SteamFriends014_GetMediumFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); return 0; } @@ -250,7 +250,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetMediumFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetLargeFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends014_GetLargeFriendAvatar_params *params = (struct ISteamFriends_SteamFriends014_GetLargeFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); return 0; } @@ -258,7 +258,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetLargeFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends014_RequestUserInformation( void *args ) { struct ISteamFriends_SteamFriends014_RequestUserInformation_params *params = (struct ISteamFriends_SteamFriends014_RequestUserInformation_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); return 0; } @@ -266,7 +266,7 @@ NTSTATUS ISteamFriends_SteamFriends014_RequestUserInformation( void *args ) NTSTATUS ISteamFriends_SteamFriends014_RequestClanOfficerList( void *args ) { struct ISteamFriends_SteamFriends014_RequestClanOfficerList_params *params = (struct ISteamFriends_SteamFriends014_RequestClanOfficerList_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); return 0; } @@ -274,7 +274,7 @@ NTSTATUS ISteamFriends_SteamFriends014_RequestClanOfficerList( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetClanOwner( void *args ) { struct ISteamFriends_SteamFriends014_GetClanOwner_params *params = (struct ISteamFriends_SteamFriends014_GetClanOwner_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; *params->_ret = iface->GetClanOwner( params->steamIDClan ); return 0; } @@ -282,7 +282,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetClanOwner( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetClanOfficerCount( void *args ) { struct ISteamFriends_SteamFriends014_GetClanOfficerCount_params *params = (struct ISteamFriends_SteamFriends014_GetClanOfficerCount_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); return 0; } @@ -290,7 +290,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetClanOfficerCount( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetClanOfficerByIndex( void *args ) { struct ISteamFriends_SteamFriends014_GetClanOfficerByIndex_params *params = (struct ISteamFriends_SteamFriends014_GetClanOfficerByIndex_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); return 0; } @@ -298,7 +298,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetClanOfficerByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetUserRestrictions( void *args ) { struct ISteamFriends_SteamFriends014_GetUserRestrictions_params *params = (struct ISteamFriends_SteamFriends014_GetUserRestrictions_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetUserRestrictions( ); return 0; } @@ -306,7 +306,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetUserRestrictions( void *args ) NTSTATUS ISteamFriends_SteamFriends014_SetRichPresence( void *args ) { struct ISteamFriends_SteamFriends014_SetRichPresence_params *params = (struct ISteamFriends_SteamFriends014_SetRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->SetRichPresence( params->pchKey, params->pchValue ); return 0; } @@ -314,7 +314,7 @@ NTSTATUS ISteamFriends_SteamFriends014_SetRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends014_ClearRichPresence( void *args ) { struct ISteamFriends_SteamFriends014_ClearRichPresence_params *params = (struct ISteamFriends_SteamFriends014_ClearRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; iface->ClearRichPresence( ); return 0; } @@ -322,7 +322,7 @@ NTSTATUS ISteamFriends_SteamFriends014_ClearRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetFriendRichPresence( void *args ) { struct ISteamFriends_SteamFriends014_GetFriendRichPresence_params *params = (struct ISteamFriends_SteamFriends014_GetFriendRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetFriendRichPresence( params->steamIDFriend, params->pchKey ); return 0; } @@ -330,7 +330,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetFriendRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount( void *args ) { struct ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount_params *params = (struct ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetFriendRichPresenceKeyCount( params->steamIDFriend ); return 0; } @@ -338,7 +338,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount( void *args NTSTATUS ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex( void *args ) { struct ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex_params *params = (struct ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetFriendRichPresenceKeyByIndex( params->steamIDFriend, params->iKey ); return 0; } @@ -346,7 +346,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex( void *ar NTSTATUS ISteamFriends_SteamFriends014_RequestFriendRichPresence( void *args ) { struct ISteamFriends_SteamFriends014_RequestFriendRichPresence_params *params = (struct ISteamFriends_SteamFriends014_RequestFriendRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; iface->RequestFriendRichPresence( params->steamIDFriend ); return 0; } @@ -354,7 +354,7 @@ NTSTATUS ISteamFriends_SteamFriends014_RequestFriendRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends014_InviteUserToGame( void *args ) { struct ISteamFriends_SteamFriends014_InviteUserToGame_params *params = (struct ISteamFriends_SteamFriends014_InviteUserToGame_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->InviteUserToGame( params->steamIDFriend, params->pchConnectString ); return 0; } @@ -362,7 +362,7 @@ NTSTATUS ISteamFriends_SteamFriends014_InviteUserToGame( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetCoplayFriendCount( void *args ) { struct ISteamFriends_SteamFriends014_GetCoplayFriendCount_params *params = (struct ISteamFriends_SteamFriends014_GetCoplayFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetCoplayFriendCount( ); return 0; } @@ -370,7 +370,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetCoplayFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetCoplayFriend( void *args ) { struct ISteamFriends_SteamFriends014_GetCoplayFriend_params *params = (struct ISteamFriends_SteamFriends014_GetCoplayFriend_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; *params->_ret = iface->GetCoplayFriend( params->iCoplayFriend ); return 0; } @@ -378,7 +378,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetCoplayFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetFriendCoplayTime( void *args ) { struct ISteamFriends_SteamFriends014_GetFriendCoplayTime_params *params = (struct ISteamFriends_SteamFriends014_GetFriendCoplayTime_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetFriendCoplayTime( params->steamIDFriend ); return 0; } @@ -386,7 +386,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetFriendCoplayTime( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetFriendCoplayGame( void *args ) { struct ISteamFriends_SteamFriends014_GetFriendCoplayGame_params *params = (struct ISteamFriends_SteamFriends014_GetFriendCoplayGame_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetFriendCoplayGame( params->steamIDFriend ); return 0; } @@ -394,7 +394,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetFriendCoplayGame( void *args ) NTSTATUS ISteamFriends_SteamFriends014_JoinClanChatRoom( void *args ) { struct ISteamFriends_SteamFriends014_JoinClanChatRoom_params *params = (struct ISteamFriends_SteamFriends014_JoinClanChatRoom_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->JoinClanChatRoom( params->steamIDClan ); return 0; } @@ -402,7 +402,7 @@ NTSTATUS ISteamFriends_SteamFriends014_JoinClanChatRoom( void *args ) NTSTATUS ISteamFriends_SteamFriends014_LeaveClanChatRoom( void *args ) { struct ISteamFriends_SteamFriends014_LeaveClanChatRoom_params *params = (struct ISteamFriends_SteamFriends014_LeaveClanChatRoom_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->LeaveClanChatRoom( params->steamIDClan ); return 0; } @@ -410,7 +410,7 @@ NTSTATUS ISteamFriends_SteamFriends014_LeaveClanChatRoom( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetClanChatMemberCount( void *args ) { struct ISteamFriends_SteamFriends014_GetClanChatMemberCount_params *params = (struct ISteamFriends_SteamFriends014_GetClanChatMemberCount_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetClanChatMemberCount( params->steamIDClan ); return 0; } @@ -418,7 +418,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetClanChatMemberCount( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetChatMemberByIndex( void *args ) { struct ISteamFriends_SteamFriends014_GetChatMemberByIndex_params *params = (struct ISteamFriends_SteamFriends014_GetChatMemberByIndex_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; *params->_ret = iface->GetChatMemberByIndex( params->steamIDClan, params->iUser ); return 0; } @@ -426,7 +426,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetChatMemberByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends014_SendClanChatMessage( void *args ) { struct ISteamFriends_SteamFriends014_SendClanChatMessage_params *params = (struct ISteamFriends_SteamFriends014_SendClanChatMessage_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->SendClanChatMessage( params->steamIDClanChat, params->pchText ); return 0; } @@ -434,7 +434,7 @@ NTSTATUS ISteamFriends_SteamFriends014_SendClanChatMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetClanChatMessage( void *args ) { struct ISteamFriends_SteamFriends014_GetClanChatMessage_params *params = (struct ISteamFriends_SteamFriends014_GetClanChatMessage_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetClanChatMessage( params->steamIDClanChat, params->iMessage, params->prgchText, params->cchTextMax, params->peChatEntryType, params->psteamidChatter ); return 0; } @@ -442,7 +442,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetClanChatMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends014_IsClanChatAdmin( void *args ) { struct ISteamFriends_SteamFriends014_IsClanChatAdmin_params *params = (struct ISteamFriends_SteamFriends014_IsClanChatAdmin_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->IsClanChatAdmin( params->steamIDClanChat, params->steamIDUser ); return 0; } @@ -450,7 +450,7 @@ NTSTATUS ISteamFriends_SteamFriends014_IsClanChatAdmin( void *args ) NTSTATUS ISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam( void *args ) { struct ISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam_params *params = (struct ISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->IsClanChatWindowOpenInSteam( params->steamIDClanChat ); return 0; } @@ -458,7 +458,7 @@ NTSTATUS ISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends014_OpenClanChatWindowInSteam( void *args ) { struct ISteamFriends_SteamFriends014_OpenClanChatWindowInSteam_params *params = (struct ISteamFriends_SteamFriends014_OpenClanChatWindowInSteam_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->OpenClanChatWindowInSteam( params->steamIDClanChat ); return 0; } @@ -466,7 +466,7 @@ NTSTATUS ISteamFriends_SteamFriends014_OpenClanChatWindowInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends014_CloseClanChatWindowInSteam( void *args ) { struct ISteamFriends_SteamFriends014_CloseClanChatWindowInSteam_params *params = (struct ISteamFriends_SteamFriends014_CloseClanChatWindowInSteam_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->CloseClanChatWindowInSteam( params->steamIDClanChat ); return 0; } @@ -474,7 +474,7 @@ NTSTATUS ISteamFriends_SteamFriends014_CloseClanChatWindowInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends014_SetListenForFriendsMessages( void *args ) { struct ISteamFriends_SteamFriends014_SetListenForFriendsMessages_params *params = (struct ISteamFriends_SteamFriends014_SetListenForFriendsMessages_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->SetListenForFriendsMessages( params->bInterceptEnabled ); return 0; } @@ -482,7 +482,7 @@ NTSTATUS ISteamFriends_SteamFriends014_SetListenForFriendsMessages( void *args ) NTSTATUS ISteamFriends_SteamFriends014_ReplyToFriendMessage( void *args ) { struct ISteamFriends_SteamFriends014_ReplyToFriendMessage_params *params = (struct ISteamFriends_SteamFriends014_ReplyToFriendMessage_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->ReplyToFriendMessage( params->steamIDFriend, params->pchMsgToSend ); return 0; } @@ -490,7 +490,7 @@ NTSTATUS ISteamFriends_SteamFriends014_ReplyToFriendMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetFriendMessage( void *args ) { struct ISteamFriends_SteamFriends014_GetFriendMessage_params *params = (struct ISteamFriends_SteamFriends014_GetFriendMessage_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetFriendMessage( params->steamIDFriend, params->iMessageID, params->pvData, params->cubData, params->peChatEntryType ); return 0; } @@ -498,7 +498,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetFriendMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends014_GetFollowerCount( void *args ) { struct ISteamFriends_SteamFriends014_GetFollowerCount_params *params = (struct ISteamFriends_SteamFriends014_GetFollowerCount_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->GetFollowerCount( params->steamID ); return 0; } @@ -506,7 +506,7 @@ NTSTATUS ISteamFriends_SteamFriends014_GetFollowerCount( void *args ) NTSTATUS ISteamFriends_SteamFriends014_IsFollowing( void *args ) { struct ISteamFriends_SteamFriends014_IsFollowing_params *params = (struct ISteamFriends_SteamFriends014_IsFollowing_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->IsFollowing( params->steamID ); return 0; } @@ -514,7 +514,7 @@ NTSTATUS ISteamFriends_SteamFriends014_IsFollowing( void *args ) NTSTATUS ISteamFriends_SteamFriends014_EnumerateFollowingList( void *args ) { struct ISteamFriends_SteamFriends014_EnumerateFollowingList_params *params = (struct ISteamFriends_SteamFriends014_EnumerateFollowingList_params *)args; - struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->linux_side; + struct u_ISteamFriends_SteamFriends014 *iface = (struct u_ISteamFriends_SteamFriends014 *)params->u_iface; params->_ret = iface->EnumerateFollowingList( params->unStartIndex ); return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends015.cpp b/lsteamclient/cppISteamFriends_SteamFriends015.cpp index f74973e3..89c4f79a 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends015.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends015.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetPersonaName( void *args ) { struct ISteamFriends_SteamFriends015_GetPersonaName_params *params = (struct ISteamFriends_SteamFriends015_GetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetPersonaName( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends015_SetPersonaName( void *args ) { struct ISteamFriends_SteamFriends015_SetPersonaName_params *params = (struct ISteamFriends_SteamFriends015_SetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->SetPersonaName( params->pchPersonaName ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamFriends_SteamFriends015_SetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetPersonaState( void *args ) { struct ISteamFriends_SteamFriends015_GetPersonaState_params *params = (struct ISteamFriends_SteamFriends015_GetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetPersonaState( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendCount( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendCount_params *params = (struct ISteamFriends_SteamFriends015_GetFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFriendCount( params->iFriendFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendByIndex( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendByIndex_params *params = (struct ISteamFriends_SteamFriends015_GetFriendByIndex_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendRelationship( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendRelationship_params *params = (struct ISteamFriends_SteamFriends015_GetFriendRelationship_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendRelationship( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendPersonaState( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendPersonaState_params *params = (struct ISteamFriends_SteamFriends015_GetFriendPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendPersonaName( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendPersonaName_params *params = (struct ISteamFriends_SteamFriends015_GetFriendPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendGamePlayed( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendGamePlayed_params *params = (struct ISteamFriends_SteamFriends015_GetFriendGamePlayed_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendGamePlayed( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendPersonaNameHistory( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendPersonaNameHistory_params *params = (struct ISteamFriends_SteamFriends015_GetFriendPersonaNameHistory_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendPersonaNameHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendSteamLevel( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendSteamLevel_params *params = (struct ISteamFriends_SteamFriends015_GetFriendSteamLevel_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFriendSteamLevel( params->steamIDFriend ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendSteamLevel( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetPlayerNickname( void *args ) { struct ISteamFriends_SteamFriends015_GetPlayerNickname_params *params = (struct ISteamFriends_SteamFriends015_GetPlayerNickname_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetPlayerNickname( params->steamIDPlayer ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetPlayerNickname( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendsGroupCount( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendsGroupCount_params *params = (struct ISteamFriends_SteamFriends015_GetFriendsGroupCount_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFriendsGroupCount( ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendsGroupCount( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex_params *params = (struct ISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFriendsGroupIDByIndex( params->iFG ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendsGroupName( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendsGroupName_params *params = (struct ISteamFriends_SteamFriends015_GetFriendsGroupName_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFriendsGroupName( params->friendsGroupID ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendsGroupName( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendsGroupMembersCount( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendsGroupMembersCount_params *params = (struct ISteamFriends_SteamFriends015_GetFriendsGroupMembersCount_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFriendsGroupMembersCount( params->friendsGroupID ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendsGroupMembersCount( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendsGroupMembersList( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendsGroupMembersList_params *params = (struct ISteamFriends_SteamFriends015_GetFriendsGroupMembersList_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; iface->GetFriendsGroupMembersList( params->friendsGroupID, params->pOutSteamIDMembers, params->nMembersCount ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendsGroupMembersList( void *args ) NTSTATUS ISteamFriends_SteamFriends015_HasFriend( void *args ) { struct ISteamFriends_SteamFriends015_HasFriend_params *params = (struct ISteamFriends_SteamFriends015_HasFriend_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamFriends_SteamFriends015_HasFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetClanCount( void *args ) { struct ISteamFriends_SteamFriends015_GetClanCount_params *params = (struct ISteamFriends_SteamFriends015_GetClanCount_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetClanCount( ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetClanCount( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetClanByIndex( void *args ) { struct ISteamFriends_SteamFriends015_GetClanByIndex_params *params = (struct ISteamFriends_SteamFriends015_GetClanByIndex_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; *params->_ret = iface->GetClanByIndex( params->iClan ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetClanByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetClanName( void *args ) { struct ISteamFriends_SteamFriends015_GetClanName_params *params = (struct ISteamFriends_SteamFriends015_GetClanName_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetClanName( params->steamIDClan ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetClanName( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetClanTag( void *args ) { struct ISteamFriends_SteamFriends015_GetClanTag_params *params = (struct ISteamFriends_SteamFriends015_GetClanTag_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetClanTag( params->steamIDClan ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetClanTag( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetClanActivityCounts( void *args ) { struct ISteamFriends_SteamFriends015_GetClanActivityCounts_params *params = (struct ISteamFriends_SteamFriends015_GetClanActivityCounts_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetClanActivityCounts( params->steamIDClan, params->pnOnline, params->pnInGame, params->pnChatting ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetClanActivityCounts( void *args ) NTSTATUS ISteamFriends_SteamFriends015_DownloadClanActivityCounts( void *args ) { struct ISteamFriends_SteamFriends015_DownloadClanActivityCounts_params *params = (struct ISteamFriends_SteamFriends015_DownloadClanActivityCounts_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->DownloadClanActivityCounts( params->psteamIDClans, params->cClansToRequest ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamFriends_SteamFriends015_DownloadClanActivityCounts( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendCountFromSource( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendCountFromSource_params *params = (struct ISteamFriends_SteamFriends015_GetFriendCountFromSource_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendCountFromSource( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendFromSourceByIndex( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendFromSourceByIndex_params *params = (struct ISteamFriends_SteamFriends015_GetFriendFromSourceByIndex_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendFromSourceByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends015_IsUserInSource( void *args ) { struct ISteamFriends_SteamFriends015_IsUserInSource_params *params = (struct ISteamFriends_SteamFriends015_IsUserInSource_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamFriends_SteamFriends015_IsUserInSource( void *args ) NTSTATUS ISteamFriends_SteamFriends015_SetInGameVoiceSpeaking( void *args ) { struct ISteamFriends_SteamFriends015_SetInGameVoiceSpeaking_params *params = (struct ISteamFriends_SteamFriends015_SetInGameVoiceSpeaking_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamFriends_SteamFriends015_SetInGameVoiceSpeaking( void *args ) NTSTATUS ISteamFriends_SteamFriends015_ActivateGameOverlay( void *args ) { struct ISteamFriends_SteamFriends015_ActivateGameOverlay_params *params = (struct ISteamFriends_SteamFriends015_ActivateGameOverlay_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; iface->ActivateGameOverlay( params->pchDialog ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamFriends_SteamFriends015_ActivateGameOverlay( void *args ) NTSTATUS ISteamFriends_SteamFriends015_ActivateGameOverlayToUser( void *args ) { struct ISteamFriends_SteamFriends015_ActivateGameOverlayToUser_params *params = (struct ISteamFriends_SteamFriends015_ActivateGameOverlayToUser_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamFriends_SteamFriends015_ActivateGameOverlayToUser( void *args ) NTSTATUS ISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage( void *args ) { struct ISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage_params *params = (struct ISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 ); iface->ActivateGameOverlayToWebPage( u_pchURL ); steamclient_free_path( u_pchURL ); @@ -258,7 +258,7 @@ NTSTATUS ISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage( void *args NTSTATUS ISteamFriends_SteamFriends015_ActivateGameOverlayToStore( void *args ) { struct ISteamFriends_SteamFriends015_ActivateGameOverlayToStore_params *params = (struct ISteamFriends_SteamFriends015_ActivateGameOverlayToStore_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; iface->ActivateGameOverlayToStore( params->nAppID, params->eFlag ); return 0; } @@ -266,7 +266,7 @@ NTSTATUS ISteamFriends_SteamFriends015_ActivateGameOverlayToStore( void *args ) NTSTATUS ISteamFriends_SteamFriends015_SetPlayedWith( void *args ) { struct ISteamFriends_SteamFriends015_SetPlayedWith_params *params = (struct ISteamFriends_SteamFriends015_SetPlayedWith_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; iface->SetPlayedWith( params->steamIDUserPlayedWith ); return 0; } @@ -274,7 +274,7 @@ NTSTATUS ISteamFriends_SteamFriends015_SetPlayedWith( void *args ) NTSTATUS ISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog( void *args ) { struct ISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog_params *params = (struct ISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); return 0; } @@ -282,7 +282,7 @@ NTSTATUS ISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog( void *ar NTSTATUS ISteamFriends_SteamFriends015_GetSmallFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends015_GetSmallFriendAvatar_params *params = (struct ISteamFriends_SteamFriends015_GetSmallFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); return 0; } @@ -290,7 +290,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetSmallFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetMediumFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends015_GetMediumFriendAvatar_params *params = (struct ISteamFriends_SteamFriends015_GetMediumFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); return 0; } @@ -298,7 +298,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetMediumFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetLargeFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends015_GetLargeFriendAvatar_params *params = (struct ISteamFriends_SteamFriends015_GetLargeFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); return 0; } @@ -306,7 +306,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetLargeFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends015_RequestUserInformation( void *args ) { struct ISteamFriends_SteamFriends015_RequestUserInformation_params *params = (struct ISteamFriends_SteamFriends015_RequestUserInformation_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); return 0; } @@ -314,7 +314,7 @@ NTSTATUS ISteamFriends_SteamFriends015_RequestUserInformation( void *args ) NTSTATUS ISteamFriends_SteamFriends015_RequestClanOfficerList( void *args ) { struct ISteamFriends_SteamFriends015_RequestClanOfficerList_params *params = (struct ISteamFriends_SteamFriends015_RequestClanOfficerList_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); return 0; } @@ -322,7 +322,7 @@ NTSTATUS ISteamFriends_SteamFriends015_RequestClanOfficerList( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetClanOwner( void *args ) { struct ISteamFriends_SteamFriends015_GetClanOwner_params *params = (struct ISteamFriends_SteamFriends015_GetClanOwner_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; *params->_ret = iface->GetClanOwner( params->steamIDClan ); return 0; } @@ -330,7 +330,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetClanOwner( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetClanOfficerCount( void *args ) { struct ISteamFriends_SteamFriends015_GetClanOfficerCount_params *params = (struct ISteamFriends_SteamFriends015_GetClanOfficerCount_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); return 0; } @@ -338,7 +338,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetClanOfficerCount( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetClanOfficerByIndex( void *args ) { struct ISteamFriends_SteamFriends015_GetClanOfficerByIndex_params *params = (struct ISteamFriends_SteamFriends015_GetClanOfficerByIndex_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); return 0; } @@ -346,7 +346,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetClanOfficerByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetUserRestrictions( void *args ) { struct ISteamFriends_SteamFriends015_GetUserRestrictions_params *params = (struct ISteamFriends_SteamFriends015_GetUserRestrictions_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetUserRestrictions( ); return 0; } @@ -354,7 +354,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetUserRestrictions( void *args ) NTSTATUS ISteamFriends_SteamFriends015_SetRichPresence( void *args ) { struct ISteamFriends_SteamFriends015_SetRichPresence_params *params = (struct ISteamFriends_SteamFriends015_SetRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->SetRichPresence( params->pchKey, params->pchValue ); return 0; } @@ -362,7 +362,7 @@ NTSTATUS ISteamFriends_SteamFriends015_SetRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends015_ClearRichPresence( void *args ) { struct ISteamFriends_SteamFriends015_ClearRichPresence_params *params = (struct ISteamFriends_SteamFriends015_ClearRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; iface->ClearRichPresence( ); return 0; } @@ -370,7 +370,7 @@ NTSTATUS ISteamFriends_SteamFriends015_ClearRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendRichPresence( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendRichPresence_params *params = (struct ISteamFriends_SteamFriends015_GetFriendRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFriendRichPresence( params->steamIDFriend, params->pchKey ); return 0; } @@ -378,7 +378,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount_params *params = (struct ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFriendRichPresenceKeyCount( params->steamIDFriend ); return 0; } @@ -386,7 +386,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount( void *args NTSTATUS ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex_params *params = (struct ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFriendRichPresenceKeyByIndex( params->steamIDFriend, params->iKey ); return 0; } @@ -394,7 +394,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex( void *ar NTSTATUS ISteamFriends_SteamFriends015_RequestFriendRichPresence( void *args ) { struct ISteamFriends_SteamFriends015_RequestFriendRichPresence_params *params = (struct ISteamFriends_SteamFriends015_RequestFriendRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; iface->RequestFriendRichPresence( params->steamIDFriend ); return 0; } @@ -402,7 +402,7 @@ NTSTATUS ISteamFriends_SteamFriends015_RequestFriendRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends015_InviteUserToGame( void *args ) { struct ISteamFriends_SteamFriends015_InviteUserToGame_params *params = (struct ISteamFriends_SteamFriends015_InviteUserToGame_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->InviteUserToGame( params->steamIDFriend, params->pchConnectString ); return 0; } @@ -410,7 +410,7 @@ NTSTATUS ISteamFriends_SteamFriends015_InviteUserToGame( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetCoplayFriendCount( void *args ) { struct ISteamFriends_SteamFriends015_GetCoplayFriendCount_params *params = (struct ISteamFriends_SteamFriends015_GetCoplayFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetCoplayFriendCount( ); return 0; } @@ -418,7 +418,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetCoplayFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetCoplayFriend( void *args ) { struct ISteamFriends_SteamFriends015_GetCoplayFriend_params *params = (struct ISteamFriends_SteamFriends015_GetCoplayFriend_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; *params->_ret = iface->GetCoplayFriend( params->iCoplayFriend ); return 0; } @@ -426,7 +426,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetCoplayFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendCoplayTime( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendCoplayTime_params *params = (struct ISteamFriends_SteamFriends015_GetFriendCoplayTime_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFriendCoplayTime( params->steamIDFriend ); return 0; } @@ -434,7 +434,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendCoplayTime( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendCoplayGame( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendCoplayGame_params *params = (struct ISteamFriends_SteamFriends015_GetFriendCoplayGame_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFriendCoplayGame( params->steamIDFriend ); return 0; } @@ -442,7 +442,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendCoplayGame( void *args ) NTSTATUS ISteamFriends_SteamFriends015_JoinClanChatRoom( void *args ) { struct ISteamFriends_SteamFriends015_JoinClanChatRoom_params *params = (struct ISteamFriends_SteamFriends015_JoinClanChatRoom_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->JoinClanChatRoom( params->steamIDClan ); return 0; } @@ -450,7 +450,7 @@ NTSTATUS ISteamFriends_SteamFriends015_JoinClanChatRoom( void *args ) NTSTATUS ISteamFriends_SteamFriends015_LeaveClanChatRoom( void *args ) { struct ISteamFriends_SteamFriends015_LeaveClanChatRoom_params *params = (struct ISteamFriends_SteamFriends015_LeaveClanChatRoom_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->LeaveClanChatRoom( params->steamIDClan ); return 0; } @@ -458,7 +458,7 @@ NTSTATUS ISteamFriends_SteamFriends015_LeaveClanChatRoom( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetClanChatMemberCount( void *args ) { struct ISteamFriends_SteamFriends015_GetClanChatMemberCount_params *params = (struct ISteamFriends_SteamFriends015_GetClanChatMemberCount_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetClanChatMemberCount( params->steamIDClan ); return 0; } @@ -466,7 +466,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetClanChatMemberCount( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetChatMemberByIndex( void *args ) { struct ISteamFriends_SteamFriends015_GetChatMemberByIndex_params *params = (struct ISteamFriends_SteamFriends015_GetChatMemberByIndex_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; *params->_ret = iface->GetChatMemberByIndex( params->steamIDClan, params->iUser ); return 0; } @@ -474,7 +474,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetChatMemberByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends015_SendClanChatMessage( void *args ) { struct ISteamFriends_SteamFriends015_SendClanChatMessage_params *params = (struct ISteamFriends_SteamFriends015_SendClanChatMessage_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->SendClanChatMessage( params->steamIDClanChat, params->pchText ); return 0; } @@ -482,7 +482,7 @@ NTSTATUS ISteamFriends_SteamFriends015_SendClanChatMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetClanChatMessage( void *args ) { struct ISteamFriends_SteamFriends015_GetClanChatMessage_params *params = (struct ISteamFriends_SteamFriends015_GetClanChatMessage_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetClanChatMessage( params->steamIDClanChat, params->iMessage, params->prgchText, params->cchTextMax, params->peChatEntryType, params->psteamidChatter ); return 0; } @@ -490,7 +490,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetClanChatMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends015_IsClanChatAdmin( void *args ) { struct ISteamFriends_SteamFriends015_IsClanChatAdmin_params *params = (struct ISteamFriends_SteamFriends015_IsClanChatAdmin_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->IsClanChatAdmin( params->steamIDClanChat, params->steamIDUser ); return 0; } @@ -498,7 +498,7 @@ NTSTATUS ISteamFriends_SteamFriends015_IsClanChatAdmin( void *args ) NTSTATUS ISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam( void *args ) { struct ISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam_params *params = (struct ISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->IsClanChatWindowOpenInSteam( params->steamIDClanChat ); return 0; } @@ -506,7 +506,7 @@ NTSTATUS ISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends015_OpenClanChatWindowInSteam( void *args ) { struct ISteamFriends_SteamFriends015_OpenClanChatWindowInSteam_params *params = (struct ISteamFriends_SteamFriends015_OpenClanChatWindowInSteam_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->OpenClanChatWindowInSteam( params->steamIDClanChat ); return 0; } @@ -514,7 +514,7 @@ NTSTATUS ISteamFriends_SteamFriends015_OpenClanChatWindowInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends015_CloseClanChatWindowInSteam( void *args ) { struct ISteamFriends_SteamFriends015_CloseClanChatWindowInSteam_params *params = (struct ISteamFriends_SteamFriends015_CloseClanChatWindowInSteam_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->CloseClanChatWindowInSteam( params->steamIDClanChat ); return 0; } @@ -522,7 +522,7 @@ NTSTATUS ISteamFriends_SteamFriends015_CloseClanChatWindowInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends015_SetListenForFriendsMessages( void *args ) { struct ISteamFriends_SteamFriends015_SetListenForFriendsMessages_params *params = (struct ISteamFriends_SteamFriends015_SetListenForFriendsMessages_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->SetListenForFriendsMessages( params->bInterceptEnabled ); return 0; } @@ -530,7 +530,7 @@ NTSTATUS ISteamFriends_SteamFriends015_SetListenForFriendsMessages( void *args ) NTSTATUS ISteamFriends_SteamFriends015_ReplyToFriendMessage( void *args ) { struct ISteamFriends_SteamFriends015_ReplyToFriendMessage_params *params = (struct ISteamFriends_SteamFriends015_ReplyToFriendMessage_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->ReplyToFriendMessage( params->steamIDFriend, params->pchMsgToSend ); return 0; } @@ -538,7 +538,7 @@ NTSTATUS ISteamFriends_SteamFriends015_ReplyToFriendMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFriendMessage( void *args ) { struct ISteamFriends_SteamFriends015_GetFriendMessage_params *params = (struct ISteamFriends_SteamFriends015_GetFriendMessage_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFriendMessage( params->steamIDFriend, params->iMessageID, params->pvData, params->cubData, params->peChatEntryType ); return 0; } @@ -546,7 +546,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFriendMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends015_GetFollowerCount( void *args ) { struct ISteamFriends_SteamFriends015_GetFollowerCount_params *params = (struct ISteamFriends_SteamFriends015_GetFollowerCount_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->GetFollowerCount( params->steamID ); return 0; } @@ -554,7 +554,7 @@ NTSTATUS ISteamFriends_SteamFriends015_GetFollowerCount( void *args ) NTSTATUS ISteamFriends_SteamFriends015_IsFollowing( void *args ) { struct ISteamFriends_SteamFriends015_IsFollowing_params *params = (struct ISteamFriends_SteamFriends015_IsFollowing_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->IsFollowing( params->steamID ); return 0; } @@ -562,7 +562,7 @@ NTSTATUS ISteamFriends_SteamFriends015_IsFollowing( void *args ) NTSTATUS ISteamFriends_SteamFriends015_EnumerateFollowingList( void *args ) { struct ISteamFriends_SteamFriends015_EnumerateFollowingList_params *params = (struct ISteamFriends_SteamFriends015_EnumerateFollowingList_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->EnumerateFollowingList( params->unStartIndex ); return 0; } @@ -570,7 +570,7 @@ NTSTATUS ISteamFriends_SteamFriends015_EnumerateFollowingList( void *args ) NTSTATUS ISteamFriends_SteamFriends015_IsClanPublic( void *args ) { struct ISteamFriends_SteamFriends015_IsClanPublic_params *params = (struct ISteamFriends_SteamFriends015_IsClanPublic_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->IsClanPublic( params->steamIDClan ); return 0; } @@ -578,7 +578,7 @@ NTSTATUS ISteamFriends_SteamFriends015_IsClanPublic( void *args ) NTSTATUS ISteamFriends_SteamFriends015_IsClanOfficialGameGroup( void *args ) { struct ISteamFriends_SteamFriends015_IsClanOfficialGameGroup_params *params = (struct ISteamFriends_SteamFriends015_IsClanOfficialGameGroup_params *)args; - struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->linux_side; + struct u_ISteamFriends_SteamFriends015 *iface = (struct u_ISteamFriends_SteamFriends015 *)params->u_iface; params->_ret = iface->IsClanOfficialGameGroup( params->steamIDClan ); return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends017.cpp b/lsteamclient/cppISteamFriends_SteamFriends017.cpp index c530b0f8..3ce50c47 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends017.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends017.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetPersonaName( void *args ) { struct ISteamFriends_SteamFriends017_GetPersonaName_params *params = (struct ISteamFriends_SteamFriends017_GetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetPersonaName( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends017_SetPersonaName( void *args ) { struct ISteamFriends_SteamFriends017_SetPersonaName_params *params = (struct ISteamFriends_SteamFriends017_SetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->SetPersonaName( params->pchPersonaName ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamFriends_SteamFriends017_SetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetPersonaState( void *args ) { struct ISteamFriends_SteamFriends017_GetPersonaState_params *params = (struct ISteamFriends_SteamFriends017_GetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetPersonaState( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendCount( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendCount_params *params = (struct ISteamFriends_SteamFriends017_GetFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFriendCount( params->iFriendFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendByIndex( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendByIndex_params *params = (struct ISteamFriends_SteamFriends017_GetFriendByIndex_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendRelationship( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendRelationship_params *params = (struct ISteamFriends_SteamFriends017_GetFriendRelationship_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendRelationship( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendPersonaState( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendPersonaState_params *params = (struct ISteamFriends_SteamFriends017_GetFriendPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendPersonaName( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendPersonaName_params *params = (struct ISteamFriends_SteamFriends017_GetFriendPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendGamePlayed( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendGamePlayed_params *params = (struct ISteamFriends_SteamFriends017_GetFriendGamePlayed_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendGamePlayed( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendPersonaNameHistory( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendPersonaNameHistory_params *params = (struct ISteamFriends_SteamFriends017_GetFriendPersonaNameHistory_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendPersonaNameHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendSteamLevel( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendSteamLevel_params *params = (struct ISteamFriends_SteamFriends017_GetFriendSteamLevel_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFriendSteamLevel( params->steamIDFriend ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendSteamLevel( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetPlayerNickname( void *args ) { struct ISteamFriends_SteamFriends017_GetPlayerNickname_params *params = (struct ISteamFriends_SteamFriends017_GetPlayerNickname_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetPlayerNickname( params->steamIDPlayer ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetPlayerNickname( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendsGroupCount( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendsGroupCount_params *params = (struct ISteamFriends_SteamFriends017_GetFriendsGroupCount_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFriendsGroupCount( ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendsGroupCount( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex_params *params = (struct ISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFriendsGroupIDByIndex( params->iFG ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendsGroupName( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendsGroupName_params *params = (struct ISteamFriends_SteamFriends017_GetFriendsGroupName_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFriendsGroupName( params->friendsGroupID ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendsGroupName( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendsGroupMembersCount( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendsGroupMembersCount_params *params = (struct ISteamFriends_SteamFriends017_GetFriendsGroupMembersCount_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFriendsGroupMembersCount( params->friendsGroupID ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendsGroupMembersCount( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendsGroupMembersList( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendsGroupMembersList_params *params = (struct ISteamFriends_SteamFriends017_GetFriendsGroupMembersList_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; iface->GetFriendsGroupMembersList( params->friendsGroupID, params->pOutSteamIDMembers, params->nMembersCount ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendsGroupMembersList( void *args ) NTSTATUS ISteamFriends_SteamFriends017_HasFriend( void *args ) { struct ISteamFriends_SteamFriends017_HasFriend_params *params = (struct ISteamFriends_SteamFriends017_HasFriend_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamFriends_SteamFriends017_HasFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetClanCount( void *args ) { struct ISteamFriends_SteamFriends017_GetClanCount_params *params = (struct ISteamFriends_SteamFriends017_GetClanCount_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetClanCount( ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetClanCount( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetClanByIndex( void *args ) { struct ISteamFriends_SteamFriends017_GetClanByIndex_params *params = (struct ISteamFriends_SteamFriends017_GetClanByIndex_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; *params->_ret = iface->GetClanByIndex( params->iClan ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetClanByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetClanName( void *args ) { struct ISteamFriends_SteamFriends017_GetClanName_params *params = (struct ISteamFriends_SteamFriends017_GetClanName_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetClanName( params->steamIDClan ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetClanName( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetClanTag( void *args ) { struct ISteamFriends_SteamFriends017_GetClanTag_params *params = (struct ISteamFriends_SteamFriends017_GetClanTag_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetClanTag( params->steamIDClan ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetClanTag( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetClanActivityCounts( void *args ) { struct ISteamFriends_SteamFriends017_GetClanActivityCounts_params *params = (struct ISteamFriends_SteamFriends017_GetClanActivityCounts_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetClanActivityCounts( params->steamIDClan, params->pnOnline, params->pnInGame, params->pnChatting ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetClanActivityCounts( void *args ) NTSTATUS ISteamFriends_SteamFriends017_DownloadClanActivityCounts( void *args ) { struct ISteamFriends_SteamFriends017_DownloadClanActivityCounts_params *params = (struct ISteamFriends_SteamFriends017_DownloadClanActivityCounts_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->DownloadClanActivityCounts( params->psteamIDClans, params->cClansToRequest ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamFriends_SteamFriends017_DownloadClanActivityCounts( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendCountFromSource( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendCountFromSource_params *params = (struct ISteamFriends_SteamFriends017_GetFriendCountFromSource_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendCountFromSource( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendFromSourceByIndex( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendFromSourceByIndex_params *params = (struct ISteamFriends_SteamFriends017_GetFriendFromSourceByIndex_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendFromSourceByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends017_IsUserInSource( void *args ) { struct ISteamFriends_SteamFriends017_IsUserInSource_params *params = (struct ISteamFriends_SteamFriends017_IsUserInSource_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamFriends_SteamFriends017_IsUserInSource( void *args ) NTSTATUS ISteamFriends_SteamFriends017_SetInGameVoiceSpeaking( void *args ) { struct ISteamFriends_SteamFriends017_SetInGameVoiceSpeaking_params *params = (struct ISteamFriends_SteamFriends017_SetInGameVoiceSpeaking_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamFriends_SteamFriends017_SetInGameVoiceSpeaking( void *args ) NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlay( void *args ) { struct ISteamFriends_SteamFriends017_ActivateGameOverlay_params *params = (struct ISteamFriends_SteamFriends017_ActivateGameOverlay_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; iface->ActivateGameOverlay( params->pchDialog ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlay( void *args ) NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlayToUser( void *args ) { struct ISteamFriends_SteamFriends017_ActivateGameOverlayToUser_params *params = (struct ISteamFriends_SteamFriends017_ActivateGameOverlayToUser_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlayToUser( void *args ) NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage( void *args ) { struct ISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage_params *params = (struct ISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 ); iface->ActivateGameOverlayToWebPage( u_pchURL, params->eMode ); steamclient_free_path( u_pchURL ); @@ -258,7 +258,7 @@ NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage( void *args NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlayToStore( void *args ) { struct ISteamFriends_SteamFriends017_ActivateGameOverlayToStore_params *params = (struct ISteamFriends_SteamFriends017_ActivateGameOverlayToStore_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; iface->ActivateGameOverlayToStore( params->nAppID, params->eFlag ); return 0; } @@ -266,7 +266,7 @@ NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlayToStore( void *args ) NTSTATUS ISteamFriends_SteamFriends017_SetPlayedWith( void *args ) { struct ISteamFriends_SteamFriends017_SetPlayedWith_params *params = (struct ISteamFriends_SteamFriends017_SetPlayedWith_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; iface->SetPlayedWith( params->steamIDUserPlayedWith ); return 0; } @@ -274,7 +274,7 @@ NTSTATUS ISteamFriends_SteamFriends017_SetPlayedWith( void *args ) NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog( void *args ) { struct ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog_params *params = (struct ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); return 0; } @@ -282,7 +282,7 @@ NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog( void *ar NTSTATUS ISteamFriends_SteamFriends017_GetSmallFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends017_GetSmallFriendAvatar_params *params = (struct ISteamFriends_SteamFriends017_GetSmallFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); return 0; } @@ -290,7 +290,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetSmallFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetMediumFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends017_GetMediumFriendAvatar_params *params = (struct ISteamFriends_SteamFriends017_GetMediumFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); return 0; } @@ -298,7 +298,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetMediumFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetLargeFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends017_GetLargeFriendAvatar_params *params = (struct ISteamFriends_SteamFriends017_GetLargeFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); return 0; } @@ -306,7 +306,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetLargeFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends017_RequestUserInformation( void *args ) { struct ISteamFriends_SteamFriends017_RequestUserInformation_params *params = (struct ISteamFriends_SteamFriends017_RequestUserInformation_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); return 0; } @@ -314,7 +314,7 @@ NTSTATUS ISteamFriends_SteamFriends017_RequestUserInformation( void *args ) NTSTATUS ISteamFriends_SteamFriends017_RequestClanOfficerList( void *args ) { struct ISteamFriends_SteamFriends017_RequestClanOfficerList_params *params = (struct ISteamFriends_SteamFriends017_RequestClanOfficerList_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); return 0; } @@ -322,7 +322,7 @@ NTSTATUS ISteamFriends_SteamFriends017_RequestClanOfficerList( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetClanOwner( void *args ) { struct ISteamFriends_SteamFriends017_GetClanOwner_params *params = (struct ISteamFriends_SteamFriends017_GetClanOwner_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; *params->_ret = iface->GetClanOwner( params->steamIDClan ); return 0; } @@ -330,7 +330,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetClanOwner( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetClanOfficerCount( void *args ) { struct ISteamFriends_SteamFriends017_GetClanOfficerCount_params *params = (struct ISteamFriends_SteamFriends017_GetClanOfficerCount_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); return 0; } @@ -338,7 +338,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetClanOfficerCount( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetClanOfficerByIndex( void *args ) { struct ISteamFriends_SteamFriends017_GetClanOfficerByIndex_params *params = (struct ISteamFriends_SteamFriends017_GetClanOfficerByIndex_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); return 0; } @@ -346,7 +346,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetClanOfficerByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetUserRestrictions( void *args ) { struct ISteamFriends_SteamFriends017_GetUserRestrictions_params *params = (struct ISteamFriends_SteamFriends017_GetUserRestrictions_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetUserRestrictions( ); return 0; } @@ -354,7 +354,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetUserRestrictions( void *args ) NTSTATUS ISteamFriends_SteamFriends017_SetRichPresence( void *args ) { struct ISteamFriends_SteamFriends017_SetRichPresence_params *params = (struct ISteamFriends_SteamFriends017_SetRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->SetRichPresence( params->pchKey, params->pchValue ); return 0; } @@ -362,7 +362,7 @@ NTSTATUS ISteamFriends_SteamFriends017_SetRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends017_ClearRichPresence( void *args ) { struct ISteamFriends_SteamFriends017_ClearRichPresence_params *params = (struct ISteamFriends_SteamFriends017_ClearRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; iface->ClearRichPresence( ); return 0; } @@ -370,7 +370,7 @@ NTSTATUS ISteamFriends_SteamFriends017_ClearRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendRichPresence( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendRichPresence_params *params = (struct ISteamFriends_SteamFriends017_GetFriendRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFriendRichPresence( params->steamIDFriend, params->pchKey ); return 0; } @@ -378,7 +378,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount_params *params = (struct ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFriendRichPresenceKeyCount( params->steamIDFriend ); return 0; } @@ -386,7 +386,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount( void *args NTSTATUS ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex_params *params = (struct ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFriendRichPresenceKeyByIndex( params->steamIDFriend, params->iKey ); return 0; } @@ -394,7 +394,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex( void *ar NTSTATUS ISteamFriends_SteamFriends017_RequestFriendRichPresence( void *args ) { struct ISteamFriends_SteamFriends017_RequestFriendRichPresence_params *params = (struct ISteamFriends_SteamFriends017_RequestFriendRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; iface->RequestFriendRichPresence( params->steamIDFriend ); return 0; } @@ -402,7 +402,7 @@ NTSTATUS ISteamFriends_SteamFriends017_RequestFriendRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends017_InviteUserToGame( void *args ) { struct ISteamFriends_SteamFriends017_InviteUserToGame_params *params = (struct ISteamFriends_SteamFriends017_InviteUserToGame_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->InviteUserToGame( params->steamIDFriend, params->pchConnectString ); return 0; } @@ -410,7 +410,7 @@ NTSTATUS ISteamFriends_SteamFriends017_InviteUserToGame( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetCoplayFriendCount( void *args ) { struct ISteamFriends_SteamFriends017_GetCoplayFriendCount_params *params = (struct ISteamFriends_SteamFriends017_GetCoplayFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetCoplayFriendCount( ); return 0; } @@ -418,7 +418,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetCoplayFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetCoplayFriend( void *args ) { struct ISteamFriends_SteamFriends017_GetCoplayFriend_params *params = (struct ISteamFriends_SteamFriends017_GetCoplayFriend_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; *params->_ret = iface->GetCoplayFriend( params->iCoplayFriend ); return 0; } @@ -426,7 +426,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetCoplayFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendCoplayTime( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendCoplayTime_params *params = (struct ISteamFriends_SteamFriends017_GetFriendCoplayTime_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFriendCoplayTime( params->steamIDFriend ); return 0; } @@ -434,7 +434,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendCoplayTime( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendCoplayGame( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendCoplayGame_params *params = (struct ISteamFriends_SteamFriends017_GetFriendCoplayGame_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFriendCoplayGame( params->steamIDFriend ); return 0; } @@ -442,7 +442,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendCoplayGame( void *args ) NTSTATUS ISteamFriends_SteamFriends017_JoinClanChatRoom( void *args ) { struct ISteamFriends_SteamFriends017_JoinClanChatRoom_params *params = (struct ISteamFriends_SteamFriends017_JoinClanChatRoom_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->JoinClanChatRoom( params->steamIDClan ); return 0; } @@ -450,7 +450,7 @@ NTSTATUS ISteamFriends_SteamFriends017_JoinClanChatRoom( void *args ) NTSTATUS ISteamFriends_SteamFriends017_LeaveClanChatRoom( void *args ) { struct ISteamFriends_SteamFriends017_LeaveClanChatRoom_params *params = (struct ISteamFriends_SteamFriends017_LeaveClanChatRoom_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->LeaveClanChatRoom( params->steamIDClan ); return 0; } @@ -458,7 +458,7 @@ NTSTATUS ISteamFriends_SteamFriends017_LeaveClanChatRoom( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetClanChatMemberCount( void *args ) { struct ISteamFriends_SteamFriends017_GetClanChatMemberCount_params *params = (struct ISteamFriends_SteamFriends017_GetClanChatMemberCount_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetClanChatMemberCount( params->steamIDClan ); return 0; } @@ -466,7 +466,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetClanChatMemberCount( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetChatMemberByIndex( void *args ) { struct ISteamFriends_SteamFriends017_GetChatMemberByIndex_params *params = (struct ISteamFriends_SteamFriends017_GetChatMemberByIndex_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; *params->_ret = iface->GetChatMemberByIndex( params->steamIDClan, params->iUser ); return 0; } @@ -474,7 +474,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetChatMemberByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends017_SendClanChatMessage( void *args ) { struct ISteamFriends_SteamFriends017_SendClanChatMessage_params *params = (struct ISteamFriends_SteamFriends017_SendClanChatMessage_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->SendClanChatMessage( params->steamIDClanChat, params->pchText ); return 0; } @@ -482,7 +482,7 @@ NTSTATUS ISteamFriends_SteamFriends017_SendClanChatMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetClanChatMessage( void *args ) { struct ISteamFriends_SteamFriends017_GetClanChatMessage_params *params = (struct ISteamFriends_SteamFriends017_GetClanChatMessage_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetClanChatMessage( params->steamIDClanChat, params->iMessage, params->prgchText, params->cchTextMax, params->peChatEntryType, params->psteamidChatter ); return 0; } @@ -490,7 +490,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetClanChatMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends017_IsClanChatAdmin( void *args ) { struct ISteamFriends_SteamFriends017_IsClanChatAdmin_params *params = (struct ISteamFriends_SteamFriends017_IsClanChatAdmin_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->IsClanChatAdmin( params->steamIDClanChat, params->steamIDUser ); return 0; } @@ -498,7 +498,7 @@ NTSTATUS ISteamFriends_SteamFriends017_IsClanChatAdmin( void *args ) NTSTATUS ISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam( void *args ) { struct ISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam_params *params = (struct ISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->IsClanChatWindowOpenInSteam( params->steamIDClanChat ); return 0; } @@ -506,7 +506,7 @@ NTSTATUS ISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends017_OpenClanChatWindowInSteam( void *args ) { struct ISteamFriends_SteamFriends017_OpenClanChatWindowInSteam_params *params = (struct ISteamFriends_SteamFriends017_OpenClanChatWindowInSteam_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->OpenClanChatWindowInSteam( params->steamIDClanChat ); return 0; } @@ -514,7 +514,7 @@ NTSTATUS ISteamFriends_SteamFriends017_OpenClanChatWindowInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends017_CloseClanChatWindowInSteam( void *args ) { struct ISteamFriends_SteamFriends017_CloseClanChatWindowInSteam_params *params = (struct ISteamFriends_SteamFriends017_CloseClanChatWindowInSteam_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->CloseClanChatWindowInSteam( params->steamIDClanChat ); return 0; } @@ -522,7 +522,7 @@ NTSTATUS ISteamFriends_SteamFriends017_CloseClanChatWindowInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends017_SetListenForFriendsMessages( void *args ) { struct ISteamFriends_SteamFriends017_SetListenForFriendsMessages_params *params = (struct ISteamFriends_SteamFriends017_SetListenForFriendsMessages_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->SetListenForFriendsMessages( params->bInterceptEnabled ); return 0; } @@ -530,7 +530,7 @@ NTSTATUS ISteamFriends_SteamFriends017_SetListenForFriendsMessages( void *args ) NTSTATUS ISteamFriends_SteamFriends017_ReplyToFriendMessage( void *args ) { struct ISteamFriends_SteamFriends017_ReplyToFriendMessage_params *params = (struct ISteamFriends_SteamFriends017_ReplyToFriendMessage_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->ReplyToFriendMessage( params->steamIDFriend, params->pchMsgToSend ); return 0; } @@ -538,7 +538,7 @@ NTSTATUS ISteamFriends_SteamFriends017_ReplyToFriendMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFriendMessage( void *args ) { struct ISteamFriends_SteamFriends017_GetFriendMessage_params *params = (struct ISteamFriends_SteamFriends017_GetFriendMessage_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFriendMessage( params->steamIDFriend, params->iMessageID, params->pvData, params->cubData, params->peChatEntryType ); return 0; } @@ -546,7 +546,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFriendMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetFollowerCount( void *args ) { struct ISteamFriends_SteamFriends017_GetFollowerCount_params *params = (struct ISteamFriends_SteamFriends017_GetFollowerCount_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetFollowerCount( params->steamID ); return 0; } @@ -554,7 +554,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetFollowerCount( void *args ) NTSTATUS ISteamFriends_SteamFriends017_IsFollowing( void *args ) { struct ISteamFriends_SteamFriends017_IsFollowing_params *params = (struct ISteamFriends_SteamFriends017_IsFollowing_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->IsFollowing( params->steamID ); return 0; } @@ -562,7 +562,7 @@ NTSTATUS ISteamFriends_SteamFriends017_IsFollowing( void *args ) NTSTATUS ISteamFriends_SteamFriends017_EnumerateFollowingList( void *args ) { struct ISteamFriends_SteamFriends017_EnumerateFollowingList_params *params = (struct ISteamFriends_SteamFriends017_EnumerateFollowingList_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->EnumerateFollowingList( params->unStartIndex ); return 0; } @@ -570,7 +570,7 @@ NTSTATUS ISteamFriends_SteamFriends017_EnumerateFollowingList( void *args ) NTSTATUS ISteamFriends_SteamFriends017_IsClanPublic( void *args ) { struct ISteamFriends_SteamFriends017_IsClanPublic_params *params = (struct ISteamFriends_SteamFriends017_IsClanPublic_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->IsClanPublic( params->steamIDClan ); return 0; } @@ -578,7 +578,7 @@ NTSTATUS ISteamFriends_SteamFriends017_IsClanPublic( void *args ) NTSTATUS ISteamFriends_SteamFriends017_IsClanOfficialGameGroup( void *args ) { struct ISteamFriends_SteamFriends017_IsClanOfficialGameGroup_params *params = (struct ISteamFriends_SteamFriends017_IsClanOfficialGameGroup_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->IsClanOfficialGameGroup( params->steamIDClan ); return 0; } @@ -586,7 +586,7 @@ NTSTATUS ISteamFriends_SteamFriends017_IsClanOfficialGameGroup( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages( void *args ) { struct ISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages_params *params = (struct ISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetNumChatsWithUnreadPriorityMessages( ); return 0; } @@ -594,7 +594,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages( vo NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog( void *args ) { struct ISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog_params *params = (struct ISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; iface->ActivateGameOverlayRemotePlayTogetherInviteDialog( params->steamIDLobby ); return 0; } @@ -602,7 +602,7 @@ NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInvi NTSTATUS ISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser( void *args ) { struct ISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser_params *params = (struct ISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->RegisterProtocolInOverlayBrowser( params->pchProtocol ); return 0; } @@ -610,7 +610,7 @@ NTSTATUS ISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser( void *a NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString( void *args ) { struct ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString_params *params = (struct ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; iface->ActivateGameOverlayInviteDialogConnectString( params->pchConnectString ); return 0; } @@ -618,7 +618,7 @@ NTSTATUS ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectStr NTSTATUS ISteamFriends_SteamFriends017_RequestEquippedProfileItems( void *args ) { struct ISteamFriends_SteamFriends017_RequestEquippedProfileItems_params *params = (struct ISteamFriends_SteamFriends017_RequestEquippedProfileItems_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->RequestEquippedProfileItems( params->steamID ); return 0; } @@ -626,7 +626,7 @@ NTSTATUS ISteamFriends_SteamFriends017_RequestEquippedProfileItems( void *args ) NTSTATUS ISteamFriends_SteamFriends017_BHasEquippedProfileItem( void *args ) { struct ISteamFriends_SteamFriends017_BHasEquippedProfileItem_params *params = (struct ISteamFriends_SteamFriends017_BHasEquippedProfileItem_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->BHasEquippedProfileItem( params->steamID, params->itemType ); return 0; } @@ -634,7 +634,7 @@ NTSTATUS ISteamFriends_SteamFriends017_BHasEquippedProfileItem( void *args ) NTSTATUS ISteamFriends_SteamFriends017_GetProfileItemPropertyString( void *args ) { struct ISteamFriends_SteamFriends017_GetProfileItemPropertyString_params *params = (struct ISteamFriends_SteamFriends017_GetProfileItemPropertyString_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetProfileItemPropertyString( params->steamID, params->itemType, params->prop ); return 0; } @@ -642,7 +642,7 @@ NTSTATUS ISteamFriends_SteamFriends017_GetProfileItemPropertyString( void *args NTSTATUS ISteamFriends_SteamFriends017_GetProfileItemPropertyUint( void *args ) { struct ISteamFriends_SteamFriends017_GetProfileItemPropertyUint_params *params = (struct ISteamFriends_SteamFriends017_GetProfileItemPropertyUint_params *)args; - struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->linux_side; + struct u_ISteamFriends_SteamFriends017 *iface = (struct u_ISteamFriends_SteamFriends017 *)params->u_iface; params->_ret = iface->GetProfileItemPropertyUint( params->steamID, params->itemType, params->prop ); return 0; } diff --git a/lsteamclient/cppISteamFriends_SteamFriends018.cpp b/lsteamclient/cppISteamFriends_SteamFriends018.cpp index 57009402..a41f3c2e 100644 --- a/lsteamclient/cppISteamFriends_SteamFriends018.cpp +++ b/lsteamclient/cppISteamFriends_SteamFriends018.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetPersonaName( void *args ) { struct ISteamFriends_SteamFriends018_GetPersonaName_params *params = (struct ISteamFriends_SteamFriends018_GetPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetPersonaName( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetPersonaState( void *args ) { struct ISteamFriends_SteamFriends018_GetPersonaState_params *params = (struct ISteamFriends_SteamFriends018_GetPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetPersonaState( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendCount( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendCount_params *params = (struct ISteamFriends_SteamFriends018_GetFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFriendCount( params->iFriendFlags ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendByIndex( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendByIndex_params *params = (struct ISteamFriends_SteamFriends018_GetFriendByIndex_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; *params->_ret = iface->GetFriendByIndex( params->iFriend, params->iFriendFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendRelationship( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendRelationship_params *params = (struct ISteamFriends_SteamFriends018_GetFriendRelationship_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFriendRelationship( params->steamIDFriend ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendRelationship( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendPersonaState( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendPersonaState_params *params = (struct ISteamFriends_SteamFriends018_GetFriendPersonaState_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFriendPersonaState( params->steamIDFriend ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendPersonaState( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendPersonaName( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendPersonaName_params *params = (struct ISteamFriends_SteamFriends018_GetFriendPersonaName_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFriendPersonaName( params->steamIDFriend ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendPersonaName( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendGamePlayed( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendGamePlayed_params *params = (struct ISteamFriends_SteamFriends018_GetFriendGamePlayed_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFriendGamePlayed( params->steamIDFriend, params->pFriendGameInfo ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendGamePlayed( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendPersonaNameHistory( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendPersonaNameHistory_params *params = (struct ISteamFriends_SteamFriends018_GetFriendPersonaNameHistory_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFriendPersonaNameHistory( params->steamIDFriend, params->iPersonaName ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendPersonaNameHistory( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendSteamLevel( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendSteamLevel_params *params = (struct ISteamFriends_SteamFriends018_GetFriendSteamLevel_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFriendSteamLevel( params->steamIDFriend ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendSteamLevel( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetPlayerNickname( void *args ) { struct ISteamFriends_SteamFriends018_GetPlayerNickname_params *params = (struct ISteamFriends_SteamFriends018_GetPlayerNickname_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetPlayerNickname( params->steamIDPlayer ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetPlayerNickname( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendsGroupCount( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendsGroupCount_params *params = (struct ISteamFriends_SteamFriends018_GetFriendsGroupCount_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFriendsGroupCount( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendsGroupCount( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendsGroupIDByIndex( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendsGroupIDByIndex_params *params = (struct ISteamFriends_SteamFriends018_GetFriendsGroupIDByIndex_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFriendsGroupIDByIndex( params->iFG ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendsGroupIDByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendsGroupName( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendsGroupName_params *params = (struct ISteamFriends_SteamFriends018_GetFriendsGroupName_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFriendsGroupName( params->friendsGroupID ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendsGroupName( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendsGroupMembersCount( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendsGroupMembersCount_params *params = (struct ISteamFriends_SteamFriends018_GetFriendsGroupMembersCount_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFriendsGroupMembersCount( params->friendsGroupID ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendsGroupMembersCount( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendsGroupMembersList( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendsGroupMembersList_params *params = (struct ISteamFriends_SteamFriends018_GetFriendsGroupMembersList_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; iface->GetFriendsGroupMembersList( params->friendsGroupID, params->pOutSteamIDMembers, params->nMembersCount ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendsGroupMembersList( void *args ) NTSTATUS ISteamFriends_SteamFriends018_HasFriend( void *args ) { struct ISteamFriends_SteamFriends018_HasFriend_params *params = (struct ISteamFriends_SteamFriends018_HasFriend_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->HasFriend( params->steamIDFriend, params->iFriendFlags ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamFriends_SteamFriends018_HasFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetClanCount( void *args ) { struct ISteamFriends_SteamFriends018_GetClanCount_params *params = (struct ISteamFriends_SteamFriends018_GetClanCount_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetClanCount( ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetClanCount( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetClanByIndex( void *args ) { struct ISteamFriends_SteamFriends018_GetClanByIndex_params *params = (struct ISteamFriends_SteamFriends018_GetClanByIndex_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; *params->_ret = iface->GetClanByIndex( params->iClan ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetClanByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetClanName( void *args ) { struct ISteamFriends_SteamFriends018_GetClanName_params *params = (struct ISteamFriends_SteamFriends018_GetClanName_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetClanName( params->steamIDClan ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetClanName( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetClanTag( void *args ) { struct ISteamFriends_SteamFriends018_GetClanTag_params *params = (struct ISteamFriends_SteamFriends018_GetClanTag_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetClanTag( params->steamIDClan ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetClanTag( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetClanActivityCounts( void *args ) { struct ISteamFriends_SteamFriends018_GetClanActivityCounts_params *params = (struct ISteamFriends_SteamFriends018_GetClanActivityCounts_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetClanActivityCounts( params->steamIDClan, params->pnOnline, params->pnInGame, params->pnChatting ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetClanActivityCounts( void *args ) NTSTATUS ISteamFriends_SteamFriends018_DownloadClanActivityCounts( void *args ) { struct ISteamFriends_SteamFriends018_DownloadClanActivityCounts_params *params = (struct ISteamFriends_SteamFriends018_DownloadClanActivityCounts_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->DownloadClanActivityCounts( params->psteamIDClans, params->cClansToRequest ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamFriends_SteamFriends018_DownloadClanActivityCounts( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendCountFromSource( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendCountFromSource_params *params = (struct ISteamFriends_SteamFriends018_GetFriendCountFromSource_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFriendCountFromSource( params->steamIDSource ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendCountFromSource( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendFromSourceByIndex( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendFromSourceByIndex_params *params = (struct ISteamFriends_SteamFriends018_GetFriendFromSourceByIndex_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; *params->_ret = iface->GetFriendFromSourceByIndex( params->steamIDSource, params->iFriend ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendFromSourceByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends018_IsUserInSource( void *args ) { struct ISteamFriends_SteamFriends018_IsUserInSource_params *params = (struct ISteamFriends_SteamFriends018_IsUserInSource_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->IsUserInSource( params->steamIDUser, params->steamIDSource ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamFriends_SteamFriends018_IsUserInSource( void *args ) NTSTATUS ISteamFriends_SteamFriends018_SetInGameVoiceSpeaking( void *args ) { struct ISteamFriends_SteamFriends018_SetInGameVoiceSpeaking_params *params = (struct ISteamFriends_SteamFriends018_SetInGameVoiceSpeaking_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; iface->SetInGameVoiceSpeaking( params->steamIDUser, params->bSpeaking ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamFriends_SteamFriends018_SetInGameVoiceSpeaking( void *args ) NTSTATUS ISteamFriends_SteamFriends018_ActivateGameOverlay( void *args ) { struct ISteamFriends_SteamFriends018_ActivateGameOverlay_params *params = (struct ISteamFriends_SteamFriends018_ActivateGameOverlay_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; iface->ActivateGameOverlay( params->pchDialog ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamFriends_SteamFriends018_ActivateGameOverlay( void *args ) NTSTATUS ISteamFriends_SteamFriends018_ActivateGameOverlayToUser( void *args ) { struct ISteamFriends_SteamFriends018_ActivateGameOverlayToUser_params *params = (struct ISteamFriends_SteamFriends018_ActivateGameOverlayToUser_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; iface->ActivateGameOverlayToUser( params->pchDialog, params->steamID ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamFriends_SteamFriends018_ActivateGameOverlayToUser( void *args ) NTSTATUS ISteamFriends_SteamFriends018_ActivateGameOverlayToWebPage( void *args ) { struct ISteamFriends_SteamFriends018_ActivateGameOverlayToWebPage_params *params = (struct ISteamFriends_SteamFriends018_ActivateGameOverlayToWebPage_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 ); iface->ActivateGameOverlayToWebPage( u_pchURL, params->eMode ); steamclient_free_path( u_pchURL ); @@ -250,7 +250,7 @@ NTSTATUS ISteamFriends_SteamFriends018_ActivateGameOverlayToWebPage( void *args NTSTATUS ISteamFriends_SteamFriends018_ActivateGameOverlayToStore( void *args ) { struct ISteamFriends_SteamFriends018_ActivateGameOverlayToStore_params *params = (struct ISteamFriends_SteamFriends018_ActivateGameOverlayToStore_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; iface->ActivateGameOverlayToStore( params->nAppID, params->eFlag ); return 0; } @@ -258,7 +258,7 @@ NTSTATUS ISteamFriends_SteamFriends018_ActivateGameOverlayToStore( void *args ) NTSTATUS ISteamFriends_SteamFriends018_SetPlayedWith( void *args ) { struct ISteamFriends_SteamFriends018_SetPlayedWith_params *params = (struct ISteamFriends_SteamFriends018_SetPlayedWith_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; iface->SetPlayedWith( params->steamIDUserPlayedWith ); return 0; } @@ -266,7 +266,7 @@ NTSTATUS ISteamFriends_SteamFriends018_SetPlayedWith( void *args ) NTSTATUS ISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialog( void *args ) { struct ISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialog_params *params = (struct ISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialog_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; iface->ActivateGameOverlayInviteDialog( params->steamIDLobby ); return 0; } @@ -274,7 +274,7 @@ NTSTATUS ISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialog( void *ar NTSTATUS ISteamFriends_SteamFriends018_GetSmallFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends018_GetSmallFriendAvatar_params *params = (struct ISteamFriends_SteamFriends018_GetSmallFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetSmallFriendAvatar( params->steamIDFriend ); return 0; } @@ -282,7 +282,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetSmallFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetMediumFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends018_GetMediumFriendAvatar_params *params = (struct ISteamFriends_SteamFriends018_GetMediumFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetMediumFriendAvatar( params->steamIDFriend ); return 0; } @@ -290,7 +290,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetMediumFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetLargeFriendAvatar( void *args ) { struct ISteamFriends_SteamFriends018_GetLargeFriendAvatar_params *params = (struct ISteamFriends_SteamFriends018_GetLargeFriendAvatar_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetLargeFriendAvatar( params->steamIDFriend ); return 0; } @@ -298,7 +298,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetLargeFriendAvatar( void *args ) NTSTATUS ISteamFriends_SteamFriends018_RequestUserInformation( void *args ) { struct ISteamFriends_SteamFriends018_RequestUserInformation_params *params = (struct ISteamFriends_SteamFriends018_RequestUserInformation_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->RequestUserInformation( params->steamIDUser, params->bRequireNameOnly ); return 0; } @@ -306,7 +306,7 @@ NTSTATUS ISteamFriends_SteamFriends018_RequestUserInformation( void *args ) NTSTATUS ISteamFriends_SteamFriends018_RequestClanOfficerList( void *args ) { struct ISteamFriends_SteamFriends018_RequestClanOfficerList_params *params = (struct ISteamFriends_SteamFriends018_RequestClanOfficerList_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->RequestClanOfficerList( params->steamIDClan ); return 0; } @@ -314,7 +314,7 @@ NTSTATUS ISteamFriends_SteamFriends018_RequestClanOfficerList( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetClanOwner( void *args ) { struct ISteamFriends_SteamFriends018_GetClanOwner_params *params = (struct ISteamFriends_SteamFriends018_GetClanOwner_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; *params->_ret = iface->GetClanOwner( params->steamIDClan ); return 0; } @@ -322,7 +322,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetClanOwner( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetClanOfficerCount( void *args ) { struct ISteamFriends_SteamFriends018_GetClanOfficerCount_params *params = (struct ISteamFriends_SteamFriends018_GetClanOfficerCount_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetClanOfficerCount( params->steamIDClan ); return 0; } @@ -330,7 +330,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetClanOfficerCount( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetClanOfficerByIndex( void *args ) { struct ISteamFriends_SteamFriends018_GetClanOfficerByIndex_params *params = (struct ISteamFriends_SteamFriends018_GetClanOfficerByIndex_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; *params->_ret = iface->GetClanOfficerByIndex( params->steamIDClan, params->iOfficer ); return 0; } @@ -338,7 +338,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetClanOfficerByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends018_SetRichPresence( void *args ) { struct ISteamFriends_SteamFriends018_SetRichPresence_params *params = (struct ISteamFriends_SteamFriends018_SetRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->SetRichPresence( params->pchKey, params->pchValue ); return 0; } @@ -346,7 +346,7 @@ NTSTATUS ISteamFriends_SteamFriends018_SetRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends018_ClearRichPresence( void *args ) { struct ISteamFriends_SteamFriends018_ClearRichPresence_params *params = (struct ISteamFriends_SteamFriends018_ClearRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; iface->ClearRichPresence( ); return 0; } @@ -354,7 +354,7 @@ NTSTATUS ISteamFriends_SteamFriends018_ClearRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendRichPresence( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendRichPresence_params *params = (struct ISteamFriends_SteamFriends018_GetFriendRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFriendRichPresence( params->steamIDFriend, params->pchKey ); return 0; } @@ -362,7 +362,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyCount( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyCount_params *params = (struct ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyCount_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFriendRichPresenceKeyCount( params->steamIDFriend ); return 0; } @@ -370,7 +370,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyCount( void *args NTSTATUS ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyByIndex( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyByIndex_params *params = (struct ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyByIndex_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFriendRichPresenceKeyByIndex( params->steamIDFriend, params->iKey ); return 0; } @@ -378,7 +378,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyByIndex( void *ar NTSTATUS ISteamFriends_SteamFriends018_RequestFriendRichPresence( void *args ) { struct ISteamFriends_SteamFriends018_RequestFriendRichPresence_params *params = (struct ISteamFriends_SteamFriends018_RequestFriendRichPresence_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; iface->RequestFriendRichPresence( params->steamIDFriend ); return 0; } @@ -386,7 +386,7 @@ NTSTATUS ISteamFriends_SteamFriends018_RequestFriendRichPresence( void *args ) NTSTATUS ISteamFriends_SteamFriends018_InviteUserToGame( void *args ) { struct ISteamFriends_SteamFriends018_InviteUserToGame_params *params = (struct ISteamFriends_SteamFriends018_InviteUserToGame_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->InviteUserToGame( params->steamIDFriend, params->pchConnectString ); return 0; } @@ -394,7 +394,7 @@ NTSTATUS ISteamFriends_SteamFriends018_InviteUserToGame( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetCoplayFriendCount( void *args ) { struct ISteamFriends_SteamFriends018_GetCoplayFriendCount_params *params = (struct ISteamFriends_SteamFriends018_GetCoplayFriendCount_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetCoplayFriendCount( ); return 0; } @@ -402,7 +402,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetCoplayFriendCount( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetCoplayFriend( void *args ) { struct ISteamFriends_SteamFriends018_GetCoplayFriend_params *params = (struct ISteamFriends_SteamFriends018_GetCoplayFriend_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; *params->_ret = iface->GetCoplayFriend( params->iCoplayFriend ); return 0; } @@ -410,7 +410,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetCoplayFriend( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendCoplayTime( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendCoplayTime_params *params = (struct ISteamFriends_SteamFriends018_GetFriendCoplayTime_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFriendCoplayTime( params->steamIDFriend ); return 0; } @@ -418,7 +418,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendCoplayTime( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendCoplayGame( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendCoplayGame_params *params = (struct ISteamFriends_SteamFriends018_GetFriendCoplayGame_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFriendCoplayGame( params->steamIDFriend ); return 0; } @@ -426,7 +426,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendCoplayGame( void *args ) NTSTATUS ISteamFriends_SteamFriends018_JoinClanChatRoom( void *args ) { struct ISteamFriends_SteamFriends018_JoinClanChatRoom_params *params = (struct ISteamFriends_SteamFriends018_JoinClanChatRoom_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->JoinClanChatRoom( params->steamIDClan ); return 0; } @@ -434,7 +434,7 @@ NTSTATUS ISteamFriends_SteamFriends018_JoinClanChatRoom( void *args ) NTSTATUS ISteamFriends_SteamFriends018_LeaveClanChatRoom( void *args ) { struct ISteamFriends_SteamFriends018_LeaveClanChatRoom_params *params = (struct ISteamFriends_SteamFriends018_LeaveClanChatRoom_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->LeaveClanChatRoom( params->steamIDClan ); return 0; } @@ -442,7 +442,7 @@ NTSTATUS ISteamFriends_SteamFriends018_LeaveClanChatRoom( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetClanChatMemberCount( void *args ) { struct ISteamFriends_SteamFriends018_GetClanChatMemberCount_params *params = (struct ISteamFriends_SteamFriends018_GetClanChatMemberCount_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetClanChatMemberCount( params->steamIDClan ); return 0; } @@ -450,7 +450,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetClanChatMemberCount( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetChatMemberByIndex( void *args ) { struct ISteamFriends_SteamFriends018_GetChatMemberByIndex_params *params = (struct ISteamFriends_SteamFriends018_GetChatMemberByIndex_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; *params->_ret = iface->GetChatMemberByIndex( params->steamIDClan, params->iUser ); return 0; } @@ -458,7 +458,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetChatMemberByIndex( void *args ) NTSTATUS ISteamFriends_SteamFriends018_SendClanChatMessage( void *args ) { struct ISteamFriends_SteamFriends018_SendClanChatMessage_params *params = (struct ISteamFriends_SteamFriends018_SendClanChatMessage_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->SendClanChatMessage( params->steamIDClanChat, params->pchText ); return 0; } @@ -466,7 +466,7 @@ NTSTATUS ISteamFriends_SteamFriends018_SendClanChatMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetClanChatMessage( void *args ) { struct ISteamFriends_SteamFriends018_GetClanChatMessage_params *params = (struct ISteamFriends_SteamFriends018_GetClanChatMessage_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetClanChatMessage( params->steamIDClanChat, params->iMessage, params->prgchText, params->cchTextMax, params->peChatEntryType, params->psteamidChatter ); return 0; } @@ -474,7 +474,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetClanChatMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends018_IsClanChatAdmin( void *args ) { struct ISteamFriends_SteamFriends018_IsClanChatAdmin_params *params = (struct ISteamFriends_SteamFriends018_IsClanChatAdmin_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->IsClanChatAdmin( params->steamIDClanChat, params->steamIDUser ); return 0; } @@ -482,7 +482,7 @@ NTSTATUS ISteamFriends_SteamFriends018_IsClanChatAdmin( void *args ) NTSTATUS ISteamFriends_SteamFriends018_IsClanChatWindowOpenInSteam( void *args ) { struct ISteamFriends_SteamFriends018_IsClanChatWindowOpenInSteam_params *params = (struct ISteamFriends_SteamFriends018_IsClanChatWindowOpenInSteam_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->IsClanChatWindowOpenInSteam( params->steamIDClanChat ); return 0; } @@ -490,7 +490,7 @@ NTSTATUS ISteamFriends_SteamFriends018_IsClanChatWindowOpenInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends018_OpenClanChatWindowInSteam( void *args ) { struct ISteamFriends_SteamFriends018_OpenClanChatWindowInSteam_params *params = (struct ISteamFriends_SteamFriends018_OpenClanChatWindowInSteam_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->OpenClanChatWindowInSteam( params->steamIDClanChat ); return 0; } @@ -498,7 +498,7 @@ NTSTATUS ISteamFriends_SteamFriends018_OpenClanChatWindowInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends018_CloseClanChatWindowInSteam( void *args ) { struct ISteamFriends_SteamFriends018_CloseClanChatWindowInSteam_params *params = (struct ISteamFriends_SteamFriends018_CloseClanChatWindowInSteam_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->CloseClanChatWindowInSteam( params->steamIDClanChat ); return 0; } @@ -506,7 +506,7 @@ NTSTATUS ISteamFriends_SteamFriends018_CloseClanChatWindowInSteam( void *args ) NTSTATUS ISteamFriends_SteamFriends018_SetListenForFriendsMessages( void *args ) { struct ISteamFriends_SteamFriends018_SetListenForFriendsMessages_params *params = (struct ISteamFriends_SteamFriends018_SetListenForFriendsMessages_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->SetListenForFriendsMessages( params->bInterceptEnabled ); return 0; } @@ -514,7 +514,7 @@ NTSTATUS ISteamFriends_SteamFriends018_SetListenForFriendsMessages( void *args ) NTSTATUS ISteamFriends_SteamFriends018_ReplyToFriendMessage( void *args ) { struct ISteamFriends_SteamFriends018_ReplyToFriendMessage_params *params = (struct ISteamFriends_SteamFriends018_ReplyToFriendMessage_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->ReplyToFriendMessage( params->steamIDFriend, params->pchMsgToSend ); return 0; } @@ -522,7 +522,7 @@ NTSTATUS ISteamFriends_SteamFriends018_ReplyToFriendMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFriendMessage( void *args ) { struct ISteamFriends_SteamFriends018_GetFriendMessage_params *params = (struct ISteamFriends_SteamFriends018_GetFriendMessage_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFriendMessage( params->steamIDFriend, params->iMessageID, params->pvData, params->cubData, params->peChatEntryType ); return 0; } @@ -530,7 +530,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFriendMessage( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetFollowerCount( void *args ) { struct ISteamFriends_SteamFriends018_GetFollowerCount_params *params = (struct ISteamFriends_SteamFriends018_GetFollowerCount_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetFollowerCount( params->steamID ); return 0; } @@ -538,7 +538,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetFollowerCount( void *args ) NTSTATUS ISteamFriends_SteamFriends018_IsFollowing( void *args ) { struct ISteamFriends_SteamFriends018_IsFollowing_params *params = (struct ISteamFriends_SteamFriends018_IsFollowing_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->IsFollowing( params->steamID ); return 0; } @@ -546,7 +546,7 @@ NTSTATUS ISteamFriends_SteamFriends018_IsFollowing( void *args ) NTSTATUS ISteamFriends_SteamFriends018_EnumerateFollowingList( void *args ) { struct ISteamFriends_SteamFriends018_EnumerateFollowingList_params *params = (struct ISteamFriends_SteamFriends018_EnumerateFollowingList_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->EnumerateFollowingList( params->unStartIndex ); return 0; } @@ -554,7 +554,7 @@ NTSTATUS ISteamFriends_SteamFriends018_EnumerateFollowingList( void *args ) NTSTATUS ISteamFriends_SteamFriends018_IsClanPublic( void *args ) { struct ISteamFriends_SteamFriends018_IsClanPublic_params *params = (struct ISteamFriends_SteamFriends018_IsClanPublic_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->IsClanPublic( params->steamIDClan ); return 0; } @@ -562,7 +562,7 @@ NTSTATUS ISteamFriends_SteamFriends018_IsClanPublic( void *args ) NTSTATUS ISteamFriends_SteamFriends018_IsClanOfficialGameGroup( void *args ) { struct ISteamFriends_SteamFriends018_IsClanOfficialGameGroup_params *params = (struct ISteamFriends_SteamFriends018_IsClanOfficialGameGroup_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->IsClanOfficialGameGroup( params->steamIDClan ); return 0; } @@ -570,7 +570,7 @@ NTSTATUS ISteamFriends_SteamFriends018_IsClanOfficialGameGroup( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetNumChatsWithUnreadPriorityMessages( void *args ) { struct ISteamFriends_SteamFriends018_GetNumChatsWithUnreadPriorityMessages_params *params = (struct ISteamFriends_SteamFriends018_GetNumChatsWithUnreadPriorityMessages_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetNumChatsWithUnreadPriorityMessages( ); return 0; } @@ -578,7 +578,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetNumChatsWithUnreadPriorityMessages( vo NTSTATUS ISteamFriends_SteamFriends018_ActivateGameOverlayRemotePlayTogetherInviteDialog( void *args ) { struct ISteamFriends_SteamFriends018_ActivateGameOverlayRemotePlayTogetherInviteDialog_params *params = (struct ISteamFriends_SteamFriends018_ActivateGameOverlayRemotePlayTogetherInviteDialog_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; iface->ActivateGameOverlayRemotePlayTogetherInviteDialog( params->steamIDLobby ); return 0; } @@ -586,7 +586,7 @@ NTSTATUS ISteamFriends_SteamFriends018_ActivateGameOverlayRemotePlayTogetherInvi NTSTATUS ISteamFriends_SteamFriends018_RegisterProtocolInOverlayBrowser( void *args ) { struct ISteamFriends_SteamFriends018_RegisterProtocolInOverlayBrowser_params *params = (struct ISteamFriends_SteamFriends018_RegisterProtocolInOverlayBrowser_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->RegisterProtocolInOverlayBrowser( params->pchProtocol ); return 0; } @@ -594,7 +594,7 @@ NTSTATUS ISteamFriends_SteamFriends018_RegisterProtocolInOverlayBrowser( void *a NTSTATUS ISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialogConnectString( void *args ) { struct ISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialogConnectString_params *params = (struct ISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialogConnectString_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; iface->ActivateGameOverlayInviteDialogConnectString( params->pchConnectString ); return 0; } @@ -602,7 +602,7 @@ NTSTATUS ISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialogConnectStr NTSTATUS ISteamFriends_SteamFriends018_RequestEquippedProfileItems( void *args ) { struct ISteamFriends_SteamFriends018_RequestEquippedProfileItems_params *params = (struct ISteamFriends_SteamFriends018_RequestEquippedProfileItems_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->RequestEquippedProfileItems( params->steamID ); return 0; } @@ -610,7 +610,7 @@ NTSTATUS ISteamFriends_SteamFriends018_RequestEquippedProfileItems( void *args ) NTSTATUS ISteamFriends_SteamFriends018_BHasEquippedProfileItem( void *args ) { struct ISteamFriends_SteamFriends018_BHasEquippedProfileItem_params *params = (struct ISteamFriends_SteamFriends018_BHasEquippedProfileItem_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->BHasEquippedProfileItem( params->steamID, params->itemType ); return 0; } @@ -618,7 +618,7 @@ NTSTATUS ISteamFriends_SteamFriends018_BHasEquippedProfileItem( void *args ) NTSTATUS ISteamFriends_SteamFriends018_GetProfileItemPropertyString( void *args ) { struct ISteamFriends_SteamFriends018_GetProfileItemPropertyString_params *params = (struct ISteamFriends_SteamFriends018_GetProfileItemPropertyString_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetProfileItemPropertyString( params->steamID, params->itemType, params->prop ); return 0; } @@ -626,7 +626,7 @@ NTSTATUS ISteamFriends_SteamFriends018_GetProfileItemPropertyString( void *args NTSTATUS ISteamFriends_SteamFriends018_GetProfileItemPropertyUint( void *args ) { struct ISteamFriends_SteamFriends018_GetProfileItemPropertyUint_params *params = (struct ISteamFriends_SteamFriends018_GetProfileItemPropertyUint_params *)args; - struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->linux_side; + struct u_ISteamFriends_SteamFriends018 *iface = (struct u_ISteamFriends_SteamFriends018 *)params->u_iface; params->_ret = iface->GetProfileItemPropertyUint( params->steamID, params->itemType, params->prop ); return 0; } diff --git a/lsteamclient/cppISteamGameCoordinator_SteamGameCoordinator001.cpp b/lsteamclient/cppISteamGameCoordinator_SteamGameCoordinator001.cpp index ed19ad99..5e7cf54b 100644 --- a/lsteamclient/cppISteamGameCoordinator_SteamGameCoordinator001.cpp +++ b/lsteamclient/cppISteamGameCoordinator_SteamGameCoordinator001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamGameCoordinator_SteamGameCoordinator001_SendMessage( void *args ) { struct ISteamGameCoordinator_SteamGameCoordinator001_SendMessage_params *params = (struct ISteamGameCoordinator_SteamGameCoordinator001_SendMessage_params *)args; - struct u_ISteamGameCoordinator_SteamGameCoordinator001 *iface = (struct u_ISteamGameCoordinator_SteamGameCoordinator001 *)params->linux_side; + struct u_ISteamGameCoordinator_SteamGameCoordinator001 *iface = (struct u_ISteamGameCoordinator_SteamGameCoordinator001 *)params->u_iface; params->_ret = iface->SendMessage( params->unMsgType, params->pubData, params->cubData ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamGameCoordinator_SteamGameCoordinator001_SendMessage( void *args ) NTSTATUS ISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable( void *args ) { struct ISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable_params *params = (struct ISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable_params *)args; - struct u_ISteamGameCoordinator_SteamGameCoordinator001 *iface = (struct u_ISteamGameCoordinator_SteamGameCoordinator001 *)params->linux_side; + struct u_ISteamGameCoordinator_SteamGameCoordinator001 *iface = (struct u_ISteamGameCoordinator_SteamGameCoordinator001 *)params->u_iface; params->_ret = iface->IsMessageAvailable( params->pcubMsgSize ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable( void NTSTATUS ISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage( void *args ) { struct ISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage_params *params = (struct ISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage_params *)args; - struct u_ISteamGameCoordinator_SteamGameCoordinator001 *iface = (struct u_ISteamGameCoordinator_SteamGameCoordinator001 *)params->linux_side; + struct u_ISteamGameCoordinator_SteamGameCoordinator001 *iface = (struct u_ISteamGameCoordinator_SteamGameCoordinator001 *)params->u_iface; params->_ret = iface->RetrieveMessage( params->punMsgType, params->pubDest, params->cubDest, params->pcubMsgSize ); return 0; } diff --git a/lsteamclient/cppISteamGameSearch_SteamMatchGameSearch001.cpp b/lsteamclient/cppISteamGameSearch_SteamMatchGameSearch001.cpp index a5d6fa6f..ebeec3e1 100644 --- a/lsteamclient/cppISteamGameSearch_SteamMatchGameSearch001.cpp +++ b/lsteamclient/cppISteamGameSearch_SteamMatchGameSearch001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams( void *args ) { struct ISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams_params *params = (struct ISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams_params *)args; - struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->linux_side; + struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->u_iface; params->_ret = iface->AddGameSearchParams( params->pchKeyToFind, params->pchValuesToFind ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams( void *arg NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby( void *args ) { struct ISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby_params *params = (struct ISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby_params *)args; - struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->linux_side; + struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->u_iface; params->_ret = iface->SearchForGameWithLobby( params->steamIDLobby, params->nPlayerMin, params->nPlayerMax ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby( void * NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo( void *args ) { struct ISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo_params *params = (struct ISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo_params *)args; - struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->linux_side; + struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->u_iface; params->_ret = iface->SearchForGameSolo( params->nPlayerMin, params->nPlayerMax ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo( void *args NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_AcceptGame( void *args ) { struct ISteamGameSearch_SteamMatchGameSearch001_AcceptGame_params *params = (struct ISteamGameSearch_SteamMatchGameSearch001_AcceptGame_params *)args; - struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->linux_side; + struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->u_iface; params->_ret = iface->AcceptGame( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_AcceptGame( void *args ) NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_DeclineGame( void *args ) { struct ISteamGameSearch_SteamMatchGameSearch001_DeclineGame_params *params = (struct ISteamGameSearch_SteamMatchGameSearch001_DeclineGame_params *)args; - struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->linux_side; + struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->u_iface; params->_ret = iface->DeclineGame( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_DeclineGame( void *args ) NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails( void *args ) { struct ISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails_params *params = (struct ISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails_params *)args; - struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->linux_side; + struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->u_iface; params->_ret = iface->RetrieveConnectionDetails( params->steamIDHost, params->pchConnectionDetails, params->cubConnectionDetails ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails( voi NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_EndGameSearch( void *args ) { struct ISteamGameSearch_SteamMatchGameSearch001_EndGameSearch_params *params = (struct ISteamGameSearch_SteamMatchGameSearch001_EndGameSearch_params *)args; - struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->linux_side; + struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->u_iface; params->_ret = iface->EndGameSearch( ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_EndGameSearch( void *args ) NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams( void *args ) { struct ISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams_params *params = (struct ISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams_params *)args; - struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->linux_side; + struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->u_iface; params->_ret = iface->SetGameHostParams( params->pchKey, params->pchValue ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams( void *args NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails( void *args ) { struct ISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails_params *params = (struct ISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails_params *)args; - struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->linux_side; + struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->u_iface; params->_ret = iface->SetConnectionDetails( params->pchConnectionDetails, params->cubConnectionDetails ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails( void *ar NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame( void *args ) { struct ISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame_params *params = (struct ISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame_params *)args; - struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->linux_side; + struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->u_iface; params->_ret = iface->RequestPlayersForGame( params->nPlayerMin, params->nPlayerMax, params->nMaxTeamSize ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame( void *a NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart( void *args ) { struct ISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart_params *params = (struct ISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart_params *)args; - struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->linux_side; + struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->u_iface; params->_ret = iface->HostConfirmGameStart( params->ullUniqueGameID ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart( void *ar NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame( void *args ) { struct ISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame_params *params = (struct ISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame_params *)args; - struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->linux_side; + struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->u_iface; params->_ret = iface->CancelRequestPlayersForGame( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame( v NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult( void *args ) { struct ISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult_params *params = (struct ISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult_params *)args; - struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->linux_side; + struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->u_iface; params->_ret = iface->SubmitPlayerResult( params->ullUniqueGameID, params->steamIDPlayer, params->EPlayerResult ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult( void *args NTSTATUS ISteamGameSearch_SteamMatchGameSearch001_EndGame( void *args ) { struct ISteamGameSearch_SteamMatchGameSearch001_EndGame_params *params = (struct ISteamGameSearch_SteamMatchGameSearch001_EndGame_params *)args; - struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->linux_side; + struct u_ISteamGameSearch_SteamMatchGameSearch001 *iface = (struct u_ISteamGameSearch_SteamMatchGameSearch001 *)params->u_iface; params->_ret = iface->EndGame( params->ullUniqueGameID ); return 0; } diff --git a/lsteamclient/cppISteamGameServerStats_SteamGameServerStats001.cpp b/lsteamclient/cppISteamGameServerStats_SteamGameServerStats001.cpp index 38ce9e6c..9fa41d4b 100644 --- a/lsteamclient/cppISteamGameServerStats_SteamGameServerStats001.cpp +++ b/lsteamclient/cppISteamGameServerStats_SteamGameServerStats001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamGameServerStats_SteamGameServerStats001_RequestUserStats( void *args ) { struct ISteamGameServerStats_SteamGameServerStats001_RequestUserStats_params *params = (struct ISteamGameServerStats_SteamGameServerStats001_RequestUserStats_params *)args; - struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->linux_side; + struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->u_iface; params->_ret = iface->RequestUserStats( params->steamIDUser ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamGameServerStats_SteamGameServerStats001_RequestUserStats( void *a NTSTATUS ISteamGameServerStats_SteamGameServerStats001_GetUserStat( void *args ) { struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_params *params = (struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_params *)args; - struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->linux_side; + struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamGameServerStats_SteamGameServerStats001_GetUserStat( void *args ) NTSTATUS ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2( void *args ) { struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2_params *params = (struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2_params *)args; - struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->linux_side; + struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2( void *args NTSTATUS ISteamGameServerStats_SteamGameServerStats001_GetUserAchievement( void *args ) { struct ISteamGameServerStats_SteamGameServerStats001_GetUserAchievement_params *params = (struct ISteamGameServerStats_SteamGameServerStats001_GetUserAchievement_params *)args; - struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->linux_side; + struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->u_iface; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamGameServerStats_SteamGameServerStats001_GetUserAchievement( void NTSTATUS ISteamGameServerStats_SteamGameServerStats001_SetUserStat( void *args ) { struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_params *params = (struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_params *)args; - struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->linux_side; + struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->u_iface; params->_ret = iface->SetUserStat( params->steamIDUser, params->pchName, params->nData ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamGameServerStats_SteamGameServerStats001_SetUserStat( void *args ) NTSTATUS ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2( void *args ) { struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2_params *params = (struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2_params *)args; - struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->linux_side; + struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->u_iface; params->_ret = iface->SetUserStat( params->steamIDUser, params->pchName, params->fData ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2( void *args NTSTATUS ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat( void *args ) { struct ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat_params *params = (struct ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat_params *)args; - struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->linux_side; + struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->u_iface; params->_ret = iface->UpdateUserAvgRateStat( params->steamIDUser, params->pchName, params->flCountThisSession, params->dSessionLength ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat( vo NTSTATUS ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement( void *args ) { struct ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement_params *params = (struct ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement_params *)args; - struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->linux_side; + struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->u_iface; params->_ret = iface->SetUserAchievement( params->steamIDUser, params->pchName ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement( void NTSTATUS ISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement( void *args ) { struct ISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement_params *params = (struct ISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement_params *)args; - struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->linux_side; + struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->u_iface; params->_ret = iface->ClearUserAchievement( params->steamIDUser, params->pchName ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement( voi NTSTATUS ISteamGameServerStats_SteamGameServerStats001_StoreUserStats( void *args ) { struct ISteamGameServerStats_SteamGameServerStats001_StoreUserStats_params *params = (struct ISteamGameServerStats_SteamGameServerStats001_StoreUserStats_params *)args; - struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->linux_side; + struct u_ISteamGameServerStats_SteamGameServerStats001 *iface = (struct u_ISteamGameServerStats_SteamGameServerStats001 *)params->u_iface; params->_ret = iface->StoreUserStats( params->steamIDUser ); return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer002.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer002.cpp index 6bfd09e6..c8c30f6d 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer002.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_LogOn( void *args ) { struct ISteamGameServer_SteamGameServer002_LogOn_params *params = (struct ISteamGameServer_SteamGameServer002_LogOn_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; iface->LogOn( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_LogOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer002_LogOff( void *args ) { struct ISteamGameServer_SteamGameServer002_LogOff_params *params = (struct ISteamGameServer_SteamGameServer002_LogOff_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; iface->LogOff( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_LogOff( void *args ) NTSTATUS ISteamGameServer_SteamGameServer002_BLoggedOn( void *args ) { struct ISteamGameServer_SteamGameServer002_BLoggedOn_params *params = (struct ISteamGameServer_SteamGameServer002_BLoggedOn_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_BLoggedOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer002_GSSetSpawnCount( void *args ) { struct ISteamGameServer_SteamGameServer002_GSSetSpawnCount_params *params = (struct ISteamGameServer_SteamGameServer002_GSSetSpawnCount_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; iface->GSSetSpawnCount( params->ucSpawn ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_GSSetSpawnCount( void *args ) NTSTATUS ISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient( void *args ) { struct ISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient_params *params = (struct ISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; params->_ret = iface->GSGetSteam2GetEncryptionKeyToSendToNewClient( params->pvEncryptionKey, params->pcbEncryptionKey, params->cbMaxEncryptionKey ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendTo NTSTATUS ISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect( void *args ) { struct ISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect_params *params = (struct ISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; params->_ret = iface->GSSendSteam2UserConnect( params->unUserID, params->pvRawKey, params->unKeyLen, params->unIPPublic, params->usPort, params->pvCookie, params->cubCookie ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect( void *args NTSTATUS ISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect( void *args ) { struct ISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect_params *params = (struct ISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; params->_ret = iface->GSSendSteam3UserConnect( params->steamID, params->unIPPublic, params->pvCookie, params->cubCookie ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect( void *args NTSTATUS ISteamGameServer_SteamGameServer002_GSRemoveUserConnect( void *args ) { struct ISteamGameServer_SteamGameServer002_GSRemoveUserConnect_params *params = (struct ISteamGameServer_SteamGameServer002_GSRemoveUserConnect_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; params->_ret = iface->GSRemoveUserConnect( params->unUserID ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_GSRemoveUserConnect( void *args ) NTSTATUS ISteamGameServer_SteamGameServer002_GSSendUserDisconnect( void *args ) { struct ISteamGameServer_SteamGameServer002_GSSendUserDisconnect_params *params = (struct ISteamGameServer_SteamGameServer002_GSSendUserDisconnect_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; params->_ret = iface->GSSendUserDisconnect( params->steamID, params->unUserID ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_GSSendUserDisconnect( void *args ) NTSTATUS ISteamGameServer_SteamGameServer002_GSSendUserStatusResponse( void *args ) { struct ISteamGameServer_SteamGameServer002_GSSendUserStatusResponse_params *params = (struct ISteamGameServer_SteamGameServer002_GSSendUserStatusResponse_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; params->_ret = iface->GSSendUserStatusResponse( params->steamID, params->nSecondsConnected, params->nSecondsSinceLast ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_GSSendUserStatusResponse( void *arg NTSTATUS ISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus( void *args ) { struct ISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus_params *params = (struct ISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; params->_ret = iface->Obsolete_GSSetStatus( params->nAppIdServed, params->unServerFlags, params->cPlayers, params->cPlayersMax, params->cBotPlayers, params->unGamePort, params->pchServerName, params->pchGameDir, params->pchMapName, params->pchVersion ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus( void *args ) NTSTATUS ISteamGameServer_SteamGameServer002_GSUpdateStatus( void *args ) { struct ISteamGameServer_SteamGameServer002_GSUpdateStatus_params *params = (struct ISteamGameServer_SteamGameServer002_GSUpdateStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; params->_ret = iface->GSUpdateStatus( params->cPlayers, params->cPlayersMax, params->cBotPlayers, params->pchServerName, params->pchMapName ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_GSUpdateStatus( void *args ) NTSTATUS ISteamGameServer_SteamGameServer002_BSecure( void *args ) { struct ISteamGameServer_SteamGameServer002_BSecure_params *params = (struct ISteamGameServer_SteamGameServer002_BSecure_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; params->_ret = iface->BSecure( ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_BSecure( void *args ) NTSTATUS ISteamGameServer_SteamGameServer002_GetSteamID( void *args ) { struct ISteamGameServer_SteamGameServer002_GetSteamID_params *params = (struct ISteamGameServer_SteamGameServer002_GetSteamID_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_GetSteamID( void *args ) NTSTATUS ISteamGameServer_SteamGameServer002_GSSetServerType( void *args ) { struct ISteamGameServer_SteamGameServer002_GSSetServerType_params *params = (struct ISteamGameServer_SteamGameServer002_GSSetServerType_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; params->_ret = iface->GSSetServerType( params->nGameAppId, params->unServerFlags, params->unGameIP, params->unGamePort, params->pchGameDir, params->pchVersion ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_GSSetServerType( void *args ) NTSTATUS ISteamGameServer_SteamGameServer002_GSSetServerType2( void *args ) { struct ISteamGameServer_SteamGameServer002_GSSetServerType2_params *params = (struct ISteamGameServer_SteamGameServer002_GSSetServerType2_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; params->_ret = iface->GSSetServerType2( params->nGameAppId, params->unServerFlags, params->unGameIP, params->unGamePort, params->unSpectatorPort, params->usQueryPort, params->pchGameDir, params->pchVersion, params->bLANMode ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_GSSetServerType2( void *args ) NTSTATUS ISteamGameServer_SteamGameServer002_GSUpdateStatus2( void *args ) { struct ISteamGameServer_SteamGameServer002_GSUpdateStatus2_params *params = (struct ISteamGameServer_SteamGameServer002_GSUpdateStatus2_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; params->_ret = iface->GSUpdateStatus2( params->cPlayers, params->cPlayersMax, params->cBotPlayers, params->pchServerName, params->pSpectatorServerName, params->pchMapName ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_GSUpdateStatus2( void *args ) NTSTATUS ISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser( void *args ) { struct ISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser_params *params = (struct ISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; params->_ret = iface->GSCreateUnauthenticatedUser( params->pSteamID ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser( void * NTSTATUS ISteamGameServer_SteamGameServer002_GSSetUserData( void *args ) { struct ISteamGameServer_SteamGameServer002_GSSetUserData_params *params = (struct ISteamGameServer_SteamGameServer002_GSSetUserData_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; params->_ret = iface->GSSetUserData( params->steamID, params->pPlayerName, params->nFrags ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_GSSetUserData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort( void *args ) { struct ISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort_params *params = (struct ISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; iface->GSUpdateSpectatorPort( params->unSpectatorPort ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort( void *args ) NTSTATUS ISteamGameServer_SteamGameServer002_GSSetGameType( void *args ) { struct ISteamGameServer_SteamGameServer002_GSSetGameType_params *params = (struct ISteamGameServer_SteamGameServer002_GSSetGameType_params *)args; - struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer002 *iface = (struct u_ISteamGameServer_SteamGameServer002 *)params->u_iface; iface->GSSetGameType( params->pchType ); return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer003.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer003.cpp index 84b659ce..8bb3a5c6 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer003.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer003.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamGameServer_SteamGameServer003_LogOn( void *args ) { struct ISteamGameServer_SteamGameServer003_LogOn_params *params = (struct ISteamGameServer_SteamGameServer003_LogOn_params *)args; - struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->u_iface; iface->LogOn( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamGameServer_SteamGameServer003_LogOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer003_LogOff( void *args ) { struct ISteamGameServer_SteamGameServer003_LogOff_params *params = (struct ISteamGameServer_SteamGameServer003_LogOff_params *)args; - struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->u_iface; iface->LogOff( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamGameServer_SteamGameServer003_LogOff( void *args ) NTSTATUS ISteamGameServer_SteamGameServer003_BLoggedOn( void *args ) { struct ISteamGameServer_SteamGameServer003_BLoggedOn_params *params = (struct ISteamGameServer_SteamGameServer003_BLoggedOn_params *)args; - struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamGameServer_SteamGameServer003_BLoggedOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer003_BSecure( void *args ) { struct ISteamGameServer_SteamGameServer003_BSecure_params *params = (struct ISteamGameServer_SteamGameServer003_BSecure_params *)args; - struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->u_iface; params->_ret = iface->BSecure( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamGameServer_SteamGameServer003_BSecure( void *args ) NTSTATUS ISteamGameServer_SteamGameServer003_GetSteamID( void *args ) { struct ISteamGameServer_SteamGameServer003_GetSteamID_params *params = (struct ISteamGameServer_SteamGameServer003_GetSteamID_params *)args; - struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamGameServer_SteamGameServer003_GetSteamID( void *args ) NTSTATUS ISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient( void *args ) { struct ISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient_params *params = (struct ISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient_params *)args; - struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->u_iface; params->_ret = iface->GSGetSteam2GetEncryptionKeyToSendToNewClient( params->pvEncryptionKey, params->pcbEncryptionKey, params->cbMaxEncryptionKey ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendTo NTSTATUS ISteamGameServer_SteamGameServer003_GSSendUserConnect( void *args ) { struct ISteamGameServer_SteamGameServer003_GSSendUserConnect_params *params = (struct ISteamGameServer_SteamGameServer003_GSSendUserConnect_params *)args; - struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->u_iface; params->_ret = iface->GSSendUserConnect( params->unUserID, params->unIPPublic, params->usPort, params->pvCookie, params->cubCookie ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamGameServer_SteamGameServer003_GSSendUserConnect( void *args ) NTSTATUS ISteamGameServer_SteamGameServer003_GSRemoveUserConnect( void *args ) { struct ISteamGameServer_SteamGameServer003_GSRemoveUserConnect_params *params = (struct ISteamGameServer_SteamGameServer003_GSRemoveUserConnect_params *)args; - struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->u_iface; params->_ret = iface->GSRemoveUserConnect( params->unUserID ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamGameServer_SteamGameServer003_GSRemoveUserConnect( void *args ) NTSTATUS ISteamGameServer_SteamGameServer003_GSSendUserDisconnect( void *args ) { struct ISteamGameServer_SteamGameServer003_GSSendUserDisconnect_params *params = (struct ISteamGameServer_SteamGameServer003_GSSendUserDisconnect_params *)args; - struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->u_iface; params->_ret = iface->GSSendUserDisconnect( params->steamID, params->unUserID ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamGameServer_SteamGameServer003_GSSendUserDisconnect( void *args ) NTSTATUS ISteamGameServer_SteamGameServer003_GSSetSpawnCount( void *args ) { struct ISteamGameServer_SteamGameServer003_GSSetSpawnCount_params *params = (struct ISteamGameServer_SteamGameServer003_GSSetSpawnCount_params *)args; - struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->u_iface; iface->GSSetSpawnCount( params->ucSpawn ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamGameServer_SteamGameServer003_GSSetSpawnCount( void *args ) NTSTATUS ISteamGameServer_SteamGameServer003_GSSetServerType( void *args ) { struct ISteamGameServer_SteamGameServer003_GSSetServerType_params *params = (struct ISteamGameServer_SteamGameServer003_GSSetServerType_params *)args; - struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->u_iface; params->_ret = iface->GSSetServerType( params->nGameAppId, params->unServerFlags, params->unGameIP, params->unGamePort, params->unSpectatorPort, params->usQueryPort, params->pchGameDir, params->pchVersion, params->bLANMode ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamGameServer_SteamGameServer003_GSSetServerType( void *args ) NTSTATUS ISteamGameServer_SteamGameServer003_GSUpdateStatus( void *args ) { struct ISteamGameServer_SteamGameServer003_GSUpdateStatus_params *params = (struct ISteamGameServer_SteamGameServer003_GSUpdateStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->u_iface; params->_ret = iface->GSUpdateStatus( params->cPlayers, params->cPlayersMax, params->cBotPlayers, params->pchServerName, params->pSpectatorServerName, params->pchMapName ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamGameServer_SteamGameServer003_GSUpdateStatus( void *args ) NTSTATUS ISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser( void *args ) { struct ISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser_params *params = (struct ISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser_params *)args; - struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->u_iface; params->_ret = iface->GSCreateUnauthenticatedUser( params->pSteamID ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser( void * NTSTATUS ISteamGameServer_SteamGameServer003_GSSetUserData( void *args ) { struct ISteamGameServer_SteamGameServer003_GSSetUserData_params *params = (struct ISteamGameServer_SteamGameServer003_GSSetUserData_params *)args; - struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->u_iface; params->_ret = iface->GSSetUserData( params->steamID, params->pPlayerName, params->nFrags ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamGameServer_SteamGameServer003_GSSetUserData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort( void *args ) { struct ISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort_params *params = (struct ISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort_params *)args; - struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->u_iface; iface->GSUpdateSpectatorPort( params->unSpectatorPort ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort( void *args ) NTSTATUS ISteamGameServer_SteamGameServer003_GSSetGameType( void *args ) { struct ISteamGameServer_SteamGameServer003_GSSetGameType_params *params = (struct ISteamGameServer_SteamGameServer003_GSSetGameType_params *)args; - struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->u_iface; iface->GSSetGameType( params->pchType ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamGameServer_SteamGameServer003_GSSetGameType( void *args ) NTSTATUS ISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus( void *args ) { struct ISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus_params *params = (struct ISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer003 *iface = (struct u_ISteamGameServer_SteamGameServer003 *)params->u_iface; params->_ret = iface->GSGetUserAchievementStatus( params->steamID, params->pchAchievementName ); return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer004.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer004.cpp index 7ad89e8f..61091913 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer004.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer004.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamGameServer_SteamGameServer004_LogOn( void *args ) { struct ISteamGameServer_SteamGameServer004_LogOn_params *params = (struct ISteamGameServer_SteamGameServer004_LogOn_params *)args; - struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->u_iface; iface->LogOn( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamGameServer_SteamGameServer004_LogOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer004_LogOff( void *args ) { struct ISteamGameServer_SteamGameServer004_LogOff_params *params = (struct ISteamGameServer_SteamGameServer004_LogOff_params *)args; - struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->u_iface; iface->LogOff( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamGameServer_SteamGameServer004_LogOff( void *args ) NTSTATUS ISteamGameServer_SteamGameServer004_BLoggedOn( void *args ) { struct ISteamGameServer_SteamGameServer004_BLoggedOn_params *params = (struct ISteamGameServer_SteamGameServer004_BLoggedOn_params *)args; - struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamGameServer_SteamGameServer004_BLoggedOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer004_BSecure( void *args ) { struct ISteamGameServer_SteamGameServer004_BSecure_params *params = (struct ISteamGameServer_SteamGameServer004_BSecure_params *)args; - struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->u_iface; params->_ret = iface->BSecure( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamGameServer_SteamGameServer004_BSecure( void *args ) NTSTATUS ISteamGameServer_SteamGameServer004_GetSteamID( void *args ) { struct ISteamGameServer_SteamGameServer004_GetSteamID_params *params = (struct ISteamGameServer_SteamGameServer004_GetSteamID_params *)args; - struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamGameServer_SteamGameServer004_GetSteamID( void *args ) NTSTATUS ISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate( void *args ) { struct ISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate_params *params = (struct ISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate_params *)args; - struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->u_iface; iface->SendUserConnectAndAuthenticate( params->steamIDUser, params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate( voi NTSTATUS ISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection( void *args ) { struct ISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection_params *params = (struct ISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection_params *)args; - struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->u_iface; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection NTSTATUS ISteamGameServer_SteamGameServer004_SendUserDisconnect( void *args ) { struct ISteamGameServer_SteamGameServer004_SendUserDisconnect_params *params = (struct ISteamGameServer_SteamGameServer004_SendUserDisconnect_params *)args; - struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->u_iface; iface->SendUserDisconnect( params->steamIDUser ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamGameServer_SteamGameServer004_SendUserDisconnect( void *args ) NTSTATUS ISteamGameServer_SteamGameServer004_BUpdateUserData( void *args ) { struct ISteamGameServer_SteamGameServer004_BUpdateUserData_params *params = (struct ISteamGameServer_SteamGameServer004_BUpdateUserData_params *)args; - struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->u_iface; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamGameServer_SteamGameServer004_BUpdateUserData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer004_BSetServerType( void *args ) { struct ISteamGameServer_SteamGameServer004_BSetServerType_params *params = (struct ISteamGameServer_SteamGameServer004_BSetServerType_params *)args; - struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->u_iface; params->_ret = iface->BSetServerType( params->nGameAppId, params->unServerFlags, params->unGameIP, params->unGamePort, params->unSpectatorPort, params->usQueryPort, params->pchGameDir, params->pchVersion, params->bLANMode ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamGameServer_SteamGameServer004_BSetServerType( void *args ) NTSTATUS ISteamGameServer_SteamGameServer004_UpdateServerStatus( void *args ) { struct ISteamGameServer_SteamGameServer004_UpdateServerStatus_params *params = (struct ISteamGameServer_SteamGameServer004_UpdateServerStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->u_iface; iface->UpdateServerStatus( params->cPlayers, params->cPlayersMax, params->cBotPlayers, params->pchServerName, params->pSpectatorServerName, params->pchMapName ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamGameServer_SteamGameServer004_UpdateServerStatus( void *args ) NTSTATUS ISteamGameServer_SteamGameServer004_UpdateSpectatorPort( void *args ) { struct ISteamGameServer_SteamGameServer004_UpdateSpectatorPort_params *params = (struct ISteamGameServer_SteamGameServer004_UpdateSpectatorPort_params *)args; - struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->u_iface; iface->UpdateSpectatorPort( params->unSpectatorPort ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamGameServer_SteamGameServer004_UpdateSpectatorPort( void *args ) NTSTATUS ISteamGameServer_SteamGameServer004_SetGameType( void *args ) { struct ISteamGameServer_SteamGameServer004_SetGameType_params *params = (struct ISteamGameServer_SteamGameServer004_SetGameType_params *)args; - struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->u_iface; iface->SetGameType( params->pchGameType ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamGameServer_SteamGameServer004_SetGameType( void *args ) NTSTATUS ISteamGameServer_SteamGameServer004_BGetUserAchievementStatus( void *args ) { struct ISteamGameServer_SteamGameServer004_BGetUserAchievementStatus_params *params = (struct ISteamGameServer_SteamGameServer004_BGetUserAchievementStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer004 *iface = (struct u_ISteamGameServer_SteamGameServer004 *)params->u_iface; params->_ret = iface->BGetUserAchievementStatus( params->steamID, params->pchAchievementName ); return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer005.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer005.cpp index 80b16875..068a7fcd 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer005.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer005.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamGameServer_SteamGameServer005_LogOn( void *args ) { struct ISteamGameServer_SteamGameServer005_LogOn_params *params = (struct ISteamGameServer_SteamGameServer005_LogOn_params *)args; - struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->u_iface; iface->LogOn( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamGameServer_SteamGameServer005_LogOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer005_LogOff( void *args ) { struct ISteamGameServer_SteamGameServer005_LogOff_params *params = (struct ISteamGameServer_SteamGameServer005_LogOff_params *)args; - struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->u_iface; iface->LogOff( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamGameServer_SteamGameServer005_LogOff( void *args ) NTSTATUS ISteamGameServer_SteamGameServer005_BLoggedOn( void *args ) { struct ISteamGameServer_SteamGameServer005_BLoggedOn_params *params = (struct ISteamGameServer_SteamGameServer005_BLoggedOn_params *)args; - struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamGameServer_SteamGameServer005_BLoggedOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer005_BSecure( void *args ) { struct ISteamGameServer_SteamGameServer005_BSecure_params *params = (struct ISteamGameServer_SteamGameServer005_BSecure_params *)args; - struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->u_iface; params->_ret = iface->BSecure( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamGameServer_SteamGameServer005_BSecure( void *args ) NTSTATUS ISteamGameServer_SteamGameServer005_GetSteamID( void *args ) { struct ISteamGameServer_SteamGameServer005_GetSteamID_params *params = (struct ISteamGameServer_SteamGameServer005_GetSteamID_params *)args; - struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamGameServer_SteamGameServer005_GetSteamID( void *args ) NTSTATUS ISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate( void *args ) { struct ISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate_params *params = (struct ISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate_params *)args; - struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->u_iface; params->_ret = iface->SendUserConnectAndAuthenticate( params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize, params->pSteamIDUser ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate( voi NTSTATUS ISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection( void *args ) { struct ISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection_params *params = (struct ISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection_params *)args; - struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->u_iface; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection NTSTATUS ISteamGameServer_SteamGameServer005_SendUserDisconnect( void *args ) { struct ISteamGameServer_SteamGameServer005_SendUserDisconnect_params *params = (struct ISteamGameServer_SteamGameServer005_SendUserDisconnect_params *)args; - struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->u_iface; iface->SendUserDisconnect( params->steamIDUser ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamGameServer_SteamGameServer005_SendUserDisconnect( void *args ) NTSTATUS ISteamGameServer_SteamGameServer005_BUpdateUserData( void *args ) { struct ISteamGameServer_SteamGameServer005_BUpdateUserData_params *params = (struct ISteamGameServer_SteamGameServer005_BUpdateUserData_params *)args; - struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->u_iface; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamGameServer_SteamGameServer005_BUpdateUserData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer005_BSetServerType( void *args ) { struct ISteamGameServer_SteamGameServer005_BSetServerType_params *params = (struct ISteamGameServer_SteamGameServer005_BSetServerType_params *)args; - struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->u_iface; params->_ret = iface->BSetServerType( params->unServerFlags, params->unGameIP, params->unGamePort, params->unSpectatorPort, params->usQueryPort, params->pchGameDir, params->pchVersion, params->bLANMode ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamGameServer_SteamGameServer005_BSetServerType( void *args ) NTSTATUS ISteamGameServer_SteamGameServer005_UpdateServerStatus( void *args ) { struct ISteamGameServer_SteamGameServer005_UpdateServerStatus_params *params = (struct ISteamGameServer_SteamGameServer005_UpdateServerStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->u_iface; iface->UpdateServerStatus( params->cPlayers, params->cPlayersMax, params->cBotPlayers, params->pchServerName, params->pSpectatorServerName, params->pchMapName ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamGameServer_SteamGameServer005_UpdateServerStatus( void *args ) NTSTATUS ISteamGameServer_SteamGameServer005_UpdateSpectatorPort( void *args ) { struct ISteamGameServer_SteamGameServer005_UpdateSpectatorPort_params *params = (struct ISteamGameServer_SteamGameServer005_UpdateSpectatorPort_params *)args; - struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->u_iface; iface->UpdateSpectatorPort( params->unSpectatorPort ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamGameServer_SteamGameServer005_UpdateSpectatorPort( void *args ) NTSTATUS ISteamGameServer_SteamGameServer005_SetGameType( void *args ) { struct ISteamGameServer_SteamGameServer005_SetGameType_params *params = (struct ISteamGameServer_SteamGameServer005_SetGameType_params *)args; - struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->u_iface; iface->SetGameType( params->pchGameType ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamGameServer_SteamGameServer005_SetGameType( void *args ) NTSTATUS ISteamGameServer_SteamGameServer005_BGetUserAchievementStatus( void *args ) { struct ISteamGameServer_SteamGameServer005_BGetUserAchievementStatus_params *params = (struct ISteamGameServer_SteamGameServer005_BGetUserAchievementStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer005 *iface = (struct u_ISteamGameServer_SteamGameServer005 *)params->u_iface; params->_ret = iface->BGetUserAchievementStatus( params->steamID, params->pchAchievementName ); return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer008.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer008.cpp index b835c9b8..80d36022 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer008.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer008.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamGameServer_SteamGameServer008_LogOn( void *args ) { struct ISteamGameServer_SteamGameServer008_LogOn_params *params = (struct ISteamGameServer_SteamGameServer008_LogOn_params *)args; - struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->u_iface; iface->LogOn( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamGameServer_SteamGameServer008_LogOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer008_LogOff( void *args ) { struct ISteamGameServer_SteamGameServer008_LogOff_params *params = (struct ISteamGameServer_SteamGameServer008_LogOff_params *)args; - struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->u_iface; iface->LogOff( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamGameServer_SteamGameServer008_LogOff( void *args ) NTSTATUS ISteamGameServer_SteamGameServer008_BLoggedOn( void *args ) { struct ISteamGameServer_SteamGameServer008_BLoggedOn_params *params = (struct ISteamGameServer_SteamGameServer008_BLoggedOn_params *)args; - struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamGameServer_SteamGameServer008_BLoggedOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer008_BSecure( void *args ) { struct ISteamGameServer_SteamGameServer008_BSecure_params *params = (struct ISteamGameServer_SteamGameServer008_BSecure_params *)args; - struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->u_iface; params->_ret = iface->BSecure( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamGameServer_SteamGameServer008_BSecure( void *args ) NTSTATUS ISteamGameServer_SteamGameServer008_GetSteamID( void *args ) { struct ISteamGameServer_SteamGameServer008_GetSteamID_params *params = (struct ISteamGameServer_SteamGameServer008_GetSteamID_params *)args; - struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamGameServer_SteamGameServer008_GetSteamID( void *args ) NTSTATUS ISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate( void *args ) { struct ISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate_params *params = (struct ISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate_params *)args; - struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->u_iface; params->_ret = iface->SendUserConnectAndAuthenticate( params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize, params->pSteamIDUser ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate( voi NTSTATUS ISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection( void *args ) { struct ISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection_params *params = (struct ISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection_params *)args; - struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->u_iface; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection NTSTATUS ISteamGameServer_SteamGameServer008_SendUserDisconnect( void *args ) { struct ISteamGameServer_SteamGameServer008_SendUserDisconnect_params *params = (struct ISteamGameServer_SteamGameServer008_SendUserDisconnect_params *)args; - struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->u_iface; iface->SendUserDisconnect( params->steamIDUser ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamGameServer_SteamGameServer008_SendUserDisconnect( void *args ) NTSTATUS ISteamGameServer_SteamGameServer008_BUpdateUserData( void *args ) { struct ISteamGameServer_SteamGameServer008_BUpdateUserData_params *params = (struct ISteamGameServer_SteamGameServer008_BUpdateUserData_params *)args; - struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->u_iface; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamGameServer_SteamGameServer008_BUpdateUserData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer008_BSetServerType( void *args ) { struct ISteamGameServer_SteamGameServer008_BSetServerType_params *params = (struct ISteamGameServer_SteamGameServer008_BSetServerType_params *)args; - struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->u_iface; params->_ret = iface->BSetServerType( params->unServerFlags, params->unGameIP, params->unGamePort, params->unSpectatorPort, params->usQueryPort, params->pchGameDir, params->pchVersion, params->bLANMode ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamGameServer_SteamGameServer008_BSetServerType( void *args ) NTSTATUS ISteamGameServer_SteamGameServer008_UpdateServerStatus( void *args ) { struct ISteamGameServer_SteamGameServer008_UpdateServerStatus_params *params = (struct ISteamGameServer_SteamGameServer008_UpdateServerStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->u_iface; iface->UpdateServerStatus( params->cPlayers, params->cPlayersMax, params->cBotPlayers, params->pchServerName, params->pSpectatorServerName, params->pchMapName ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamGameServer_SteamGameServer008_UpdateServerStatus( void *args ) NTSTATUS ISteamGameServer_SteamGameServer008_UpdateSpectatorPort( void *args ) { struct ISteamGameServer_SteamGameServer008_UpdateSpectatorPort_params *params = (struct ISteamGameServer_SteamGameServer008_UpdateSpectatorPort_params *)args; - struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->u_iface; iface->UpdateSpectatorPort( params->unSpectatorPort ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamGameServer_SteamGameServer008_UpdateSpectatorPort( void *args ) NTSTATUS ISteamGameServer_SteamGameServer008_SetGameType( void *args ) { struct ISteamGameServer_SteamGameServer008_SetGameType_params *params = (struct ISteamGameServer_SteamGameServer008_SetGameType_params *)args; - struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->u_iface; iface->SetGameType( params->pchGameType ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamGameServer_SteamGameServer008_SetGameType( void *args ) NTSTATUS ISteamGameServer_SteamGameServer008_BGetUserAchievementStatus( void *args ) { struct ISteamGameServer_SteamGameServer008_BGetUserAchievementStatus_params *params = (struct ISteamGameServer_SteamGameServer008_BGetUserAchievementStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->u_iface; params->_ret = iface->BGetUserAchievementStatus( params->steamID, params->pchAchievementName ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamGameServer_SteamGameServer008_BGetUserAchievementStatus( void *ar NTSTATUS ISteamGameServer_SteamGameServer008_GetGameplayStats( void *args ) { struct ISteamGameServer_SteamGameServer008_GetGameplayStats_params *params = (struct ISteamGameServer_SteamGameServer008_GetGameplayStats_params *)args; - struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->u_iface; iface->GetGameplayStats( ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamGameServer_SteamGameServer008_GetGameplayStats( void *args ) NTSTATUS ISteamGameServer_SteamGameServer008_RequestUserGroupStatus( void *args ) { struct ISteamGameServer_SteamGameServer008_RequestUserGroupStatus_params *params = (struct ISteamGameServer_SteamGameServer008_RequestUserGroupStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->u_iface; params->_ret = iface->RequestUserGroupStatus( params->steamIDUser, params->steamIDGroup ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamGameServer_SteamGameServer008_RequestUserGroupStatus( void *args NTSTATUS ISteamGameServer_SteamGameServer008_GetPublicIP( void *args ) { struct ISteamGameServer_SteamGameServer008_GetPublicIP_params *params = (struct ISteamGameServer_SteamGameServer008_GetPublicIP_params *)args; - struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer008 *iface = (struct u_ISteamGameServer_SteamGameServer008 *)params->u_iface; params->_ret = iface->GetPublicIP( ); return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer009.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer009.cpp index 05921ec8..1173e163 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer009.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer009.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_LogOn( void *args ) { struct ISteamGameServer_SteamGameServer009_LogOn_params *params = (struct ISteamGameServer_SteamGameServer009_LogOn_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; iface->LogOn( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_LogOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer009_LogOff( void *args ) { struct ISteamGameServer_SteamGameServer009_LogOff_params *params = (struct ISteamGameServer_SteamGameServer009_LogOff_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; iface->LogOff( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_LogOff( void *args ) NTSTATUS ISteamGameServer_SteamGameServer009_BLoggedOn( void *args ) { struct ISteamGameServer_SteamGameServer009_BLoggedOn_params *params = (struct ISteamGameServer_SteamGameServer009_BLoggedOn_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_BLoggedOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer009_BSecure( void *args ) { struct ISteamGameServer_SteamGameServer009_BSecure_params *params = (struct ISteamGameServer_SteamGameServer009_BSecure_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; params->_ret = iface->BSecure( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_BSecure( void *args ) NTSTATUS ISteamGameServer_SteamGameServer009_GetSteamID( void *args ) { struct ISteamGameServer_SteamGameServer009_GetSteamID_params *params = (struct ISteamGameServer_SteamGameServer009_GetSteamID_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_GetSteamID( void *args ) NTSTATUS ISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate( void *args ) { struct ISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate_params *params = (struct ISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; params->_ret = iface->SendUserConnectAndAuthenticate( params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize, params->pSteamIDUser ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate( voi NTSTATUS ISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection( void *args ) { struct ISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection_params *params = (struct ISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection NTSTATUS ISteamGameServer_SteamGameServer009_SendUserDisconnect( void *args ) { struct ISteamGameServer_SteamGameServer009_SendUserDisconnect_params *params = (struct ISteamGameServer_SteamGameServer009_SendUserDisconnect_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; iface->SendUserDisconnect( params->steamIDUser ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_SendUserDisconnect( void *args ) NTSTATUS ISteamGameServer_SteamGameServer009_BUpdateUserData( void *args ) { struct ISteamGameServer_SteamGameServer009_BUpdateUserData_params *params = (struct ISteamGameServer_SteamGameServer009_BUpdateUserData_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_BUpdateUserData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer009_BSetServerType( void *args ) { struct ISteamGameServer_SteamGameServer009_BSetServerType_params *params = (struct ISteamGameServer_SteamGameServer009_BSetServerType_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; params->_ret = iface->BSetServerType( params->unServerFlags, params->unGameIP, params->unGamePort, params->unSpectatorPort, params->usQueryPort, params->pchGameDir, params->pchVersion, params->bLANMode ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_BSetServerType( void *args ) NTSTATUS ISteamGameServer_SteamGameServer009_UpdateServerStatus( void *args ) { struct ISteamGameServer_SteamGameServer009_UpdateServerStatus_params *params = (struct ISteamGameServer_SteamGameServer009_UpdateServerStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; iface->UpdateServerStatus( params->cPlayers, params->cPlayersMax, params->cBotPlayers, params->pchServerName, params->pSpectatorServerName, params->pchMapName ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_UpdateServerStatus( void *args ) NTSTATUS ISteamGameServer_SteamGameServer009_UpdateSpectatorPort( void *args ) { struct ISteamGameServer_SteamGameServer009_UpdateSpectatorPort_params *params = (struct ISteamGameServer_SteamGameServer009_UpdateSpectatorPort_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; iface->UpdateSpectatorPort( params->unSpectatorPort ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_UpdateSpectatorPort( void *args ) NTSTATUS ISteamGameServer_SteamGameServer009_SetGameType( void *args ) { struct ISteamGameServer_SteamGameServer009_SetGameType_params *params = (struct ISteamGameServer_SteamGameServer009_SetGameType_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; iface->SetGameType( params->pchGameType ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_SetGameType( void *args ) NTSTATUS ISteamGameServer_SteamGameServer009_BGetUserAchievementStatus( void *args ) { struct ISteamGameServer_SteamGameServer009_BGetUserAchievementStatus_params *params = (struct ISteamGameServer_SteamGameServer009_BGetUserAchievementStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; params->_ret = iface->BGetUserAchievementStatus( params->steamID, params->pchAchievementName ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_BGetUserAchievementStatus( void *ar NTSTATUS ISteamGameServer_SteamGameServer009_GetGameplayStats( void *args ) { struct ISteamGameServer_SteamGameServer009_GetGameplayStats_params *params = (struct ISteamGameServer_SteamGameServer009_GetGameplayStats_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; iface->GetGameplayStats( ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_GetGameplayStats( void *args ) NTSTATUS ISteamGameServer_SteamGameServer009_RequestUserGroupStatus( void *args ) { struct ISteamGameServer_SteamGameServer009_RequestUserGroupStatus_params *params = (struct ISteamGameServer_SteamGameServer009_RequestUserGroupStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; params->_ret = iface->RequestUserGroupStatus( params->steamIDUser, params->steamIDGroup ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_RequestUserGroupStatus( void *args NTSTATUS ISteamGameServer_SteamGameServer009_GetPublicIP( void *args ) { struct ISteamGameServer_SteamGameServer009_GetPublicIP_params *params = (struct ISteamGameServer_SteamGameServer009_GetPublicIP_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; params->_ret = iface->GetPublicIP( ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_GetPublicIP( void *args ) NTSTATUS ISteamGameServer_SteamGameServer009_SetGameData( void *args ) { struct ISteamGameServer_SteamGameServer009_SetGameData_params *params = (struct ISteamGameServer_SteamGameServer009_SetGameData_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; iface->SetGameData( params->pchGameData ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamGameServer_SteamGameServer009_SetGameData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer009_UserHasLicenseForApp( void *args ) { struct ISteamGameServer_SteamGameServer009_UserHasLicenseForApp_params *params = (struct ISteamGameServer_SteamGameServer009_UserHasLicenseForApp_params *)args; - struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer009 *iface = (struct u_ISteamGameServer_SteamGameServer009 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer010.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer010.cpp index 50ac7fc9..06ddc419 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer010.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer010.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_LogOn( void *args ) { struct ISteamGameServer_SteamGameServer010_LogOn_params *params = (struct ISteamGameServer_SteamGameServer010_LogOn_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; iface->LogOn( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_LogOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_LogOff( void *args ) { struct ISteamGameServer_SteamGameServer010_LogOff_params *params = (struct ISteamGameServer_SteamGameServer010_LogOff_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; iface->LogOff( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_LogOff( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_BLoggedOn( void *args ) { struct ISteamGameServer_SteamGameServer010_BLoggedOn_params *params = (struct ISteamGameServer_SteamGameServer010_BLoggedOn_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_BLoggedOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_BSecure( void *args ) { struct ISteamGameServer_SteamGameServer010_BSecure_params *params = (struct ISteamGameServer_SteamGameServer010_BSecure_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; params->_ret = iface->BSecure( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_BSecure( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_GetSteamID( void *args ) { struct ISteamGameServer_SteamGameServer010_GetSteamID_params *params = (struct ISteamGameServer_SteamGameServer010_GetSteamID_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_GetSteamID( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate( void *args ) { struct ISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate_params *params = (struct ISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; params->_ret = iface->SendUserConnectAndAuthenticate( params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize, params->pSteamIDUser ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate( voi NTSTATUS ISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection( void *args ) { struct ISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection_params *params = (struct ISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection NTSTATUS ISteamGameServer_SteamGameServer010_SendUserDisconnect( void *args ) { struct ISteamGameServer_SteamGameServer010_SendUserDisconnect_params *params = (struct ISteamGameServer_SteamGameServer010_SendUserDisconnect_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; iface->SendUserDisconnect( params->steamIDUser ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_SendUserDisconnect( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_BUpdateUserData( void *args ) { struct ISteamGameServer_SteamGameServer010_BUpdateUserData_params *params = (struct ISteamGameServer_SteamGameServer010_BUpdateUserData_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_BUpdateUserData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_BSetServerType( void *args ) { struct ISteamGameServer_SteamGameServer010_BSetServerType_params *params = (struct ISteamGameServer_SteamGameServer010_BSetServerType_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; params->_ret = iface->BSetServerType( params->unServerFlags, params->unGameIP, params->unGamePort, params->unSpectatorPort, params->usQueryPort, params->pchGameDir, params->pchVersion, params->bLANMode ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_BSetServerType( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_UpdateServerStatus( void *args ) { struct ISteamGameServer_SteamGameServer010_UpdateServerStatus_params *params = (struct ISteamGameServer_SteamGameServer010_UpdateServerStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; iface->UpdateServerStatus( params->cPlayers, params->cPlayersMax, params->cBotPlayers, params->pchServerName, params->pSpectatorServerName, params->pchMapName ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_UpdateServerStatus( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_UpdateSpectatorPort( void *args ) { struct ISteamGameServer_SteamGameServer010_UpdateSpectatorPort_params *params = (struct ISteamGameServer_SteamGameServer010_UpdateSpectatorPort_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; iface->UpdateSpectatorPort( params->unSpectatorPort ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_UpdateSpectatorPort( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_SetGameTags( void *args ) { struct ISteamGameServer_SteamGameServer010_SetGameTags_params *params = (struct ISteamGameServer_SteamGameServer010_SetGameTags_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; iface->SetGameTags( params->pchGameTags ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_SetGameTags( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_GetGameplayStats( void *args ) { struct ISteamGameServer_SteamGameServer010_GetGameplayStats_params *params = (struct ISteamGameServer_SteamGameServer010_GetGameplayStats_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; iface->GetGameplayStats( ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_GetGameplayStats( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_GetServerReputation( void *args ) { struct ISteamGameServer_SteamGameServer010_GetServerReputation_params *params = (struct ISteamGameServer_SteamGameServer010_GetServerReputation_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; params->_ret = iface->GetServerReputation( ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_GetServerReputation( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_RequestUserGroupStatus( void *args ) { struct ISteamGameServer_SteamGameServer010_RequestUserGroupStatus_params *params = (struct ISteamGameServer_SteamGameServer010_RequestUserGroupStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; params->_ret = iface->RequestUserGroupStatus( params->steamIDUser, params->steamIDGroup ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_RequestUserGroupStatus( void *args NTSTATUS ISteamGameServer_SteamGameServer010_GetPublicIP( void *args ) { struct ISteamGameServer_SteamGameServer010_GetPublicIP_params *params = (struct ISteamGameServer_SteamGameServer010_GetPublicIP_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; params->_ret = iface->GetPublicIP( ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_GetPublicIP( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_SetGameData( void *args ) { struct ISteamGameServer_SteamGameServer010_SetGameData_params *params = (struct ISteamGameServer_SteamGameServer010_SetGameData_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; iface->SetGameData( params->pchGameData ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_SetGameData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_UserHasLicenseForApp( void *args ) { struct ISteamGameServer_SteamGameServer010_UserHasLicenseForApp_params *params = (struct ISteamGameServer_SteamGameServer010_UserHasLicenseForApp_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_UserHasLicenseForApp( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_GetAuthSessionTicket( void *args ) { struct ISteamGameServer_SteamGameServer010_GetAuthSessionTicket_params *params = (struct ISteamGameServer_SteamGameServer010_GetAuthSessionTicket_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_GetAuthSessionTicket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_BeginAuthSession( void *args ) { struct ISteamGameServer_SteamGameServer010_BeginAuthSession_params *params = (struct ISteamGameServer_SteamGameServer010_BeginAuthSession_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_BeginAuthSession( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_EndAuthSession( void *args ) { struct ISteamGameServer_SteamGameServer010_EndAuthSession_params *params = (struct ISteamGameServer_SteamGameServer010_EndAuthSession_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; iface->EndAuthSession( params->steamID ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamGameServer_SteamGameServer010_EndAuthSession( void *args ) NTSTATUS ISteamGameServer_SteamGameServer010_CancelAuthTicket( void *args ) { struct ISteamGameServer_SteamGameServer010_CancelAuthTicket_params *params = (struct ISteamGameServer_SteamGameServer010_CancelAuthTicket_params *)args; - struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer010 *iface = (struct u_ISteamGameServer_SteamGameServer010 *)params->u_iface; iface->CancelAuthTicket( params->hAuthTicket ); return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer011.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer011.cpp index 4735885a..702a170b 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer011.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer011.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_InitGameServer( void *args ) { struct ISteamGameServer_SteamGameServer011_InitGameServer_params *params = (struct ISteamGameServer_SteamGameServer011_InitGameServer_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; params->_ret = iface->InitGameServer( params->unIP, params->usGamePort, params->usQueryPort, params->unFlags, params->nGameAppId, params->pchVersionString ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_InitGameServer( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_SetProduct( void *args ) { struct ISteamGameServer_SteamGameServer011_SetProduct_params *params = (struct ISteamGameServer_SteamGameServer011_SetProduct_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->SetProduct( params->pszProduct ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_SetProduct( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_SetGameDescription( void *args ) { struct ISteamGameServer_SteamGameServer011_SetGameDescription_params *params = (struct ISteamGameServer_SteamGameServer011_SetGameDescription_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->SetGameDescription( params->pszGameDescription ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_SetGameDescription( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_SetModDir( void *args ) { struct ISteamGameServer_SteamGameServer011_SetModDir_params *params = (struct ISteamGameServer_SteamGameServer011_SetModDir_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->SetModDir( params->pszModDir ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_SetModDir( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_SetDedicatedServer( void *args ) { struct ISteamGameServer_SteamGameServer011_SetDedicatedServer_params *params = (struct ISteamGameServer_SteamGameServer011_SetDedicatedServer_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->SetDedicatedServer( params->bDedicated ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_SetDedicatedServer( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_LogOn( void *args ) { struct ISteamGameServer_SteamGameServer011_LogOn_params *params = (struct ISteamGameServer_SteamGameServer011_LogOn_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->LogOn( params->pszAccountName, params->pszPassword ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_LogOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_LogOnAnonymous( void *args ) { struct ISteamGameServer_SteamGameServer011_LogOnAnonymous_params *params = (struct ISteamGameServer_SteamGameServer011_LogOnAnonymous_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->LogOnAnonymous( ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_LogOnAnonymous( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_LogOff( void *args ) { struct ISteamGameServer_SteamGameServer011_LogOff_params *params = (struct ISteamGameServer_SteamGameServer011_LogOff_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->LogOff( ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_LogOff( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_BLoggedOn( void *args ) { struct ISteamGameServer_SteamGameServer011_BLoggedOn_params *params = (struct ISteamGameServer_SteamGameServer011_BLoggedOn_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_BLoggedOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_BSecure( void *args ) { struct ISteamGameServer_SteamGameServer011_BSecure_params *params = (struct ISteamGameServer_SteamGameServer011_BSecure_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; params->_ret = iface->BSecure( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_BSecure( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_GetSteamID( void *args ) { struct ISteamGameServer_SteamGameServer011_GetSteamID_params *params = (struct ISteamGameServer_SteamGameServer011_GetSteamID_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_GetSteamID( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_WasRestartRequested( void *args ) { struct ISteamGameServer_SteamGameServer011_WasRestartRequested_params *params = (struct ISteamGameServer_SteamGameServer011_WasRestartRequested_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; params->_ret = iface->WasRestartRequested( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_WasRestartRequested( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_SetMaxPlayerCount( void *args ) { struct ISteamGameServer_SteamGameServer011_SetMaxPlayerCount_params *params = (struct ISteamGameServer_SteamGameServer011_SetMaxPlayerCount_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->SetMaxPlayerCount( params->cPlayersMax ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_SetMaxPlayerCount( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_SetBotPlayerCount( void *args ) { struct ISteamGameServer_SteamGameServer011_SetBotPlayerCount_params *params = (struct ISteamGameServer_SteamGameServer011_SetBotPlayerCount_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->SetBotPlayerCount( params->cBotplayers ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_SetBotPlayerCount( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_SetServerName( void *args ) { struct ISteamGameServer_SteamGameServer011_SetServerName_params *params = (struct ISteamGameServer_SteamGameServer011_SetServerName_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->SetServerName( params->pszServerName ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_SetServerName( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_SetMapName( void *args ) { struct ISteamGameServer_SteamGameServer011_SetMapName_params *params = (struct ISteamGameServer_SteamGameServer011_SetMapName_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->SetMapName( params->pszMapName ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_SetMapName( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_SetPasswordProtected( void *args ) { struct ISteamGameServer_SteamGameServer011_SetPasswordProtected_params *params = (struct ISteamGameServer_SteamGameServer011_SetPasswordProtected_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->SetPasswordProtected( params->bPasswordProtected ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_SetPasswordProtected( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_SetSpectatorPort( void *args ) { struct ISteamGameServer_SteamGameServer011_SetSpectatorPort_params *params = (struct ISteamGameServer_SteamGameServer011_SetSpectatorPort_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->SetSpectatorPort( params->unSpectatorPort ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_SetSpectatorPort( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_SetSpectatorServerName( void *args ) { struct ISteamGameServer_SteamGameServer011_SetSpectatorServerName_params *params = (struct ISteamGameServer_SteamGameServer011_SetSpectatorServerName_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->SetSpectatorServerName( params->pszSpectatorServerName ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_SetSpectatorServerName( void *args NTSTATUS ISteamGameServer_SteamGameServer011_ClearAllKeyValues( void *args ) { struct ISteamGameServer_SteamGameServer011_ClearAllKeyValues_params *params = (struct ISteamGameServer_SteamGameServer011_ClearAllKeyValues_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->ClearAllKeyValues( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_ClearAllKeyValues( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_SetKeyValue( void *args ) { struct ISteamGameServer_SteamGameServer011_SetKeyValue_params *params = (struct ISteamGameServer_SteamGameServer011_SetKeyValue_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->SetKeyValue( params->pKey, params->pValue ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_SetKeyValue( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_SetGameTags( void *args ) { struct ISteamGameServer_SteamGameServer011_SetGameTags_params *params = (struct ISteamGameServer_SteamGameServer011_SetGameTags_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->SetGameTags( params->pchGameTags ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_SetGameTags( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_SetGameData( void *args ) { struct ISteamGameServer_SteamGameServer011_SetGameData_params *params = (struct ISteamGameServer_SteamGameServer011_SetGameData_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->SetGameData( params->pchGameData ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_SetGameData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_SetRegion( void *args ) { struct ISteamGameServer_SteamGameServer011_SetRegion_params *params = (struct ISteamGameServer_SteamGameServer011_SetRegion_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->SetRegion( params->pszRegion ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_SetRegion( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate( void *args ) { struct ISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate_params *params = (struct ISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; params->_ret = iface->SendUserConnectAndAuthenticate( params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize, params->pSteamIDUser ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate( voi NTSTATUS ISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection( void *args ) { struct ISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection_params *params = (struct ISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection NTSTATUS ISteamGameServer_SteamGameServer011_SendUserDisconnect( void *args ) { struct ISteamGameServer_SteamGameServer011_SendUserDisconnect_params *params = (struct ISteamGameServer_SteamGameServer011_SendUserDisconnect_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->SendUserDisconnect( params->steamIDUser ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_SendUserDisconnect( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_BUpdateUserData( void *args ) { struct ISteamGameServer_SteamGameServer011_BUpdateUserData_params *params = (struct ISteamGameServer_SteamGameServer011_BUpdateUserData_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_BUpdateUserData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_GetAuthSessionTicket( void *args ) { struct ISteamGameServer_SteamGameServer011_GetAuthSessionTicket_params *params = (struct ISteamGameServer_SteamGameServer011_GetAuthSessionTicket_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_GetAuthSessionTicket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_BeginAuthSession( void *args ) { struct ISteamGameServer_SteamGameServer011_BeginAuthSession_params *params = (struct ISteamGameServer_SteamGameServer011_BeginAuthSession_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_BeginAuthSession( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_EndAuthSession( void *args ) { struct ISteamGameServer_SteamGameServer011_EndAuthSession_params *params = (struct ISteamGameServer_SteamGameServer011_EndAuthSession_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->EndAuthSession( params->steamID ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_EndAuthSession( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_CancelAuthTicket( void *args ) { struct ISteamGameServer_SteamGameServer011_CancelAuthTicket_params *params = (struct ISteamGameServer_SteamGameServer011_CancelAuthTicket_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->CancelAuthTicket( params->hAuthTicket ); return 0; } @@ -264,7 +264,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_CancelAuthTicket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_UserHasLicenseForApp( void *args ) { struct ISteamGameServer_SteamGameServer011_UserHasLicenseForApp_params *params = (struct ISteamGameServer_SteamGameServer011_UserHasLicenseForApp_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_UserHasLicenseForApp( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_RequestUserGroupStatus( void *args ) { struct ISteamGameServer_SteamGameServer011_RequestUserGroupStatus_params *params = (struct ISteamGameServer_SteamGameServer011_RequestUserGroupStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; params->_ret = iface->RequestUserGroupStatus( params->steamIDUser, params->steamIDGroup ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_RequestUserGroupStatus( void *args NTSTATUS ISteamGameServer_SteamGameServer011_GetGameplayStats( void *args ) { struct ISteamGameServer_SteamGameServer011_GetGameplayStats_params *params = (struct ISteamGameServer_SteamGameServer011_GetGameplayStats_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->GetGameplayStats( ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_GetGameplayStats( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_GetServerReputation( void *args ) { struct ISteamGameServer_SteamGameServer011_GetServerReputation_params *params = (struct ISteamGameServer_SteamGameServer011_GetServerReputation_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; params->_ret = iface->GetServerReputation( ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_GetServerReputation( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_GetPublicIP( void *args ) { struct ISteamGameServer_SteamGameServer011_GetPublicIP_params *params = (struct ISteamGameServer_SteamGameServer011_GetPublicIP_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; params->_ret = iface->GetPublicIP( ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_GetPublicIP( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_HandleIncomingPacket( void *args ) { struct ISteamGameServer_SteamGameServer011_HandleIncomingPacket_params *params = (struct ISteamGameServer_SteamGameServer011_HandleIncomingPacket_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; params->_ret = iface->HandleIncomingPacket( params->pData, params->cbData, params->srcIP, params->srcPort ); return 0; } @@ -312,7 +312,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_HandleIncomingPacket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_GetNextOutgoingPacket( void *args ) { struct ISteamGameServer_SteamGameServer011_GetNextOutgoingPacket_params *params = (struct ISteamGameServer_SteamGameServer011_GetNextOutgoingPacket_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; params->_ret = iface->GetNextOutgoingPacket( params->pOut, params->cbMaxOut, params->pNetAdr, params->pPort ); return 0; } @@ -320,7 +320,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_GetNextOutgoingPacket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_EnableHeartbeats( void *args ) { struct ISteamGameServer_SteamGameServer011_EnableHeartbeats_params *params = (struct ISteamGameServer_SteamGameServer011_EnableHeartbeats_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->EnableHeartbeats( params->bActive ); return 0; } @@ -328,7 +328,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_EnableHeartbeats( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_SetHeartbeatInterval( void *args ) { struct ISteamGameServer_SteamGameServer011_SetHeartbeatInterval_params *params = (struct ISteamGameServer_SteamGameServer011_SetHeartbeatInterval_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->SetHeartbeatInterval( params->iHeartbeatInterval ); return 0; } @@ -336,7 +336,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_SetHeartbeatInterval( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_ForceHeartbeat( void *args ) { struct ISteamGameServer_SteamGameServer011_ForceHeartbeat_params *params = (struct ISteamGameServer_SteamGameServer011_ForceHeartbeat_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; iface->ForceHeartbeat( ); return 0; } @@ -344,7 +344,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_ForceHeartbeat( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_AssociateWithClan( void *args ) { struct ISteamGameServer_SteamGameServer011_AssociateWithClan_params *params = (struct ISteamGameServer_SteamGameServer011_AssociateWithClan_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; params->_ret = iface->AssociateWithClan( params->steamIDClan ); return 0; } @@ -352,7 +352,7 @@ NTSTATUS ISteamGameServer_SteamGameServer011_AssociateWithClan( void *args ) NTSTATUS ISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility( void *args ) { struct ISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility_params *params = (struct ISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility_params *)args; - struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer011 *iface = (struct u_ISteamGameServer_SteamGameServer011 *)params->u_iface; params->_ret = iface->ComputeNewPlayerCompatibility( params->steamIDNewPlayer ); return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer012.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer012.cpp index d7b86ee2..22febb1a 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer012.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer012.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_InitGameServer( void *args ) { struct ISteamGameServer_SteamGameServer012_InitGameServer_params *params = (struct ISteamGameServer_SteamGameServer012_InitGameServer_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; params->_ret = iface->InitGameServer( params->unIP, params->usGamePort, params->usQueryPort, params->unFlags, params->nGameAppId, params->pchVersionString ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_InitGameServer( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_SetProduct( void *args ) { struct ISteamGameServer_SteamGameServer012_SetProduct_params *params = (struct ISteamGameServer_SteamGameServer012_SetProduct_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->SetProduct( params->pszProduct ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_SetProduct( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_SetGameDescription( void *args ) { struct ISteamGameServer_SteamGameServer012_SetGameDescription_params *params = (struct ISteamGameServer_SteamGameServer012_SetGameDescription_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->SetGameDescription( params->pszGameDescription ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_SetGameDescription( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_SetModDir( void *args ) { struct ISteamGameServer_SteamGameServer012_SetModDir_params *params = (struct ISteamGameServer_SteamGameServer012_SetModDir_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->SetModDir( params->pszModDir ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_SetModDir( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_SetDedicatedServer( void *args ) { struct ISteamGameServer_SteamGameServer012_SetDedicatedServer_params *params = (struct ISteamGameServer_SteamGameServer012_SetDedicatedServer_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->SetDedicatedServer( params->bDedicated ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_SetDedicatedServer( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_LogOn( void *args ) { struct ISteamGameServer_SteamGameServer012_LogOn_params *params = (struct ISteamGameServer_SteamGameServer012_LogOn_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->LogOn( params->pszToken ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_LogOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_LogOnAnonymous( void *args ) { struct ISteamGameServer_SteamGameServer012_LogOnAnonymous_params *params = (struct ISteamGameServer_SteamGameServer012_LogOnAnonymous_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->LogOnAnonymous( ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_LogOnAnonymous( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_LogOff( void *args ) { struct ISteamGameServer_SteamGameServer012_LogOff_params *params = (struct ISteamGameServer_SteamGameServer012_LogOff_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->LogOff( ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_LogOff( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_BLoggedOn( void *args ) { struct ISteamGameServer_SteamGameServer012_BLoggedOn_params *params = (struct ISteamGameServer_SteamGameServer012_BLoggedOn_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_BLoggedOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_BSecure( void *args ) { struct ISteamGameServer_SteamGameServer012_BSecure_params *params = (struct ISteamGameServer_SteamGameServer012_BSecure_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; params->_ret = iface->BSecure( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_BSecure( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_GetSteamID( void *args ) { struct ISteamGameServer_SteamGameServer012_GetSteamID_params *params = (struct ISteamGameServer_SteamGameServer012_GetSteamID_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_GetSteamID( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_WasRestartRequested( void *args ) { struct ISteamGameServer_SteamGameServer012_WasRestartRequested_params *params = (struct ISteamGameServer_SteamGameServer012_WasRestartRequested_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; params->_ret = iface->WasRestartRequested( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_WasRestartRequested( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_SetMaxPlayerCount( void *args ) { struct ISteamGameServer_SteamGameServer012_SetMaxPlayerCount_params *params = (struct ISteamGameServer_SteamGameServer012_SetMaxPlayerCount_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->SetMaxPlayerCount( params->cPlayersMax ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_SetMaxPlayerCount( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_SetBotPlayerCount( void *args ) { struct ISteamGameServer_SteamGameServer012_SetBotPlayerCount_params *params = (struct ISteamGameServer_SteamGameServer012_SetBotPlayerCount_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->SetBotPlayerCount( params->cBotplayers ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_SetBotPlayerCount( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_SetServerName( void *args ) { struct ISteamGameServer_SteamGameServer012_SetServerName_params *params = (struct ISteamGameServer_SteamGameServer012_SetServerName_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->SetServerName( params->pszServerName ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_SetServerName( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_SetMapName( void *args ) { struct ISteamGameServer_SteamGameServer012_SetMapName_params *params = (struct ISteamGameServer_SteamGameServer012_SetMapName_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->SetMapName( params->pszMapName ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_SetMapName( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_SetPasswordProtected( void *args ) { struct ISteamGameServer_SteamGameServer012_SetPasswordProtected_params *params = (struct ISteamGameServer_SteamGameServer012_SetPasswordProtected_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->SetPasswordProtected( params->bPasswordProtected ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_SetPasswordProtected( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_SetSpectatorPort( void *args ) { struct ISteamGameServer_SteamGameServer012_SetSpectatorPort_params *params = (struct ISteamGameServer_SteamGameServer012_SetSpectatorPort_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->SetSpectatorPort( params->unSpectatorPort ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_SetSpectatorPort( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_SetSpectatorServerName( void *args ) { struct ISteamGameServer_SteamGameServer012_SetSpectatorServerName_params *params = (struct ISteamGameServer_SteamGameServer012_SetSpectatorServerName_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->SetSpectatorServerName( params->pszSpectatorServerName ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_SetSpectatorServerName( void *args NTSTATUS ISteamGameServer_SteamGameServer012_ClearAllKeyValues( void *args ) { struct ISteamGameServer_SteamGameServer012_ClearAllKeyValues_params *params = (struct ISteamGameServer_SteamGameServer012_ClearAllKeyValues_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->ClearAllKeyValues( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_ClearAllKeyValues( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_SetKeyValue( void *args ) { struct ISteamGameServer_SteamGameServer012_SetKeyValue_params *params = (struct ISteamGameServer_SteamGameServer012_SetKeyValue_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->SetKeyValue( params->pKey, params->pValue ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_SetKeyValue( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_SetGameTags( void *args ) { struct ISteamGameServer_SteamGameServer012_SetGameTags_params *params = (struct ISteamGameServer_SteamGameServer012_SetGameTags_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->SetGameTags( params->pchGameTags ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_SetGameTags( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_SetGameData( void *args ) { struct ISteamGameServer_SteamGameServer012_SetGameData_params *params = (struct ISteamGameServer_SteamGameServer012_SetGameData_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->SetGameData( params->pchGameData ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_SetGameData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_SetRegion( void *args ) { struct ISteamGameServer_SteamGameServer012_SetRegion_params *params = (struct ISteamGameServer_SteamGameServer012_SetRegion_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->SetRegion( params->pszRegion ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_SetRegion( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate( void *args ) { struct ISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate_params *params = (struct ISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; params->_ret = iface->SendUserConnectAndAuthenticate( params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize, params->pSteamIDUser ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate( voi NTSTATUS ISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection( void *args ) { struct ISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection_params *params = (struct ISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection NTSTATUS ISteamGameServer_SteamGameServer012_SendUserDisconnect( void *args ) { struct ISteamGameServer_SteamGameServer012_SendUserDisconnect_params *params = (struct ISteamGameServer_SteamGameServer012_SendUserDisconnect_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->SendUserDisconnect( params->steamIDUser ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_SendUserDisconnect( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_BUpdateUserData( void *args ) { struct ISteamGameServer_SteamGameServer012_BUpdateUserData_params *params = (struct ISteamGameServer_SteamGameServer012_BUpdateUserData_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_BUpdateUserData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_GetAuthSessionTicket( void *args ) { struct ISteamGameServer_SteamGameServer012_GetAuthSessionTicket_params *params = (struct ISteamGameServer_SteamGameServer012_GetAuthSessionTicket_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_GetAuthSessionTicket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_BeginAuthSession( void *args ) { struct ISteamGameServer_SteamGameServer012_BeginAuthSession_params *params = (struct ISteamGameServer_SteamGameServer012_BeginAuthSession_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_BeginAuthSession( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_EndAuthSession( void *args ) { struct ISteamGameServer_SteamGameServer012_EndAuthSession_params *params = (struct ISteamGameServer_SteamGameServer012_EndAuthSession_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->EndAuthSession( params->steamID ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_EndAuthSession( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_CancelAuthTicket( void *args ) { struct ISteamGameServer_SteamGameServer012_CancelAuthTicket_params *params = (struct ISteamGameServer_SteamGameServer012_CancelAuthTicket_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->CancelAuthTicket( params->hAuthTicket ); return 0; } @@ -264,7 +264,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_CancelAuthTicket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_UserHasLicenseForApp( void *args ) { struct ISteamGameServer_SteamGameServer012_UserHasLicenseForApp_params *params = (struct ISteamGameServer_SteamGameServer012_UserHasLicenseForApp_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_UserHasLicenseForApp( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_RequestUserGroupStatus( void *args ) { struct ISteamGameServer_SteamGameServer012_RequestUserGroupStatus_params *params = (struct ISteamGameServer_SteamGameServer012_RequestUserGroupStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; params->_ret = iface->RequestUserGroupStatus( params->steamIDUser, params->steamIDGroup ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_RequestUserGroupStatus( void *args NTSTATUS ISteamGameServer_SteamGameServer012_GetGameplayStats( void *args ) { struct ISteamGameServer_SteamGameServer012_GetGameplayStats_params *params = (struct ISteamGameServer_SteamGameServer012_GetGameplayStats_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->GetGameplayStats( ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_GetGameplayStats( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_GetServerReputation( void *args ) { struct ISteamGameServer_SteamGameServer012_GetServerReputation_params *params = (struct ISteamGameServer_SteamGameServer012_GetServerReputation_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; params->_ret = iface->GetServerReputation( ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_GetServerReputation( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_GetPublicIP( void *args ) { struct ISteamGameServer_SteamGameServer012_GetPublicIP_params *params = (struct ISteamGameServer_SteamGameServer012_GetPublicIP_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; params->_ret = iface->GetPublicIP( ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_GetPublicIP( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_HandleIncomingPacket( void *args ) { struct ISteamGameServer_SteamGameServer012_HandleIncomingPacket_params *params = (struct ISteamGameServer_SteamGameServer012_HandleIncomingPacket_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; params->_ret = iface->HandleIncomingPacket( params->pData, params->cbData, params->srcIP, params->srcPort ); return 0; } @@ -312,7 +312,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_HandleIncomingPacket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_GetNextOutgoingPacket( void *args ) { struct ISteamGameServer_SteamGameServer012_GetNextOutgoingPacket_params *params = (struct ISteamGameServer_SteamGameServer012_GetNextOutgoingPacket_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; params->_ret = iface->GetNextOutgoingPacket( params->pOut, params->cbMaxOut, params->pNetAdr, params->pPort ); return 0; } @@ -320,7 +320,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_GetNextOutgoingPacket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_EnableHeartbeats( void *args ) { struct ISteamGameServer_SteamGameServer012_EnableHeartbeats_params *params = (struct ISteamGameServer_SteamGameServer012_EnableHeartbeats_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->EnableHeartbeats( params->bActive ); return 0; } @@ -328,7 +328,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_EnableHeartbeats( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_SetHeartbeatInterval( void *args ) { struct ISteamGameServer_SteamGameServer012_SetHeartbeatInterval_params *params = (struct ISteamGameServer_SteamGameServer012_SetHeartbeatInterval_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->SetHeartbeatInterval( params->iHeartbeatInterval ); return 0; } @@ -336,7 +336,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_SetHeartbeatInterval( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_ForceHeartbeat( void *args ) { struct ISteamGameServer_SteamGameServer012_ForceHeartbeat_params *params = (struct ISteamGameServer_SteamGameServer012_ForceHeartbeat_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; iface->ForceHeartbeat( ); return 0; } @@ -344,7 +344,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_ForceHeartbeat( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_AssociateWithClan( void *args ) { struct ISteamGameServer_SteamGameServer012_AssociateWithClan_params *params = (struct ISteamGameServer_SteamGameServer012_AssociateWithClan_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; params->_ret = iface->AssociateWithClan( params->steamIDClan ); return 0; } @@ -352,7 +352,7 @@ NTSTATUS ISteamGameServer_SteamGameServer012_AssociateWithClan( void *args ) NTSTATUS ISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility( void *args ) { struct ISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility_params *params = (struct ISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility_params *)args; - struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer012 *iface = (struct u_ISteamGameServer_SteamGameServer012 *)params->u_iface; params->_ret = iface->ComputeNewPlayerCompatibility( params->steamIDNewPlayer ); return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer013.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer013.cpp index 14fbbe3b..89a9b16f 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer013.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer013.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_InitGameServer( void *args ) { struct ISteamGameServer_SteamGameServer013_InitGameServer_params *params = (struct ISteamGameServer_SteamGameServer013_InitGameServer_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; params->_ret = iface->InitGameServer( params->unIP, params->usGamePort, params->usQueryPort, params->unFlags, params->nGameAppId, params->pchVersionString ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_InitGameServer( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_SetProduct( void *args ) { struct ISteamGameServer_SteamGameServer013_SetProduct_params *params = (struct ISteamGameServer_SteamGameServer013_SetProduct_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->SetProduct( params->pszProduct ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_SetProduct( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_SetGameDescription( void *args ) { struct ISteamGameServer_SteamGameServer013_SetGameDescription_params *params = (struct ISteamGameServer_SteamGameServer013_SetGameDescription_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->SetGameDescription( params->pszGameDescription ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_SetGameDescription( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_SetModDir( void *args ) { struct ISteamGameServer_SteamGameServer013_SetModDir_params *params = (struct ISteamGameServer_SteamGameServer013_SetModDir_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->SetModDir( params->pszModDir ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_SetModDir( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_SetDedicatedServer( void *args ) { struct ISteamGameServer_SteamGameServer013_SetDedicatedServer_params *params = (struct ISteamGameServer_SteamGameServer013_SetDedicatedServer_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->SetDedicatedServer( params->bDedicated ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_SetDedicatedServer( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_LogOn( void *args ) { struct ISteamGameServer_SteamGameServer013_LogOn_params *params = (struct ISteamGameServer_SteamGameServer013_LogOn_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->LogOn( params->pszToken ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_LogOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_LogOnAnonymous( void *args ) { struct ISteamGameServer_SteamGameServer013_LogOnAnonymous_params *params = (struct ISteamGameServer_SteamGameServer013_LogOnAnonymous_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->LogOnAnonymous( ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_LogOnAnonymous( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_LogOff( void *args ) { struct ISteamGameServer_SteamGameServer013_LogOff_params *params = (struct ISteamGameServer_SteamGameServer013_LogOff_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->LogOff( ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_LogOff( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_BLoggedOn( void *args ) { struct ISteamGameServer_SteamGameServer013_BLoggedOn_params *params = (struct ISteamGameServer_SteamGameServer013_BLoggedOn_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_BLoggedOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_BSecure( void *args ) { struct ISteamGameServer_SteamGameServer013_BSecure_params *params = (struct ISteamGameServer_SteamGameServer013_BSecure_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; params->_ret = iface->BSecure( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_BSecure( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_GetSteamID( void *args ) { struct ISteamGameServer_SteamGameServer013_GetSteamID_params *params = (struct ISteamGameServer_SteamGameServer013_GetSteamID_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_GetSteamID( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_WasRestartRequested( void *args ) { struct ISteamGameServer_SteamGameServer013_WasRestartRequested_params *params = (struct ISteamGameServer_SteamGameServer013_WasRestartRequested_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; params->_ret = iface->WasRestartRequested( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_WasRestartRequested( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_SetMaxPlayerCount( void *args ) { struct ISteamGameServer_SteamGameServer013_SetMaxPlayerCount_params *params = (struct ISteamGameServer_SteamGameServer013_SetMaxPlayerCount_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->SetMaxPlayerCount( params->cPlayersMax ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_SetMaxPlayerCount( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_SetBotPlayerCount( void *args ) { struct ISteamGameServer_SteamGameServer013_SetBotPlayerCount_params *params = (struct ISteamGameServer_SteamGameServer013_SetBotPlayerCount_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->SetBotPlayerCount( params->cBotplayers ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_SetBotPlayerCount( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_SetServerName( void *args ) { struct ISteamGameServer_SteamGameServer013_SetServerName_params *params = (struct ISteamGameServer_SteamGameServer013_SetServerName_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->SetServerName( params->pszServerName ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_SetServerName( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_SetMapName( void *args ) { struct ISteamGameServer_SteamGameServer013_SetMapName_params *params = (struct ISteamGameServer_SteamGameServer013_SetMapName_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->SetMapName( params->pszMapName ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_SetMapName( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_SetPasswordProtected( void *args ) { struct ISteamGameServer_SteamGameServer013_SetPasswordProtected_params *params = (struct ISteamGameServer_SteamGameServer013_SetPasswordProtected_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->SetPasswordProtected( params->bPasswordProtected ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_SetPasswordProtected( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_SetSpectatorPort( void *args ) { struct ISteamGameServer_SteamGameServer013_SetSpectatorPort_params *params = (struct ISteamGameServer_SteamGameServer013_SetSpectatorPort_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->SetSpectatorPort( params->unSpectatorPort ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_SetSpectatorPort( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_SetSpectatorServerName( void *args ) { struct ISteamGameServer_SteamGameServer013_SetSpectatorServerName_params *params = (struct ISteamGameServer_SteamGameServer013_SetSpectatorServerName_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->SetSpectatorServerName( params->pszSpectatorServerName ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_SetSpectatorServerName( void *args NTSTATUS ISteamGameServer_SteamGameServer013_ClearAllKeyValues( void *args ) { struct ISteamGameServer_SteamGameServer013_ClearAllKeyValues_params *params = (struct ISteamGameServer_SteamGameServer013_ClearAllKeyValues_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->ClearAllKeyValues( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_ClearAllKeyValues( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_SetKeyValue( void *args ) { struct ISteamGameServer_SteamGameServer013_SetKeyValue_params *params = (struct ISteamGameServer_SteamGameServer013_SetKeyValue_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->SetKeyValue( params->pKey, params->pValue ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_SetKeyValue( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_SetGameTags( void *args ) { struct ISteamGameServer_SteamGameServer013_SetGameTags_params *params = (struct ISteamGameServer_SteamGameServer013_SetGameTags_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->SetGameTags( params->pchGameTags ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_SetGameTags( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_SetGameData( void *args ) { struct ISteamGameServer_SteamGameServer013_SetGameData_params *params = (struct ISteamGameServer_SteamGameServer013_SetGameData_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->SetGameData( params->pchGameData ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_SetGameData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_SetRegion( void *args ) { struct ISteamGameServer_SteamGameServer013_SetRegion_params *params = (struct ISteamGameServer_SteamGameServer013_SetRegion_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->SetRegion( params->pszRegion ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_SetRegion( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate( void *args ) { struct ISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate_params *params = (struct ISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; params->_ret = iface->SendUserConnectAndAuthenticate( params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize, params->pSteamIDUser ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate( voi NTSTATUS ISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection( void *args ) { struct ISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection_params *params = (struct ISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection NTSTATUS ISteamGameServer_SteamGameServer013_SendUserDisconnect( void *args ) { struct ISteamGameServer_SteamGameServer013_SendUserDisconnect_params *params = (struct ISteamGameServer_SteamGameServer013_SendUserDisconnect_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->SendUserDisconnect( params->steamIDUser ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_SendUserDisconnect( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_BUpdateUserData( void *args ) { struct ISteamGameServer_SteamGameServer013_BUpdateUserData_params *params = (struct ISteamGameServer_SteamGameServer013_BUpdateUserData_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_BUpdateUserData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_GetAuthSessionTicket( void *args ) { struct ISteamGameServer_SteamGameServer013_GetAuthSessionTicket_params *params = (struct ISteamGameServer_SteamGameServer013_GetAuthSessionTicket_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_GetAuthSessionTicket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_BeginAuthSession( void *args ) { struct ISteamGameServer_SteamGameServer013_BeginAuthSession_params *params = (struct ISteamGameServer_SteamGameServer013_BeginAuthSession_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_BeginAuthSession( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_EndAuthSession( void *args ) { struct ISteamGameServer_SteamGameServer013_EndAuthSession_params *params = (struct ISteamGameServer_SteamGameServer013_EndAuthSession_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->EndAuthSession( params->steamID ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_EndAuthSession( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_CancelAuthTicket( void *args ) { struct ISteamGameServer_SteamGameServer013_CancelAuthTicket_params *params = (struct ISteamGameServer_SteamGameServer013_CancelAuthTicket_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->CancelAuthTicket( params->hAuthTicket ); return 0; } @@ -264,7 +264,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_CancelAuthTicket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_UserHasLicenseForApp( void *args ) { struct ISteamGameServer_SteamGameServer013_UserHasLicenseForApp_params *params = (struct ISteamGameServer_SteamGameServer013_UserHasLicenseForApp_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_UserHasLicenseForApp( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_RequestUserGroupStatus( void *args ) { struct ISteamGameServer_SteamGameServer013_RequestUserGroupStatus_params *params = (struct ISteamGameServer_SteamGameServer013_RequestUserGroupStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; params->_ret = iface->RequestUserGroupStatus( params->steamIDUser, params->steamIDGroup ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_RequestUserGroupStatus( void *args NTSTATUS ISteamGameServer_SteamGameServer013_GetGameplayStats( void *args ) { struct ISteamGameServer_SteamGameServer013_GetGameplayStats_params *params = (struct ISteamGameServer_SteamGameServer013_GetGameplayStats_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->GetGameplayStats( ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_GetGameplayStats( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_GetServerReputation( void *args ) { struct ISteamGameServer_SteamGameServer013_GetServerReputation_params *params = (struct ISteamGameServer_SteamGameServer013_GetServerReputation_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; params->_ret = iface->GetServerReputation( ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_GetServerReputation( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_GetPublicIP( void *args ) { struct ISteamGameServer_SteamGameServer013_GetPublicIP_params *params = (struct ISteamGameServer_SteamGameServer013_GetPublicIP_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; *params->_ret = iface->GetPublicIP( ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_GetPublicIP( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_HandleIncomingPacket( void *args ) { struct ISteamGameServer_SteamGameServer013_HandleIncomingPacket_params *params = (struct ISteamGameServer_SteamGameServer013_HandleIncomingPacket_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; params->_ret = iface->HandleIncomingPacket( params->pData, params->cbData, params->srcIP, params->srcPort ); return 0; } @@ -312,7 +312,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_HandleIncomingPacket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_GetNextOutgoingPacket( void *args ) { struct ISteamGameServer_SteamGameServer013_GetNextOutgoingPacket_params *params = (struct ISteamGameServer_SteamGameServer013_GetNextOutgoingPacket_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; params->_ret = iface->GetNextOutgoingPacket( params->pOut, params->cbMaxOut, params->pNetAdr, params->pPort ); return 0; } @@ -320,7 +320,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_GetNextOutgoingPacket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_EnableHeartbeats( void *args ) { struct ISteamGameServer_SteamGameServer013_EnableHeartbeats_params *params = (struct ISteamGameServer_SteamGameServer013_EnableHeartbeats_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->EnableHeartbeats( params->bActive ); return 0; } @@ -328,7 +328,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_EnableHeartbeats( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_SetHeartbeatInterval( void *args ) { struct ISteamGameServer_SteamGameServer013_SetHeartbeatInterval_params *params = (struct ISteamGameServer_SteamGameServer013_SetHeartbeatInterval_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->SetHeartbeatInterval( params->iHeartbeatInterval ); return 0; } @@ -336,7 +336,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_SetHeartbeatInterval( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_ForceHeartbeat( void *args ) { struct ISteamGameServer_SteamGameServer013_ForceHeartbeat_params *params = (struct ISteamGameServer_SteamGameServer013_ForceHeartbeat_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; iface->ForceHeartbeat( ); return 0; } @@ -344,7 +344,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_ForceHeartbeat( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_AssociateWithClan( void *args ) { struct ISteamGameServer_SteamGameServer013_AssociateWithClan_params *params = (struct ISteamGameServer_SteamGameServer013_AssociateWithClan_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; params->_ret = iface->AssociateWithClan( params->steamIDClan ); return 0; } @@ -352,7 +352,7 @@ NTSTATUS ISteamGameServer_SteamGameServer013_AssociateWithClan( void *args ) NTSTATUS ISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility( void *args ) { struct ISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility_params *params = (struct ISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility_params *)args; - struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer013 *iface = (struct u_ISteamGameServer_SteamGameServer013 *)params->u_iface; params->_ret = iface->ComputeNewPlayerCompatibility( params->steamIDNewPlayer ); return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer014.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer014.cpp index bd1980a5..22952b80 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer014.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer014.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_InitGameServer( void *args ) { struct ISteamGameServer_SteamGameServer014_InitGameServer_params *params = (struct ISteamGameServer_SteamGameServer014_InitGameServer_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; params->_ret = iface->InitGameServer( params->unIP, params->usGamePort, params->usQueryPort, params->unFlags, params->nGameAppId, params->pchVersionString ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_InitGameServer( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_SetProduct( void *args ) { struct ISteamGameServer_SteamGameServer014_SetProduct_params *params = (struct ISteamGameServer_SteamGameServer014_SetProduct_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->SetProduct( params->pszProduct ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SetProduct( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_SetGameDescription( void *args ) { struct ISteamGameServer_SteamGameServer014_SetGameDescription_params *params = (struct ISteamGameServer_SteamGameServer014_SetGameDescription_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->SetGameDescription( params->pszGameDescription ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SetGameDescription( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_SetModDir( void *args ) { struct ISteamGameServer_SteamGameServer014_SetModDir_params *params = (struct ISteamGameServer_SteamGameServer014_SetModDir_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->SetModDir( params->pszModDir ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SetModDir( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_SetDedicatedServer( void *args ) { struct ISteamGameServer_SteamGameServer014_SetDedicatedServer_params *params = (struct ISteamGameServer_SteamGameServer014_SetDedicatedServer_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->SetDedicatedServer( params->bDedicated ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SetDedicatedServer( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_LogOn( void *args ) { struct ISteamGameServer_SteamGameServer014_LogOn_params *params = (struct ISteamGameServer_SteamGameServer014_LogOn_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->LogOn( params->pszToken ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_LogOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_LogOnAnonymous( void *args ) { struct ISteamGameServer_SteamGameServer014_LogOnAnonymous_params *params = (struct ISteamGameServer_SteamGameServer014_LogOnAnonymous_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->LogOnAnonymous( ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_LogOnAnonymous( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_LogOff( void *args ) { struct ISteamGameServer_SteamGameServer014_LogOff_params *params = (struct ISteamGameServer_SteamGameServer014_LogOff_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->LogOff( ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_LogOff( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_BLoggedOn( void *args ) { struct ISteamGameServer_SteamGameServer014_BLoggedOn_params *params = (struct ISteamGameServer_SteamGameServer014_BLoggedOn_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_BLoggedOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_BSecure( void *args ) { struct ISteamGameServer_SteamGameServer014_BSecure_params *params = (struct ISteamGameServer_SteamGameServer014_BSecure_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; params->_ret = iface->BSecure( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_BSecure( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_GetSteamID( void *args ) { struct ISteamGameServer_SteamGameServer014_GetSteamID_params *params = (struct ISteamGameServer_SteamGameServer014_GetSteamID_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_GetSteamID( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_WasRestartRequested( void *args ) { struct ISteamGameServer_SteamGameServer014_WasRestartRequested_params *params = (struct ISteamGameServer_SteamGameServer014_WasRestartRequested_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; params->_ret = iface->WasRestartRequested( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_WasRestartRequested( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_SetMaxPlayerCount( void *args ) { struct ISteamGameServer_SteamGameServer014_SetMaxPlayerCount_params *params = (struct ISteamGameServer_SteamGameServer014_SetMaxPlayerCount_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->SetMaxPlayerCount( params->cPlayersMax ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SetMaxPlayerCount( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_SetBotPlayerCount( void *args ) { struct ISteamGameServer_SteamGameServer014_SetBotPlayerCount_params *params = (struct ISteamGameServer_SteamGameServer014_SetBotPlayerCount_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->SetBotPlayerCount( params->cBotplayers ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SetBotPlayerCount( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_SetServerName( void *args ) { struct ISteamGameServer_SteamGameServer014_SetServerName_params *params = (struct ISteamGameServer_SteamGameServer014_SetServerName_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->SetServerName( params->pszServerName ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SetServerName( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_SetMapName( void *args ) { struct ISteamGameServer_SteamGameServer014_SetMapName_params *params = (struct ISteamGameServer_SteamGameServer014_SetMapName_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->SetMapName( params->pszMapName ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SetMapName( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_SetPasswordProtected( void *args ) { struct ISteamGameServer_SteamGameServer014_SetPasswordProtected_params *params = (struct ISteamGameServer_SteamGameServer014_SetPasswordProtected_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->SetPasswordProtected( params->bPasswordProtected ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SetPasswordProtected( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_SetSpectatorPort( void *args ) { struct ISteamGameServer_SteamGameServer014_SetSpectatorPort_params *params = (struct ISteamGameServer_SteamGameServer014_SetSpectatorPort_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->SetSpectatorPort( params->unSpectatorPort ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SetSpectatorPort( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_SetSpectatorServerName( void *args ) { struct ISteamGameServer_SteamGameServer014_SetSpectatorServerName_params *params = (struct ISteamGameServer_SteamGameServer014_SetSpectatorServerName_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->SetSpectatorServerName( params->pszSpectatorServerName ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SetSpectatorServerName( void *args NTSTATUS ISteamGameServer_SteamGameServer014_ClearAllKeyValues( void *args ) { struct ISteamGameServer_SteamGameServer014_ClearAllKeyValues_params *params = (struct ISteamGameServer_SteamGameServer014_ClearAllKeyValues_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->ClearAllKeyValues( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_ClearAllKeyValues( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_SetKeyValue( void *args ) { struct ISteamGameServer_SteamGameServer014_SetKeyValue_params *params = (struct ISteamGameServer_SteamGameServer014_SetKeyValue_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->SetKeyValue( params->pKey, params->pValue ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SetKeyValue( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_SetGameTags( void *args ) { struct ISteamGameServer_SteamGameServer014_SetGameTags_params *params = (struct ISteamGameServer_SteamGameServer014_SetGameTags_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->SetGameTags( params->pchGameTags ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SetGameTags( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_SetGameData( void *args ) { struct ISteamGameServer_SteamGameServer014_SetGameData_params *params = (struct ISteamGameServer_SteamGameServer014_SetGameData_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->SetGameData( params->pchGameData ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SetGameData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_SetRegion( void *args ) { struct ISteamGameServer_SteamGameServer014_SetRegion_params *params = (struct ISteamGameServer_SteamGameServer014_SetRegion_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->SetRegion( params->pszRegion ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SetRegion( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_SetAdvertiseServerActive( void *args ) { struct ISteamGameServer_SteamGameServer014_SetAdvertiseServerActive_params *params = (struct ISteamGameServer_SteamGameServer014_SetAdvertiseServerActive_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->SetAdvertiseServerActive( params->bActive ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SetAdvertiseServerActive( void *arg NTSTATUS ISteamGameServer_SteamGameServer014_GetAuthSessionTicket( void *args ) { struct ISteamGameServer_SteamGameServer014_GetAuthSessionTicket_params *params = (struct ISteamGameServer_SteamGameServer014_GetAuthSessionTicket_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_GetAuthSessionTicket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_BeginAuthSession( void *args ) { struct ISteamGameServer_SteamGameServer014_BeginAuthSession_params *params = (struct ISteamGameServer_SteamGameServer014_BeginAuthSession_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_BeginAuthSession( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_EndAuthSession( void *args ) { struct ISteamGameServer_SteamGameServer014_EndAuthSession_params *params = (struct ISteamGameServer_SteamGameServer014_EndAuthSession_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->EndAuthSession( params->steamID ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_EndAuthSession( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_CancelAuthTicket( void *args ) { struct ISteamGameServer_SteamGameServer014_CancelAuthTicket_params *params = (struct ISteamGameServer_SteamGameServer014_CancelAuthTicket_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->CancelAuthTicket( params->hAuthTicket ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_CancelAuthTicket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_UserHasLicenseForApp( void *args ) { struct ISteamGameServer_SteamGameServer014_UserHasLicenseForApp_params *params = (struct ISteamGameServer_SteamGameServer014_UserHasLicenseForApp_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_UserHasLicenseForApp( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_RequestUserGroupStatus( void *args ) { struct ISteamGameServer_SteamGameServer014_RequestUserGroupStatus_params *params = (struct ISteamGameServer_SteamGameServer014_RequestUserGroupStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; params->_ret = iface->RequestUserGroupStatus( params->steamIDUser, params->steamIDGroup ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_RequestUserGroupStatus( void *args NTSTATUS ISteamGameServer_SteamGameServer014_GetGameplayStats( void *args ) { struct ISteamGameServer_SteamGameServer014_GetGameplayStats_params *params = (struct ISteamGameServer_SteamGameServer014_GetGameplayStats_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->GetGameplayStats( ); return 0; } @@ -264,7 +264,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_GetGameplayStats( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_GetServerReputation( void *args ) { struct ISteamGameServer_SteamGameServer014_GetServerReputation_params *params = (struct ISteamGameServer_SteamGameServer014_GetServerReputation_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; params->_ret = iface->GetServerReputation( ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_GetServerReputation( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_GetPublicIP( void *args ) { struct ISteamGameServer_SteamGameServer014_GetPublicIP_params *params = (struct ISteamGameServer_SteamGameServer014_GetPublicIP_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; *params->_ret = iface->GetPublicIP( ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_GetPublicIP( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_HandleIncomingPacket( void *args ) { struct ISteamGameServer_SteamGameServer014_HandleIncomingPacket_params *params = (struct ISteamGameServer_SteamGameServer014_HandleIncomingPacket_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; params->_ret = iface->HandleIncomingPacket( params->pData, params->cbData, params->srcIP, params->srcPort ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_HandleIncomingPacket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_GetNextOutgoingPacket( void *args ) { struct ISteamGameServer_SteamGameServer014_GetNextOutgoingPacket_params *params = (struct ISteamGameServer_SteamGameServer014_GetNextOutgoingPacket_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; params->_ret = iface->GetNextOutgoingPacket( params->pOut, params->cbMaxOut, params->pNetAdr, params->pPort ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_GetNextOutgoingPacket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_AssociateWithClan( void *args ) { struct ISteamGameServer_SteamGameServer014_AssociateWithClan_params *params = (struct ISteamGameServer_SteamGameServer014_AssociateWithClan_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; params->_ret = iface->AssociateWithClan( params->steamIDClan ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_AssociateWithClan( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility( void *args ) { struct ISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility_params *params = (struct ISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; params->_ret = iface->ComputeNewPlayerCompatibility( params->steamIDNewPlayer ); return 0; } @@ -312,7 +312,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility( void NTSTATUS ISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED( void *args ) { struct ISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED_params *params = (struct ISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; params->_ret = iface->SendUserConnectAndAuthenticate_DEPRECATED( params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize, params->pSteamIDUser ); return 0; } @@ -320,7 +320,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPR NTSTATUS ISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection( void *args ) { struct ISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection_params *params = (struct ISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); return 0; } @@ -328,7 +328,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection NTSTATUS ISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED( void *args ) { struct ISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED_params *params = (struct ISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->SendUserDisconnect_DEPRECATED( params->steamIDUser ); return 0; } @@ -336,7 +336,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED( void NTSTATUS ISteamGameServer_SteamGameServer014_BUpdateUserData( void *args ) { struct ISteamGameServer_SteamGameServer014_BUpdateUserData_params *params = (struct ISteamGameServer_SteamGameServer014_BUpdateUserData_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); return 0; } @@ -344,7 +344,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_BUpdateUserData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED( void *args ) { struct ISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED_params *params = (struct ISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->SetMasterServerHeartbeatInterval_DEPRECATED( params->iHeartbeatInterval ); return 0; } @@ -352,7 +352,7 @@ NTSTATUS ISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DE NTSTATUS ISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED( void *args ) { struct ISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED_params *params = (struct ISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED_params *)args; - struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer014 *iface = (struct u_ISteamGameServer_SteamGameServer014 *)params->u_iface; iface->ForceMasterServerHeartbeat_DEPRECATED( ); return 0; } diff --git a/lsteamclient/cppISteamGameServer_SteamGameServer015.cpp b/lsteamclient/cppISteamGameServer_SteamGameServer015.cpp index 045fdbfd..79beb43f 100644 --- a/lsteamclient/cppISteamGameServer_SteamGameServer015.cpp +++ b/lsteamclient/cppISteamGameServer_SteamGameServer015.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_InitGameServer( void *args ) { struct ISteamGameServer_SteamGameServer015_InitGameServer_params *params = (struct ISteamGameServer_SteamGameServer015_InitGameServer_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; params->_ret = iface->InitGameServer( params->unIP, params->usGamePort, params->usQueryPort, params->unFlags, params->nGameAppId, params->pchVersionString ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_InitGameServer( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_SetProduct( void *args ) { struct ISteamGameServer_SteamGameServer015_SetProduct_params *params = (struct ISteamGameServer_SteamGameServer015_SetProduct_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->SetProduct( params->pszProduct ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SetProduct( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_SetGameDescription( void *args ) { struct ISteamGameServer_SteamGameServer015_SetGameDescription_params *params = (struct ISteamGameServer_SteamGameServer015_SetGameDescription_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->SetGameDescription( params->pszGameDescription ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SetGameDescription( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_SetModDir( void *args ) { struct ISteamGameServer_SteamGameServer015_SetModDir_params *params = (struct ISteamGameServer_SteamGameServer015_SetModDir_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->SetModDir( params->pszModDir ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SetModDir( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_SetDedicatedServer( void *args ) { struct ISteamGameServer_SteamGameServer015_SetDedicatedServer_params *params = (struct ISteamGameServer_SteamGameServer015_SetDedicatedServer_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->SetDedicatedServer( params->bDedicated ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SetDedicatedServer( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_LogOn( void *args ) { struct ISteamGameServer_SteamGameServer015_LogOn_params *params = (struct ISteamGameServer_SteamGameServer015_LogOn_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->LogOn( params->pszToken ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_LogOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_LogOnAnonymous( void *args ) { struct ISteamGameServer_SteamGameServer015_LogOnAnonymous_params *params = (struct ISteamGameServer_SteamGameServer015_LogOnAnonymous_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->LogOnAnonymous( ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_LogOnAnonymous( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_LogOff( void *args ) { struct ISteamGameServer_SteamGameServer015_LogOff_params *params = (struct ISteamGameServer_SteamGameServer015_LogOff_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->LogOff( ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_LogOff( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_BLoggedOn( void *args ) { struct ISteamGameServer_SteamGameServer015_BLoggedOn_params *params = (struct ISteamGameServer_SteamGameServer015_BLoggedOn_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_BLoggedOn( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_BSecure( void *args ) { struct ISteamGameServer_SteamGameServer015_BSecure_params *params = (struct ISteamGameServer_SteamGameServer015_BSecure_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; params->_ret = iface->BSecure( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_BSecure( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_GetSteamID( void *args ) { struct ISteamGameServer_SteamGameServer015_GetSteamID_params *params = (struct ISteamGameServer_SteamGameServer015_GetSteamID_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_GetSteamID( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_WasRestartRequested( void *args ) { struct ISteamGameServer_SteamGameServer015_WasRestartRequested_params *params = (struct ISteamGameServer_SteamGameServer015_WasRestartRequested_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; params->_ret = iface->WasRestartRequested( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_WasRestartRequested( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_SetMaxPlayerCount( void *args ) { struct ISteamGameServer_SteamGameServer015_SetMaxPlayerCount_params *params = (struct ISteamGameServer_SteamGameServer015_SetMaxPlayerCount_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->SetMaxPlayerCount( params->cPlayersMax ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SetMaxPlayerCount( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_SetBotPlayerCount( void *args ) { struct ISteamGameServer_SteamGameServer015_SetBotPlayerCount_params *params = (struct ISteamGameServer_SteamGameServer015_SetBotPlayerCount_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->SetBotPlayerCount( params->cBotplayers ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SetBotPlayerCount( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_SetServerName( void *args ) { struct ISteamGameServer_SteamGameServer015_SetServerName_params *params = (struct ISteamGameServer_SteamGameServer015_SetServerName_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->SetServerName( params->pszServerName ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SetServerName( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_SetMapName( void *args ) { struct ISteamGameServer_SteamGameServer015_SetMapName_params *params = (struct ISteamGameServer_SteamGameServer015_SetMapName_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->SetMapName( params->pszMapName ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SetMapName( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_SetPasswordProtected( void *args ) { struct ISteamGameServer_SteamGameServer015_SetPasswordProtected_params *params = (struct ISteamGameServer_SteamGameServer015_SetPasswordProtected_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->SetPasswordProtected( params->bPasswordProtected ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SetPasswordProtected( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_SetSpectatorPort( void *args ) { struct ISteamGameServer_SteamGameServer015_SetSpectatorPort_params *params = (struct ISteamGameServer_SteamGameServer015_SetSpectatorPort_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->SetSpectatorPort( params->unSpectatorPort ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SetSpectatorPort( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_SetSpectatorServerName( void *args ) { struct ISteamGameServer_SteamGameServer015_SetSpectatorServerName_params *params = (struct ISteamGameServer_SteamGameServer015_SetSpectatorServerName_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->SetSpectatorServerName( params->pszSpectatorServerName ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SetSpectatorServerName( void *args NTSTATUS ISteamGameServer_SteamGameServer015_ClearAllKeyValues( void *args ) { struct ISteamGameServer_SteamGameServer015_ClearAllKeyValues_params *params = (struct ISteamGameServer_SteamGameServer015_ClearAllKeyValues_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->ClearAllKeyValues( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_ClearAllKeyValues( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_SetKeyValue( void *args ) { struct ISteamGameServer_SteamGameServer015_SetKeyValue_params *params = (struct ISteamGameServer_SteamGameServer015_SetKeyValue_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->SetKeyValue( params->pKey, params->pValue ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SetKeyValue( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_SetGameTags( void *args ) { struct ISteamGameServer_SteamGameServer015_SetGameTags_params *params = (struct ISteamGameServer_SteamGameServer015_SetGameTags_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->SetGameTags( params->pchGameTags ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SetGameTags( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_SetGameData( void *args ) { struct ISteamGameServer_SteamGameServer015_SetGameData_params *params = (struct ISteamGameServer_SteamGameServer015_SetGameData_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->SetGameData( params->pchGameData ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SetGameData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_SetRegion( void *args ) { struct ISteamGameServer_SteamGameServer015_SetRegion_params *params = (struct ISteamGameServer_SteamGameServer015_SetRegion_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->SetRegion( params->pszRegion ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SetRegion( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_SetAdvertiseServerActive( void *args ) { struct ISteamGameServer_SteamGameServer015_SetAdvertiseServerActive_params *params = (struct ISteamGameServer_SteamGameServer015_SetAdvertiseServerActive_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->SetAdvertiseServerActive( params->bActive ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SetAdvertiseServerActive( void *arg NTSTATUS ISteamGameServer_SteamGameServer015_GetAuthSessionTicket( void *args ) { struct ISteamGameServer_SteamGameServer015_GetAuthSessionTicket_params *params = (struct ISteamGameServer_SteamGameServer015_GetAuthSessionTicket_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket, params->pSnid ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_GetAuthSessionTicket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_BeginAuthSession( void *args ) { struct ISteamGameServer_SteamGameServer015_BeginAuthSession_params *params = (struct ISteamGameServer_SteamGameServer015_BeginAuthSession_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_BeginAuthSession( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_EndAuthSession( void *args ) { struct ISteamGameServer_SteamGameServer015_EndAuthSession_params *params = (struct ISteamGameServer_SteamGameServer015_EndAuthSession_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->EndAuthSession( params->steamID ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_EndAuthSession( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_CancelAuthTicket( void *args ) { struct ISteamGameServer_SteamGameServer015_CancelAuthTicket_params *params = (struct ISteamGameServer_SteamGameServer015_CancelAuthTicket_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->CancelAuthTicket( params->hAuthTicket ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_CancelAuthTicket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_UserHasLicenseForApp( void *args ) { struct ISteamGameServer_SteamGameServer015_UserHasLicenseForApp_params *params = (struct ISteamGameServer_SteamGameServer015_UserHasLicenseForApp_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_UserHasLicenseForApp( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_RequestUserGroupStatus( void *args ) { struct ISteamGameServer_SteamGameServer015_RequestUserGroupStatus_params *params = (struct ISteamGameServer_SteamGameServer015_RequestUserGroupStatus_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; params->_ret = iface->RequestUserGroupStatus( params->steamIDUser, params->steamIDGroup ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_RequestUserGroupStatus( void *args NTSTATUS ISteamGameServer_SteamGameServer015_GetGameplayStats( void *args ) { struct ISteamGameServer_SteamGameServer015_GetGameplayStats_params *params = (struct ISteamGameServer_SteamGameServer015_GetGameplayStats_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->GetGameplayStats( ); return 0; } @@ -264,7 +264,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_GetGameplayStats( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_GetServerReputation( void *args ) { struct ISteamGameServer_SteamGameServer015_GetServerReputation_params *params = (struct ISteamGameServer_SteamGameServer015_GetServerReputation_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; params->_ret = iface->GetServerReputation( ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_GetServerReputation( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_GetPublicIP( void *args ) { struct ISteamGameServer_SteamGameServer015_GetPublicIP_params *params = (struct ISteamGameServer_SteamGameServer015_GetPublicIP_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; *params->_ret = iface->GetPublicIP( ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_GetPublicIP( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_HandleIncomingPacket( void *args ) { struct ISteamGameServer_SteamGameServer015_HandleIncomingPacket_params *params = (struct ISteamGameServer_SteamGameServer015_HandleIncomingPacket_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; params->_ret = iface->HandleIncomingPacket( params->pData, params->cbData, params->srcIP, params->srcPort ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_HandleIncomingPacket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_GetNextOutgoingPacket( void *args ) { struct ISteamGameServer_SteamGameServer015_GetNextOutgoingPacket_params *params = (struct ISteamGameServer_SteamGameServer015_GetNextOutgoingPacket_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; params->_ret = iface->GetNextOutgoingPacket( params->pOut, params->cbMaxOut, params->pNetAdr, params->pPort ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_GetNextOutgoingPacket( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_AssociateWithClan( void *args ) { struct ISteamGameServer_SteamGameServer015_AssociateWithClan_params *params = (struct ISteamGameServer_SteamGameServer015_AssociateWithClan_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; params->_ret = iface->AssociateWithClan( params->steamIDClan ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_AssociateWithClan( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility( void *args ) { struct ISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility_params *params = (struct ISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; params->_ret = iface->ComputeNewPlayerCompatibility( params->steamIDNewPlayer ); return 0; } @@ -312,7 +312,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility( void NTSTATUS ISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED( void *args ) { struct ISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED_params *params = (struct ISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; params->_ret = iface->SendUserConnectAndAuthenticate_DEPRECATED( params->unIPClient, params->pvAuthBlob, params->cubAuthBlobSize, params->pSteamIDUser ); return 0; } @@ -320,7 +320,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPR NTSTATUS ISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection( void *args ) { struct ISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection_params *params = (struct ISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; *params->_ret = iface->CreateUnauthenticatedUserConnection( ); return 0; } @@ -328,7 +328,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection NTSTATUS ISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED( void *args ) { struct ISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED_params *params = (struct ISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->SendUserDisconnect_DEPRECATED( params->steamIDUser ); return 0; } @@ -336,7 +336,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED( void NTSTATUS ISteamGameServer_SteamGameServer015_BUpdateUserData( void *args ) { struct ISteamGameServer_SteamGameServer015_BUpdateUserData_params *params = (struct ISteamGameServer_SteamGameServer015_BUpdateUserData_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; params->_ret = iface->BUpdateUserData( params->steamIDUser, params->pchPlayerName, params->uScore ); return 0; } @@ -344,7 +344,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_BUpdateUserData( void *args ) NTSTATUS ISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED( void *args ) { struct ISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED_params *params = (struct ISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->SetMasterServerHeartbeatInterval_DEPRECATED( params->iHeartbeatInterval ); return 0; } @@ -352,7 +352,7 @@ NTSTATUS ISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DE NTSTATUS ISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED( void *args ) { struct ISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED_params *params = (struct ISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED_params *)args; - struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->linux_side; + struct u_ISteamGameServer_SteamGameServer015 *iface = (struct u_ISteamGameServer_SteamGameServer015 *)params->u_iface; iface->ForceMasterServerHeartbeat_DEPRECATED( ); return 0; } diff --git a/lsteamclient/cppISteamGameStats_SteamGameStats001.cpp b/lsteamclient/cppISteamGameStats_SteamGameStats001.cpp index 73568f63..a4f034b8 100644 --- a/lsteamclient/cppISteamGameStats_SteamGameStats001.cpp +++ b/lsteamclient/cppISteamGameStats_SteamGameStats001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamGameStats_SteamGameStats001_GetNewSession( void *args ) { struct ISteamGameStats_SteamGameStats001_GetNewSession_params *params = (struct ISteamGameStats_SteamGameStats001_GetNewSession_params *)args; - struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->linux_side; + struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->u_iface; params->_ret = iface->GetNewSession( params->nAccountType, params->ulAccountID, params->nAppID, params->rtTimeStarted ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamGameStats_SteamGameStats001_GetNewSession( void *args ) NTSTATUS ISteamGameStats_SteamGameStats001_EndSession( void *args ) { struct ISteamGameStats_SteamGameStats001_EndSession_params *params = (struct ISteamGameStats_SteamGameStats001_EndSession_params *)args; - struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->linux_side; + struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->u_iface; params->_ret = iface->EndSession( params->ulSessionID, params->rtTimeEnded, params->nReasonCode ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamGameStats_SteamGameStats001_EndSession( void *args ) NTSTATUS ISteamGameStats_SteamGameStats001_AddSessionAttributeInt( void *args ) { struct ISteamGameStats_SteamGameStats001_AddSessionAttributeInt_params *params = (struct ISteamGameStats_SteamGameStats001_AddSessionAttributeInt_params *)args; - struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->linux_side; + struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->u_iface; params->_ret = iface->AddSessionAttributeInt( params->ulSessionID, params->pstrName, params->nData ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamGameStats_SteamGameStats001_AddSessionAttributeInt( void *args ) NTSTATUS ISteamGameStats_SteamGameStats001_AddSessionAttributeString( void *args ) { struct ISteamGameStats_SteamGameStats001_AddSessionAttributeString_params *params = (struct ISteamGameStats_SteamGameStats001_AddSessionAttributeString_params *)args; - struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->linux_side; + struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->u_iface; params->_ret = iface->AddSessionAttributeString( params->ulSessionID, params->pstrName, params->pstrData ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamGameStats_SteamGameStats001_AddSessionAttributeString( void *args NTSTATUS ISteamGameStats_SteamGameStats001_AddSessionAttributeFloat( void *args ) { struct ISteamGameStats_SteamGameStats001_AddSessionAttributeFloat_params *params = (struct ISteamGameStats_SteamGameStats001_AddSessionAttributeFloat_params *)args; - struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->linux_side; + struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->u_iface; params->_ret = iface->AddSessionAttributeFloat( params->ulSessionID, params->pstrName, params->fData ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamGameStats_SteamGameStats001_AddSessionAttributeFloat( void *args NTSTATUS ISteamGameStats_SteamGameStats001_AddNewRow( void *args ) { struct ISteamGameStats_SteamGameStats001_AddNewRow_params *params = (struct ISteamGameStats_SteamGameStats001_AddNewRow_params *)args; - struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->linux_side; + struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->u_iface; params->_ret = iface->AddNewRow( params->pulRowID, params->ulSessionID, params->pstrTableName ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamGameStats_SteamGameStats001_AddNewRow( void *args ) NTSTATUS ISteamGameStats_SteamGameStats001_CommitRow( void *args ) { struct ISteamGameStats_SteamGameStats001_CommitRow_params *params = (struct ISteamGameStats_SteamGameStats001_CommitRow_params *)args; - struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->linux_side; + struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->u_iface; params->_ret = iface->CommitRow( params->ulRowID ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamGameStats_SteamGameStats001_CommitRow( void *args ) NTSTATUS ISteamGameStats_SteamGameStats001_CommitOutstandingRows( void *args ) { struct ISteamGameStats_SteamGameStats001_CommitOutstandingRows_params *params = (struct ISteamGameStats_SteamGameStats001_CommitOutstandingRows_params *)args; - struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->linux_side; + struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->u_iface; params->_ret = iface->CommitOutstandingRows( params->ulSessionID ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamGameStats_SteamGameStats001_CommitOutstandingRows( void *args ) NTSTATUS ISteamGameStats_SteamGameStats001_AddRowAttributeInt( void *args ) { struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt_params *params = (struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt_params *)args; - struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->linux_side; + struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->u_iface; params->_ret = iface->AddRowAttributeInt( params->ulRowID, params->pstrName, params->nData ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamGameStats_SteamGameStats001_AddRowAttributeInt( void *args ) NTSTATUS ISteamGameStats_SteamGameStats001_AddRowAtributeString( void *args ) { struct ISteamGameStats_SteamGameStats001_AddRowAtributeString_params *params = (struct ISteamGameStats_SteamGameStats001_AddRowAtributeString_params *)args; - struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->linux_side; + struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->u_iface; params->_ret = iface->AddRowAtributeString( params->ulRowID, params->pstrName, params->pstrData ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamGameStats_SteamGameStats001_AddRowAtributeString( void *args ) NTSTATUS ISteamGameStats_SteamGameStats001_AddRowAttributeFloat( void *args ) { struct ISteamGameStats_SteamGameStats001_AddRowAttributeFloat_params *params = (struct ISteamGameStats_SteamGameStats001_AddRowAttributeFloat_params *)args; - struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->linux_side; + struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->u_iface; params->_ret = iface->AddRowAttributeFloat( params->ulRowID, params->pstrName, params->fData ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamGameStats_SteamGameStats001_AddRowAttributeFloat( void *args ) NTSTATUS ISteamGameStats_SteamGameStats001_AddSessionAttributeInt64( void *args ) { struct ISteamGameStats_SteamGameStats001_AddSessionAttributeInt64_params *params = (struct ISteamGameStats_SteamGameStats001_AddSessionAttributeInt64_params *)args; - struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->linux_side; + struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->u_iface; params->_ret = iface->AddSessionAttributeInt64( params->ulSessionID, params->pstrName, params->llData ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamGameStats_SteamGameStats001_AddSessionAttributeInt64( void *args NTSTATUS ISteamGameStats_SteamGameStats001_AddRowAttributeInt64( void *args ) { struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt64_params *params = (struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt64_params *)args; - struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->linux_side; + struct u_ISteamGameStats_SteamGameStats001 *iface = (struct u_ISteamGameStats_SteamGameStats001 *)params->u_iface; params->_ret = iface->AddRowAttributeInt64( params->ulRowID, params->pstrName, params->llData ); return 0; } diff --git a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001.cpp b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001.cpp index 0f3805a6..3d9b1b86 100644 --- a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001.cpp +++ b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; params->_ret = iface->Init( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init( void *ar NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; params->_ret = iface->Shutdown( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; params->_ret = iface->CreateBrowser( params->pchUserAgent, params->pchUserCSS ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser( NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->RemoveBrowser( params->unBrowserHandle ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser( NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 ); iface->LoadURL( params->unBrowserHandle, u_pchURL, params->pchPostData ); steamclient_free_path( u_pchURL ); @@ -50,7 +50,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->SetSize( params->unBrowserHandle, params->unWidth, params->unHeight ); return 0; } @@ -58,7 +58,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->StopLoad( params->unBrowserHandle ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->Reload( params->unBrowserHandle ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload( void * NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->GoBack( params->unBrowserHandle ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack( void * NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->GoForward( params->unBrowserHandle ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->AddHeader( params->unBrowserHandle, params->pchKey, params->pchValue ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->ExecuteJavascript( params->unBrowserHandle, params->pchScript ); return 0; } @@ -106,7 +106,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascr NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->MouseUp( params->unBrowserHandle, params->eMouseButton ); return 0; } @@ -114,7 +114,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->MouseDown( params->unBrowserHandle, params->eMouseButton ); return 0; } @@ -122,7 +122,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->MouseDoubleClick( params->unBrowserHandle, params->eMouseButton ); return 0; } @@ -130,7 +130,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleCli NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->MouseMove( params->unBrowserHandle, params->x, params->y ); return 0; } @@ -138,7 +138,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->MouseWheel( params->unBrowserHandle, params->nDelta ); return 0; } @@ -146,7 +146,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel( vo NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyDown( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers ); return 0; @@ -155,7 +155,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyUp( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers ); return 0; @@ -164,7 +164,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp( void *a NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->KeyChar( params->unBrowserHandle, params->cUnicodeChar, params->eHTMLKeyModifiers ); return 0; } @@ -172,7 +172,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->SetHorizontalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); return 0; } @@ -180,7 +180,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalS NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->SetVerticalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); return 0; } @@ -188,7 +188,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScr NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->SetKeyFocus( params->unBrowserHandle, params->bHasKeyFocus ); return 0; } @@ -196,7 +196,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus( v NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->ViewSource( params->unBrowserHandle ); return 0; } @@ -204,7 +204,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource( vo NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->CopyToClipboard( params->unBrowserHandle ); return 0; } @@ -212,7 +212,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboar NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->PasteFromClipboard( params->unBrowserHandle ); return 0; } @@ -220,7 +220,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipb NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->Find( params->unBrowserHandle, params->pchSearchStr, params->bCurrentlyInFind, params->bReverse ); return 0; } @@ -228,7 +228,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find( void *ar NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->StopFind( params->unBrowserHandle ); return 0; } @@ -236,7 +236,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->GetLinkAtPosition( params->unBrowserHandle, params->x, params->y ); return 0; } @@ -244,7 +244,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosit NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->AllowStartRequest( params->unBrowserHandle, params->bAllowed ); return 0; } @@ -252,7 +252,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; iface->JSDialogResponse( params->unBrowserHandle, params->bResult ); return 0; } @@ -260,7 +260,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogRespon NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001 *)params->u_iface; const char **u_pchSelectedFiles = steamclient_dos_to_unix_path_array( params->pchSelectedFiles ); iface->FileLoadDialogResponse( params->unBrowserHandle, u_pchSelectedFiles ); steamclient_free_path_array( u_pchSelectedFiles ); diff --git a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002.cpp b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002.cpp index cb0ce4ad..c9e59ad6 100644 --- a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002.cpp +++ b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; params->_ret = iface->Init( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init( void *ar NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; params->_ret = iface->Shutdown( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; params->_ret = iface->CreateBrowser( params->pchUserAgent, params->pchUserCSS ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser( NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->RemoveBrowser( params->unBrowserHandle ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser( NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 ); iface->LoadURL( params->unBrowserHandle, u_pchURL, params->pchPostData ); steamclient_free_path( u_pchURL ); @@ -50,7 +50,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->SetSize( params->unBrowserHandle, params->unWidth, params->unHeight ); return 0; } @@ -58,7 +58,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->StopLoad( params->unBrowserHandle ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->Reload( params->unBrowserHandle ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload( void * NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->GoBack( params->unBrowserHandle ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack( void * NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->GoForward( params->unBrowserHandle ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->AddHeader( params->unBrowserHandle, params->pchKey, params->pchValue ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->ExecuteJavascript( params->unBrowserHandle, params->pchScript ); return 0; } @@ -106,7 +106,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascr NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->MouseUp( params->unBrowserHandle, params->eMouseButton ); return 0; } @@ -114,7 +114,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->MouseDown( params->unBrowserHandle, params->eMouseButton ); return 0; } @@ -122,7 +122,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->MouseDoubleClick( params->unBrowserHandle, params->eMouseButton ); return 0; } @@ -130,7 +130,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleCli NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->MouseMove( params->unBrowserHandle, params->x, params->y ); return 0; } @@ -138,7 +138,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->MouseWheel( params->unBrowserHandle, params->nDelta ); return 0; } @@ -146,7 +146,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel( vo NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyDown( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers ); return 0; @@ -155,7 +155,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyUp( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers ); return 0; @@ -164,7 +164,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp( void *a NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->KeyChar( params->unBrowserHandle, params->cUnicodeChar, params->eHTMLKeyModifiers ); return 0; } @@ -172,7 +172,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->SetHorizontalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); return 0; } @@ -180,7 +180,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalS NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->SetVerticalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); return 0; } @@ -188,7 +188,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScr NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->SetKeyFocus( params->unBrowserHandle, params->bHasKeyFocus ); return 0; } @@ -196,7 +196,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus( v NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->ViewSource( params->unBrowserHandle ); return 0; } @@ -204,7 +204,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource( vo NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->CopyToClipboard( params->unBrowserHandle ); return 0; } @@ -212,7 +212,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboar NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->PasteFromClipboard( params->unBrowserHandle ); return 0; } @@ -220,7 +220,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipb NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->Find( params->unBrowserHandle, params->pchSearchStr, params->bCurrentlyInFind, params->bReverse ); return 0; } @@ -228,7 +228,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find( void *ar NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->StopFind( params->unBrowserHandle ); return 0; } @@ -236,7 +236,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->GetLinkAtPosition( params->unBrowserHandle, params->x, params->y ); return 0; } @@ -244,7 +244,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosit NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->SetCookie( params->pchHostname, params->pchKey, params->pchValue, params->pchPath, params->nExpires, params->bSecure, params->bHTTPOnly ); return 0; } @@ -252,7 +252,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->SetPageScaleFactor( params->unBrowserHandle, params->flZoom, params->nPointX, params->nPointY ); return 0; } @@ -260,7 +260,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFa NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->AllowStartRequest( params->unBrowserHandle, params->bAllowed ); return 0; } @@ -268,7 +268,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; iface->JSDialogResponse( params->unBrowserHandle, params->bResult ); return 0; } @@ -276,7 +276,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogRespon NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002 *)params->u_iface; const char **u_pchSelectedFiles = steamclient_dos_to_unix_path_array( params->pchSelectedFiles ); iface->FileLoadDialogResponse( params->unBrowserHandle, u_pchSelectedFiles ); steamclient_free_path_array( u_pchSelectedFiles ); diff --git a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003.cpp b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003.cpp index aa7f66d0..4fe593df 100644 --- a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003.cpp +++ b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; params->_ret = iface->Init( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init( void *ar NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; params->_ret = iface->Shutdown( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; params->_ret = iface->CreateBrowser( params->pchUserAgent, params->pchUserCSS ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser( NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->RemoveBrowser( params->unBrowserHandle ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser( NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 ); iface->LoadURL( params->unBrowserHandle, u_pchURL, params->pchPostData ); steamclient_free_path( u_pchURL ); @@ -50,7 +50,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->SetSize( params->unBrowserHandle, params->unWidth, params->unHeight ); return 0; } @@ -58,7 +58,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->StopLoad( params->unBrowserHandle ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->Reload( params->unBrowserHandle ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload( void * NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->GoBack( params->unBrowserHandle ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack( void * NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->GoForward( params->unBrowserHandle ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->AddHeader( params->unBrowserHandle, params->pchKey, params->pchValue ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->ExecuteJavascript( params->unBrowserHandle, params->pchScript ); return 0; } @@ -106,7 +106,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascr NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->MouseUp( params->unBrowserHandle, params->eMouseButton ); return 0; } @@ -114,7 +114,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->MouseDown( params->unBrowserHandle, params->eMouseButton ); return 0; } @@ -122,7 +122,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->MouseDoubleClick( params->unBrowserHandle, params->eMouseButton ); return 0; } @@ -130,7 +130,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleCli NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->MouseMove( params->unBrowserHandle, params->x, params->y ); return 0; } @@ -138,7 +138,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->MouseWheel( params->unBrowserHandle, params->nDelta ); return 0; } @@ -146,7 +146,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel( vo NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyDown( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers ); return 0; @@ -155,7 +155,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyUp( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers ); return 0; @@ -164,7 +164,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp( void *a NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->KeyChar( params->unBrowserHandle, params->cUnicodeChar, params->eHTMLKeyModifiers ); return 0; } @@ -172,7 +172,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->SetHorizontalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); return 0; } @@ -180,7 +180,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalS NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->SetVerticalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); return 0; } @@ -188,7 +188,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScr NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->SetKeyFocus( params->unBrowserHandle, params->bHasKeyFocus ); return 0; } @@ -196,7 +196,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus( v NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->ViewSource( params->unBrowserHandle ); return 0; } @@ -204,7 +204,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource( vo NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->CopyToClipboard( params->unBrowserHandle ); return 0; } @@ -212,7 +212,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboar NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->PasteFromClipboard( params->unBrowserHandle ); return 0; } @@ -220,7 +220,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipb NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->Find( params->unBrowserHandle, params->pchSearchStr, params->bCurrentlyInFind, params->bReverse ); return 0; } @@ -228,7 +228,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find( void *ar NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->StopFind( params->unBrowserHandle ); return 0; } @@ -236,7 +236,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->GetLinkAtPosition( params->unBrowserHandle, params->x, params->y ); return 0; } @@ -244,7 +244,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosit NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->SetCookie( params->pchHostname, params->pchKey, params->pchValue, params->pchPath, params->nExpires, params->bSecure, params->bHTTPOnly ); return 0; } @@ -252,7 +252,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->SetPageScaleFactor( params->unBrowserHandle, params->flZoom, params->nPointX, params->nPointY ); return 0; } @@ -260,7 +260,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFa NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->SetBackgroundMode( params->unBrowserHandle, params->bBackgroundMode ); return 0; } @@ -268,7 +268,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundM NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->AllowStartRequest( params->unBrowserHandle, params->bAllowed ); return 0; } @@ -276,7 +276,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; iface->JSDialogResponse( params->unBrowserHandle, params->bResult ); return 0; } @@ -284,7 +284,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogRespon NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003 *)params->u_iface; const char **u_pchSelectedFiles = steamclient_dos_to_unix_path_array( params->pchSelectedFiles ); iface->FileLoadDialogResponse( params->unBrowserHandle, u_pchSelectedFiles ); steamclient_free_path_array( u_pchSelectedFiles ); diff --git a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004.cpp b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004.cpp index 7633da29..1894addf 100644 --- a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004.cpp +++ b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; params->_ret = iface->Init( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init( void *ar NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; params->_ret = iface->Shutdown( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; params->_ret = iface->CreateBrowser( params->pchUserAgent, params->pchUserCSS ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser( NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->RemoveBrowser( params->unBrowserHandle ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser( NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 ); iface->LoadURL( params->unBrowserHandle, u_pchURL, params->pchPostData ); steamclient_free_path( u_pchURL ); @@ -50,7 +50,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->SetSize( params->unBrowserHandle, params->unWidth, params->unHeight ); return 0; } @@ -58,7 +58,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->StopLoad( params->unBrowserHandle ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->Reload( params->unBrowserHandle ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload( void * NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->GoBack( params->unBrowserHandle ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack( void * NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->GoForward( params->unBrowserHandle ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->AddHeader( params->unBrowserHandle, params->pchKey, params->pchValue ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->ExecuteJavascript( params->unBrowserHandle, params->pchScript ); return 0; } @@ -106,7 +106,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascr NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->MouseUp( params->unBrowserHandle, params->eMouseButton ); return 0; } @@ -114,7 +114,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->MouseDown( params->unBrowserHandle, params->eMouseButton ); return 0; } @@ -122,7 +122,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->MouseDoubleClick( params->unBrowserHandle, params->eMouseButton ); return 0; } @@ -130,7 +130,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleCli NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->MouseMove( params->unBrowserHandle, params->x, params->y ); return 0; } @@ -138,7 +138,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->MouseWheel( params->unBrowserHandle, params->nDelta ); return 0; } @@ -146,7 +146,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel( vo NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyDown( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers ); return 0; @@ -155,7 +155,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyUp( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers ); return 0; @@ -164,7 +164,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp( void *a NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->KeyChar( params->unBrowserHandle, params->cUnicodeChar, params->eHTMLKeyModifiers ); return 0; } @@ -172,7 +172,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->SetHorizontalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); return 0; } @@ -180,7 +180,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalS NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->SetVerticalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); return 0; } @@ -188,7 +188,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScr NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->SetKeyFocus( params->unBrowserHandle, params->bHasKeyFocus ); return 0; } @@ -196,7 +196,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus( v NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->ViewSource( params->unBrowserHandle ); return 0; } @@ -204,7 +204,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource( vo NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->CopyToClipboard( params->unBrowserHandle ); return 0; } @@ -212,7 +212,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboar NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->PasteFromClipboard( params->unBrowserHandle ); return 0; } @@ -220,7 +220,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipb NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->Find( params->unBrowserHandle, params->pchSearchStr, params->bCurrentlyInFind, params->bReverse ); return 0; } @@ -228,7 +228,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find( void *ar NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->StopFind( params->unBrowserHandle ); return 0; } @@ -236,7 +236,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->GetLinkAtPosition( params->unBrowserHandle, params->x, params->y ); return 0; } @@ -244,7 +244,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosit NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->SetCookie( params->pchHostname, params->pchKey, params->pchValue, params->pchPath, params->nExpires, params->bSecure, params->bHTTPOnly ); return 0; } @@ -252,7 +252,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->SetPageScaleFactor( params->unBrowserHandle, params->flZoom, params->nPointX, params->nPointY ); return 0; } @@ -260,7 +260,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFa NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->SetBackgroundMode( params->unBrowserHandle, params->bBackgroundMode ); return 0; } @@ -268,7 +268,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundM NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->SetDPIScalingFactor( params->unBrowserHandle, params->flDPIScaling ); return 0; } @@ -276,7 +276,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingF NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->AllowStartRequest( params->unBrowserHandle, params->bAllowed ); return 0; } @@ -284,7 +284,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; iface->JSDialogResponse( params->unBrowserHandle, params->bResult ); return 0; } @@ -292,7 +292,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogRespon NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004 *)params->u_iface; const char **u_pchSelectedFiles = steamclient_dos_to_unix_path_array( params->pchSelectedFiles ); iface->FileLoadDialogResponse( params->unBrowserHandle, u_pchSelectedFiles ); steamclient_free_path_array( u_pchSelectedFiles ); diff --git a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005.cpp b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005.cpp index 8a412cde..ac1ac1b9 100644 --- a/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005.cpp +++ b/lsteamclient/cppISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; params->_ret = iface->Init( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init( void *ar NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; params->_ret = iface->Shutdown( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; params->_ret = iface->CreateBrowser( params->pchUserAgent, params->pchUserCSS ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser( NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->RemoveBrowser( params->unBrowserHandle ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser( NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 ); iface->LoadURL( params->unBrowserHandle, u_pchURL, params->pchPostData ); steamclient_free_path( u_pchURL ); @@ -50,7 +50,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->SetSize( params->unBrowserHandle, params->unWidth, params->unHeight ); return 0; } @@ -58,7 +58,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->StopLoad( params->unBrowserHandle ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->Reload( params->unBrowserHandle ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload( void * NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->GoBack( params->unBrowserHandle ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack( void * NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->GoForward( params->unBrowserHandle ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->AddHeader( params->unBrowserHandle, params->pchKey, params->pchValue ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->ExecuteJavascript( params->unBrowserHandle, params->pchScript ); return 0; } @@ -106,7 +106,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascr NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->MouseUp( params->unBrowserHandle, params->eMouseButton ); return 0; } @@ -114,7 +114,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->MouseDown( params->unBrowserHandle, params->eMouseButton ); return 0; } @@ -122,7 +122,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->MouseDoubleClick( params->unBrowserHandle, params->eMouseButton ); return 0; } @@ -130,7 +130,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleCli NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->MouseMove( params->unBrowserHandle, params->x, params->y ); return 0; } @@ -138,7 +138,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->MouseWheel( params->unBrowserHandle, params->nDelta ); return 0; } @@ -146,7 +146,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel( vo NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyDown( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers, params->bIsSystemKey ); return 0; @@ -155,7 +155,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; uint32_t u_nNativeKeyCode = manual_convert_nNativeKeyCode( params->nNativeKeyCode ); iface->KeyUp( params->unBrowserHandle, u_nNativeKeyCode, params->eHTMLKeyModifiers ); return 0; @@ -164,7 +164,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp( void *a NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->KeyChar( params->unBrowserHandle, params->cUnicodeChar, params->eHTMLKeyModifiers ); return 0; } @@ -172,7 +172,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->SetHorizontalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); return 0; } @@ -180,7 +180,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalS NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->SetVerticalScroll( params->unBrowserHandle, params->nAbsolutePixelScroll ); return 0; } @@ -188,7 +188,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScr NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->SetKeyFocus( params->unBrowserHandle, params->bHasKeyFocus ); return 0; } @@ -196,7 +196,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus( v NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->ViewSource( params->unBrowserHandle ); return 0; } @@ -204,7 +204,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource( vo NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->CopyToClipboard( params->unBrowserHandle ); return 0; } @@ -212,7 +212,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboar NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->PasteFromClipboard( params->unBrowserHandle ); return 0; } @@ -220,7 +220,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipb NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->Find( params->unBrowserHandle, params->pchSearchStr, params->bCurrentlyInFind, params->bReverse ); return 0; } @@ -228,7 +228,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find( void *ar NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->StopFind( params->unBrowserHandle ); return 0; } @@ -236,7 +236,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind( void NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->GetLinkAtPosition( params->unBrowserHandle, params->x, params->y ); return 0; } @@ -244,7 +244,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosit NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->SetCookie( params->pchHostname, params->pchKey, params->pchValue, params->pchPath, params->nExpires, params->bSecure, params->bHTTPOnly ); return 0; } @@ -252,7 +252,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie( voi NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->SetPageScaleFactor( params->unBrowserHandle, params->flZoom, params->nPointX, params->nPointY ); return 0; } @@ -260,7 +260,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFa NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->SetBackgroundMode( params->unBrowserHandle, params->bBackgroundMode ); return 0; } @@ -268,7 +268,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundM NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->SetDPIScalingFactor( params->unBrowserHandle, params->flDPIScaling ); return 0; } @@ -276,7 +276,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingF NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->OpenDeveloperTools( params->unBrowserHandle ); return 0; } @@ -284,7 +284,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperT NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->AllowStartRequest( params->unBrowserHandle, params->bAllowed ); return 0; } @@ -292,7 +292,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; iface->JSDialogResponse( params->unBrowserHandle, params->bResult ); return 0; } @@ -300,7 +300,7 @@ NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogRespon NTSTATUS ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse( void *args ) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse_params *params = (struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse_params *)args; - struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->linux_side; + struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *iface = (struct u_ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005 *)params->u_iface; const char **u_pchSelectedFiles = steamclient_dos_to_unix_path_array( params->pchSelectedFiles ); iface->FileLoadDialogResponse( params->unBrowserHandle, u_pchSelectedFiles ); steamclient_free_path_array( u_pchSelectedFiles ); diff --git a/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001.cpp index a48bb4b8..5dffd84b 100644 --- a/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->CreateHTTPRequest( params->eHTTPRequestMethod, params->pchAbsoluteURL ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest( void *args NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetHTTPRequestContextValue( params->hRequest, params->ulContextValue ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue( v NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetHTTPRequestNetworkActivityTimeout( params->hRequest, params->unTimeoutSeconds ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivity NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetHTTPRequestHeaderValue( params->hRequest, params->pchHeaderName, params->pchHeaderValue ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue( vo NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetHTTPRequestGetOrPostParameter( params->hRequest, params->pchParamName, params->pchParamValue ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParame NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SendHTTPRequest( params->hRequest, params->pCallHandle ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest( void *args ) NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->DeferHTTPRequest( params->hRequest ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest( void *args NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->PrioritizeHTTPRequest( params->hRequest ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest( void * NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetHTTPResponseHeaderSize( params->hRequest, params->pchHeaderName, params->unResponseHeaderSize ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize( vo NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetHTTPResponseHeaderValue( params->hRequest, params->pchHeaderName, params->pHeaderValueBuffer, params->unBufferSize ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue( v NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetHTTPResponseBodySize( params->hRequest, params->unBodySize ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize( void NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetHTTPResponseBodyData( params->hRequest, params->pBodyDataBuffer, params->unBufferSize ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData( void NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->ReleaseHTTPRequest( params->hRequest ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest( void *arg NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetHTTPDownloadProgressPct( params->hRequest, params->pflPercentOut ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct( v NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetHTTPRequestRawPostBody( params->hRequest, params->pchContentType, params->pubBody, params->unBodyLen ); return 0; } diff --git a/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002.cpp b/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002.cpp index e8823e8a..15e2d59d 100644 --- a/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002.cpp +++ b/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->CreateHTTPRequest( params->eHTTPRequestMethod, params->pchAbsoluteURL ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest( void *args NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetHTTPRequestContextValue( params->hRequest, params->ulContextValue ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue( v NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetHTTPRequestNetworkActivityTimeout( params->hRequest, params->unTimeoutSeconds ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivity NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetHTTPRequestHeaderValue( params->hRequest, params->pchHeaderName, params->pchHeaderValue ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue( vo NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetHTTPRequestGetOrPostParameter( params->hRequest, params->pchParamName, params->pchParamValue ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParame NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SendHTTPRequest( params->hRequest, params->pCallHandle ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest( void *args ) NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SendHTTPRequestAndStreamResponse( params->hRequest, params->pCallHandle ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamRespo NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->DeferHTTPRequest( params->hRequest ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest( void *args NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->PrioritizeHTTPRequest( params->hRequest ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest( void * NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetHTTPResponseHeaderSize( params->hRequest, params->pchHeaderName, params->unResponseHeaderSize ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize( vo NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetHTTPResponseHeaderValue( params->hRequest, params->pchHeaderName, params->pHeaderValueBuffer, params->unBufferSize ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue( v NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetHTTPResponseBodySize( params->hRequest, params->unBodySize ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize( void NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetHTTPResponseBodyData( params->hRequest, params->pBodyDataBuffer, params->unBufferSize ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData( void NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetHTTPStreamingResponseBodyData( params->hRequest, params->cOffset, params->pBodyDataBuffer, params->unBufferSize ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyD NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->ReleaseHTTPRequest( params->hRequest ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest( void *arg NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetHTTPDownloadProgressPct( params->hRequest, params->pflPercentOut ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct( v NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetHTTPRequestRawPostBody( params->hRequest, params->pchContentType, params->pubBody, params->unBodyLen ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody( vo NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->CreateCookieContainer( params->bAllowResponsesToModify ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer( void * NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->ReleaseCookieContainer( params->hCookieContainer ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer( void NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetCookie( params->hCookieContainer, params->pchHost, params->pchUrl, params->pchCookie ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie( void *args ) NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetHTTPRequestCookieContainer( params->hRequest, params->hCookieContainer ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetHTTPRequestUserAgentInfo( params->hRequest, params->pchUserAgentInfo ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo( NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetHTTPRequestRequiresVerifiedCertificate( params->hRequest, params->bRequireVerifiedCertificate ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifie NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetHTTPRequestAbsoluteTimeoutMS( params->hRequest, params->unMilliseconds ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeout NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetHTTPRequestWasTimedOut( params->hRequest, params->pbWasTimedOut ); return 0; } diff --git a/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003.cpp b/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003.cpp index 286c0ed6..003b8cd0 100644 --- a/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003.cpp +++ b/lsteamclient/cppISteamHTTP_STEAMHTTP_INTERFACE_VERSION003.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->CreateHTTPRequest( params->eHTTPRequestMethod, params->pchAbsoluteURL ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest( void *args NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetHTTPRequestContextValue( params->hRequest, params->ulContextValue ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue( v NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetHTTPRequestNetworkActivityTimeout( params->hRequest, params->unTimeoutSeconds ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivity NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetHTTPRequestHeaderValue( params->hRequest, params->pchHeaderName, params->pchHeaderValue ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue( vo NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetHTTPRequestGetOrPostParameter( params->hRequest, params->pchParamName, params->pchParamValue ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParame NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SendHTTPRequest( params->hRequest, params->pCallHandle ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest( void *args ) NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SendHTTPRequestAndStreamResponse( params->hRequest, params->pCallHandle ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamRespo NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->DeferHTTPRequest( params->hRequest ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest( void *args NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->PrioritizeHTTPRequest( params->hRequest ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest( void * NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetHTTPResponseHeaderSize( params->hRequest, params->pchHeaderName, params->unResponseHeaderSize ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize( vo NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetHTTPResponseHeaderValue( params->hRequest, params->pchHeaderName, params->pHeaderValueBuffer, params->unBufferSize ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue( v NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetHTTPResponseBodySize( params->hRequest, params->unBodySize ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize( void NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetHTTPResponseBodyData( params->hRequest, params->pBodyDataBuffer, params->unBufferSize ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData( void NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetHTTPStreamingResponseBodyData( params->hRequest, params->cOffset, params->pBodyDataBuffer, params->unBufferSize ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyD NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->ReleaseHTTPRequest( params->hRequest ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest( void *arg NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetHTTPDownloadProgressPct( params->hRequest, params->pflPercentOut ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct( v NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetHTTPRequestRawPostBody( params->hRequest, params->pchContentType, params->pubBody, params->unBodyLen ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody( vo NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->CreateCookieContainer( params->bAllowResponsesToModify ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer( void * NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->ReleaseCookieContainer( params->hCookieContainer ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer( void NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetCookie( params->hCookieContainer, params->pchHost, params->pchUrl, params->pchCookie ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie( void *args ) NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetHTTPRequestCookieContainer( params->hRequest, params->hCookieContainer ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetHTTPRequestUserAgentInfo( params->hRequest, params->pchUserAgentInfo ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo( NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetHTTPRequestRequiresVerifiedCertificate( params->hRequest, params->bRequireVerifiedCertificate ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifie NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetHTTPRequestAbsoluteTimeoutMS( params->hRequest, params->unMilliseconds ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeout NTSTATUS ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut( void *args ) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut_params *params = (struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut_params *)args; - struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *iface = (struct u_ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetHTTPRequestWasTimedOut( params->hRequest, params->pbWasTimedOut ); return 0; } diff --git a/lsteamclient/cppISteamInput_SteamInput001.cpp b/lsteamclient/cppISteamInput_SteamInput001.cpp index d406ad0d..40609401 100644 --- a/lsteamclient/cppISteamInput_SteamInput001.cpp +++ b/lsteamclient/cppISteamInput_SteamInput001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamInput_SteamInput001_Init( void *args ) { struct ISteamInput_SteamInput001_Init_params *params = (struct ISteamInput_SteamInput001_Init_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->Init( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamInput_SteamInput001_Init( void *args ) NTSTATUS ISteamInput_SteamInput001_Shutdown( void *args ) { struct ISteamInput_SteamInput001_Shutdown_params *params = (struct ISteamInput_SteamInput001_Shutdown_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->Shutdown( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamInput_SteamInput001_Shutdown( void *args ) NTSTATUS ISteamInput_SteamInput001_RunFrame( void *args ) { struct ISteamInput_SteamInput001_RunFrame_params *params = (struct ISteamInput_SteamInput001_RunFrame_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamInput_SteamInput001_RunFrame( void *args ) NTSTATUS ISteamInput_SteamInput001_GetConnectedControllers( void *args ) { struct ISteamInput_SteamInput001_GetConnectedControllers_params *params = (struct ISteamInput_SteamInput001_GetConnectedControllers_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->GetConnectedControllers( params->handlesOut ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamInput_SteamInput001_GetConnectedControllers( void *args ) NTSTATUS ISteamInput_SteamInput001_GetActionSetHandle( void *args ) { struct ISteamInput_SteamInput001_GetActionSetHandle_params *params = (struct ISteamInput_SteamInput001_GetActionSetHandle_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamInput_SteamInput001_GetActionSetHandle( void *args ) NTSTATUS ISteamInput_SteamInput001_ActivateActionSet( void *args ) { struct ISteamInput_SteamInput001_ActivateActionSet_params *params = (struct ISteamInput_SteamInput001_ActivateActionSet_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; iface->ActivateActionSet( params->inputHandle, params->actionSetHandle ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamInput_SteamInput001_ActivateActionSet( void *args ) NTSTATUS ISteamInput_SteamInput001_GetCurrentActionSet( void *args ) { struct ISteamInput_SteamInput001_GetCurrentActionSet_params *params = (struct ISteamInput_SteamInput001_GetCurrentActionSet_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->GetCurrentActionSet( params->inputHandle ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamInput_SteamInput001_GetCurrentActionSet( void *args ) NTSTATUS ISteamInput_SteamInput001_ActivateActionSetLayer( void *args ) { struct ISteamInput_SteamInput001_ActivateActionSetLayer_params *params = (struct ISteamInput_SteamInput001_ActivateActionSetLayer_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; iface->ActivateActionSetLayer( params->inputHandle, params->actionSetLayerHandle ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamInput_SteamInput001_ActivateActionSetLayer( void *args ) NTSTATUS ISteamInput_SteamInput001_DeactivateActionSetLayer( void *args ) { struct ISteamInput_SteamInput001_DeactivateActionSetLayer_params *params = (struct ISteamInput_SteamInput001_DeactivateActionSetLayer_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; iface->DeactivateActionSetLayer( params->inputHandle, params->actionSetLayerHandle ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamInput_SteamInput001_DeactivateActionSetLayer( void *args ) NTSTATUS ISteamInput_SteamInput001_DeactivateAllActionSetLayers( void *args ) { struct ISteamInput_SteamInput001_DeactivateAllActionSetLayers_params *params = (struct ISteamInput_SteamInput001_DeactivateAllActionSetLayers_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; iface->DeactivateAllActionSetLayers( params->inputHandle ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamInput_SteamInput001_DeactivateAllActionSetLayers( void *args ) NTSTATUS ISteamInput_SteamInput001_GetActiveActionSetLayers( void *args ) { struct ISteamInput_SteamInput001_GetActiveActionSetLayers_params *params = (struct ISteamInput_SteamInput001_GetActiveActionSetLayers_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->GetActiveActionSetLayers( params->inputHandle, params->handlesOut ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamInput_SteamInput001_GetActiveActionSetLayers( void *args ) NTSTATUS ISteamInput_SteamInput001_GetDigitalActionHandle( void *args ) { struct ISteamInput_SteamInput001_GetDigitalActionHandle_params *params = (struct ISteamInput_SteamInput001_GetDigitalActionHandle_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamInput_SteamInput001_GetDigitalActionHandle( void *args ) NTSTATUS ISteamInput_SteamInput001_GetDigitalActionData( void *args ) { struct ISteamInput_SteamInput001_GetDigitalActionData_params *params = (struct ISteamInput_SteamInput001_GetDigitalActionData_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; *params->_ret = iface->GetDigitalActionData( params->inputHandle, params->digitalActionHandle ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamInput_SteamInput001_GetDigitalActionData( void *args ) NTSTATUS ISteamInput_SteamInput001_GetDigitalActionOrigins( void *args ) { struct ISteamInput_SteamInput001_GetDigitalActionOrigins_params *params = (struct ISteamInput_SteamInput001_GetDigitalActionOrigins_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->GetDigitalActionOrigins( params->inputHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamInput_SteamInput001_GetDigitalActionOrigins( void *args ) NTSTATUS ISteamInput_SteamInput001_GetAnalogActionHandle( void *args ) { struct ISteamInput_SteamInput001_GetAnalogActionHandle_params *params = (struct ISteamInput_SteamInput001_GetAnalogActionHandle_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamInput_SteamInput001_GetAnalogActionHandle( void *args ) NTSTATUS ISteamInput_SteamInput001_GetAnalogActionData( void *args ) { struct ISteamInput_SteamInput001_GetAnalogActionData_params *params = (struct ISteamInput_SteamInput001_GetAnalogActionData_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; *params->_ret = iface->GetAnalogActionData( params->inputHandle, params->analogActionHandle ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamInput_SteamInput001_GetAnalogActionData( void *args ) NTSTATUS ISteamInput_SteamInput001_GetAnalogActionOrigins( void *args ) { struct ISteamInput_SteamInput001_GetAnalogActionOrigins_params *params = (struct ISteamInput_SteamInput001_GetAnalogActionOrigins_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->GetAnalogActionOrigins( params->inputHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamInput_SteamInput001_GetAnalogActionOrigins( void *args ) NTSTATUS ISteamInput_SteamInput001_GetStringForActionOrigin( void *args ) { struct ISteamInput_SteamInput001_GetStringForActionOrigin_params *params = (struct ISteamInput_SteamInput001_GetStringForActionOrigin_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->GetStringForActionOrigin( params->eOrigin ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamInput_SteamInput001_GetStringForActionOrigin( void *args ) NTSTATUS ISteamInput_SteamInput001_StopAnalogActionMomentum( void *args ) { struct ISteamInput_SteamInput001_StopAnalogActionMomentum_params *params = (struct ISteamInput_SteamInput001_StopAnalogActionMomentum_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; iface->StopAnalogActionMomentum( params->inputHandle, params->eAction ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamInput_SteamInput001_StopAnalogActionMomentum( void *args ) NTSTATUS ISteamInput_SteamInput001_GetMotionData( void *args ) { struct ISteamInput_SteamInput001_GetMotionData_params *params = (struct ISteamInput_SteamInput001_GetMotionData_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; *params->_ret = iface->GetMotionData( params->inputHandle ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamInput_SteamInput001_GetMotionData( void *args ) NTSTATUS ISteamInput_SteamInput001_TriggerVibration( void *args ) { struct ISteamInput_SteamInput001_TriggerVibration_params *params = (struct ISteamInput_SteamInput001_TriggerVibration_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; iface->TriggerVibration( params->inputHandle, params->usLeftSpeed, params->usRightSpeed ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamInput_SteamInput001_TriggerVibration( void *args ) NTSTATUS ISteamInput_SteamInput001_SetLEDColor( void *args ) { struct ISteamInput_SteamInput001_SetLEDColor_params *params = (struct ISteamInput_SteamInput001_SetLEDColor_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; iface->SetLEDColor( params->inputHandle, params->nColorR, params->nColorG, params->nColorB, params->nFlags ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamInput_SteamInput001_SetLEDColor( void *args ) NTSTATUS ISteamInput_SteamInput001_TriggerHapticPulse( void *args ) { struct ISteamInput_SteamInput001_TriggerHapticPulse_params *params = (struct ISteamInput_SteamInput001_TriggerHapticPulse_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; iface->TriggerHapticPulse( params->inputHandle, params->eTargetPad, params->usDurationMicroSec ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamInput_SteamInput001_TriggerHapticPulse( void *args ) NTSTATUS ISteamInput_SteamInput001_TriggerRepeatedHapticPulse( void *args ) { struct ISteamInput_SteamInput001_TriggerRepeatedHapticPulse_params *params = (struct ISteamInput_SteamInput001_TriggerRepeatedHapticPulse_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; iface->TriggerRepeatedHapticPulse( params->inputHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamInput_SteamInput001_TriggerRepeatedHapticPulse( void *args ) NTSTATUS ISteamInput_SteamInput001_ShowBindingPanel( void *args ) { struct ISteamInput_SteamInput001_ShowBindingPanel_params *params = (struct ISteamInput_SteamInput001_ShowBindingPanel_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->ShowBindingPanel( params->inputHandle ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamInput_SteamInput001_ShowBindingPanel( void *args ) NTSTATUS ISteamInput_SteamInput001_GetInputTypeForHandle( void *args ) { struct ISteamInput_SteamInput001_GetInputTypeForHandle_params *params = (struct ISteamInput_SteamInput001_GetInputTypeForHandle_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->GetInputTypeForHandle( params->inputHandle ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamInput_SteamInput001_GetInputTypeForHandle( void *args ) NTSTATUS ISteamInput_SteamInput001_GetControllerForGamepadIndex( void *args ) { struct ISteamInput_SteamInput001_GetControllerForGamepadIndex_params *params = (struct ISteamInput_SteamInput001_GetControllerForGamepadIndex_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->GetControllerForGamepadIndex( params->nIndex ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamInput_SteamInput001_GetControllerForGamepadIndex( void *args ) NTSTATUS ISteamInput_SteamInput001_GetGamepadIndexForController( void *args ) { struct ISteamInput_SteamInput001_GetGamepadIndexForController_params *params = (struct ISteamInput_SteamInput001_GetGamepadIndexForController_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->GetGamepadIndexForController( params->ulinputHandle ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamInput_SteamInput001_GetGamepadIndexForController( void *args ) NTSTATUS ISteamInput_SteamInput001_GetStringForXboxOrigin( void *args ) { struct ISteamInput_SteamInput001_GetStringForXboxOrigin_params *params = (struct ISteamInput_SteamInput001_GetStringForXboxOrigin_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->GetStringForXboxOrigin( params->eOrigin ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamInput_SteamInput001_GetStringForXboxOrigin( void *args ) NTSTATUS ISteamInput_SteamInput001_GetActionOriginFromXboxOrigin( void *args ) { struct ISteamInput_SteamInput001_GetActionOriginFromXboxOrigin_params *params = (struct ISteamInput_SteamInput001_GetActionOriginFromXboxOrigin_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->GetActionOriginFromXboxOrigin( params->inputHandle, params->eOrigin ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamInput_SteamInput001_GetActionOriginFromXboxOrigin( void *args ) NTSTATUS ISteamInput_SteamInput001_TranslateActionOrigin( void *args ) { struct ISteamInput_SteamInput001_TranslateActionOrigin_params *params = (struct ISteamInput_SteamInput001_TranslateActionOrigin_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->TranslateActionOrigin( params->eDestinationInputType, params->eSourceOrigin ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamInput_SteamInput001_TranslateActionOrigin( void *args ) NTSTATUS ISteamInput_SteamInput001_GetDeviceBindingRevision( void *args ) { struct ISteamInput_SteamInput001_GetDeviceBindingRevision_params *params = (struct ISteamInput_SteamInput001_GetDeviceBindingRevision_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->GetDeviceBindingRevision( params->inputHandle, params->pMajor, params->pMinor ); return 0; } @@ -264,7 +264,7 @@ NTSTATUS ISteamInput_SteamInput001_GetDeviceBindingRevision( void *args ) NTSTATUS ISteamInput_SteamInput001_GetRemotePlaySessionID( void *args ) { struct ISteamInput_SteamInput001_GetRemotePlaySessionID_params *params = (struct ISteamInput_SteamInput001_GetRemotePlaySessionID_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; params->_ret = iface->GetRemotePlaySessionID( params->inputHandle ); return 0; } diff --git a/lsteamclient/cppISteamInput_SteamInput002.cpp b/lsteamclient/cppISteamInput_SteamInput002.cpp index 9dd98a6f..07d8b4b1 100644 --- a/lsteamclient/cppISteamInput_SteamInput002.cpp +++ b/lsteamclient/cppISteamInput_SteamInput002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamInput_SteamInput002_Init( void *args ) { struct ISteamInput_SteamInput002_Init_params *params = (struct ISteamInput_SteamInput002_Init_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->Init( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamInput_SteamInput002_Init( void *args ) NTSTATUS ISteamInput_SteamInput002_Shutdown( void *args ) { struct ISteamInput_SteamInput002_Shutdown_params *params = (struct ISteamInput_SteamInput002_Shutdown_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->Shutdown( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamInput_SteamInput002_Shutdown( void *args ) NTSTATUS ISteamInput_SteamInput002_RunFrame( void *args ) { struct ISteamInput_SteamInput002_RunFrame_params *params = (struct ISteamInput_SteamInput002_RunFrame_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamInput_SteamInput002_RunFrame( void *args ) NTSTATUS ISteamInput_SteamInput002_GetConnectedControllers( void *args ) { struct ISteamInput_SteamInput002_GetConnectedControllers_params *params = (struct ISteamInput_SteamInput002_GetConnectedControllers_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->GetConnectedControllers( params->handlesOut ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamInput_SteamInput002_GetConnectedControllers( void *args ) NTSTATUS ISteamInput_SteamInput002_GetActionSetHandle( void *args ) { struct ISteamInput_SteamInput002_GetActionSetHandle_params *params = (struct ISteamInput_SteamInput002_GetActionSetHandle_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamInput_SteamInput002_GetActionSetHandle( void *args ) NTSTATUS ISteamInput_SteamInput002_ActivateActionSet( void *args ) { struct ISteamInput_SteamInput002_ActivateActionSet_params *params = (struct ISteamInput_SteamInput002_ActivateActionSet_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; iface->ActivateActionSet( params->inputHandle, params->actionSetHandle ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamInput_SteamInput002_ActivateActionSet( void *args ) NTSTATUS ISteamInput_SteamInput002_GetCurrentActionSet( void *args ) { struct ISteamInput_SteamInput002_GetCurrentActionSet_params *params = (struct ISteamInput_SteamInput002_GetCurrentActionSet_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->GetCurrentActionSet( params->inputHandle ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamInput_SteamInput002_GetCurrentActionSet( void *args ) NTSTATUS ISteamInput_SteamInput002_ActivateActionSetLayer( void *args ) { struct ISteamInput_SteamInput002_ActivateActionSetLayer_params *params = (struct ISteamInput_SteamInput002_ActivateActionSetLayer_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; iface->ActivateActionSetLayer( params->inputHandle, params->actionSetLayerHandle ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamInput_SteamInput002_ActivateActionSetLayer( void *args ) NTSTATUS ISteamInput_SteamInput002_DeactivateActionSetLayer( void *args ) { struct ISteamInput_SteamInput002_DeactivateActionSetLayer_params *params = (struct ISteamInput_SteamInput002_DeactivateActionSetLayer_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; iface->DeactivateActionSetLayer( params->inputHandle, params->actionSetLayerHandle ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamInput_SteamInput002_DeactivateActionSetLayer( void *args ) NTSTATUS ISteamInput_SteamInput002_DeactivateAllActionSetLayers( void *args ) { struct ISteamInput_SteamInput002_DeactivateAllActionSetLayers_params *params = (struct ISteamInput_SteamInput002_DeactivateAllActionSetLayers_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; iface->DeactivateAllActionSetLayers( params->inputHandle ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamInput_SteamInput002_DeactivateAllActionSetLayers( void *args ) NTSTATUS ISteamInput_SteamInput002_GetActiveActionSetLayers( void *args ) { struct ISteamInput_SteamInput002_GetActiveActionSetLayers_params *params = (struct ISteamInput_SteamInput002_GetActiveActionSetLayers_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->GetActiveActionSetLayers( params->inputHandle, params->handlesOut ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamInput_SteamInput002_GetActiveActionSetLayers( void *args ) NTSTATUS ISteamInput_SteamInput002_GetDigitalActionHandle( void *args ) { struct ISteamInput_SteamInput002_GetDigitalActionHandle_params *params = (struct ISteamInput_SteamInput002_GetDigitalActionHandle_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamInput_SteamInput002_GetDigitalActionHandle( void *args ) NTSTATUS ISteamInput_SteamInput002_GetDigitalActionData( void *args ) { struct ISteamInput_SteamInput002_GetDigitalActionData_params *params = (struct ISteamInput_SteamInput002_GetDigitalActionData_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; *params->_ret = iface->GetDigitalActionData( params->inputHandle, params->digitalActionHandle ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamInput_SteamInput002_GetDigitalActionData( void *args ) NTSTATUS ISteamInput_SteamInput002_GetDigitalActionOrigins( void *args ) { struct ISteamInput_SteamInput002_GetDigitalActionOrigins_params *params = (struct ISteamInput_SteamInput002_GetDigitalActionOrigins_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->GetDigitalActionOrigins( params->inputHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamInput_SteamInput002_GetDigitalActionOrigins( void *args ) NTSTATUS ISteamInput_SteamInput002_GetAnalogActionHandle( void *args ) { struct ISteamInput_SteamInput002_GetAnalogActionHandle_params *params = (struct ISteamInput_SteamInput002_GetAnalogActionHandle_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamInput_SteamInput002_GetAnalogActionHandle( void *args ) NTSTATUS ISteamInput_SteamInput002_GetAnalogActionData( void *args ) { struct ISteamInput_SteamInput002_GetAnalogActionData_params *params = (struct ISteamInput_SteamInput002_GetAnalogActionData_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; *params->_ret = iface->GetAnalogActionData( params->inputHandle, params->analogActionHandle ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamInput_SteamInput002_GetAnalogActionData( void *args ) NTSTATUS ISteamInput_SteamInput002_GetAnalogActionOrigins( void *args ) { struct ISteamInput_SteamInput002_GetAnalogActionOrigins_params *params = (struct ISteamInput_SteamInput002_GetAnalogActionOrigins_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->GetAnalogActionOrigins( params->inputHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamInput_SteamInput002_GetAnalogActionOrigins( void *args ) NTSTATUS ISteamInput_SteamInput002_GetStringForActionOrigin( void *args ) { struct ISteamInput_SteamInput002_GetStringForActionOrigin_params *params = (struct ISteamInput_SteamInput002_GetStringForActionOrigin_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->GetStringForActionOrigin( params->eOrigin ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamInput_SteamInput002_GetStringForActionOrigin( void *args ) NTSTATUS ISteamInput_SteamInput002_StopAnalogActionMomentum( void *args ) { struct ISteamInput_SteamInput002_StopAnalogActionMomentum_params *params = (struct ISteamInput_SteamInput002_StopAnalogActionMomentum_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; iface->StopAnalogActionMomentum( params->inputHandle, params->eAction ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamInput_SteamInput002_StopAnalogActionMomentum( void *args ) NTSTATUS ISteamInput_SteamInput002_GetMotionData( void *args ) { struct ISteamInput_SteamInput002_GetMotionData_params *params = (struct ISteamInput_SteamInput002_GetMotionData_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; *params->_ret = iface->GetMotionData( params->inputHandle ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamInput_SteamInput002_GetMotionData( void *args ) NTSTATUS ISteamInput_SteamInput002_TriggerVibration( void *args ) { struct ISteamInput_SteamInput002_TriggerVibration_params *params = (struct ISteamInput_SteamInput002_TriggerVibration_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; iface->TriggerVibration( params->inputHandle, params->usLeftSpeed, params->usRightSpeed ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamInput_SteamInput002_TriggerVibration( void *args ) NTSTATUS ISteamInput_SteamInput002_SetLEDColor( void *args ) { struct ISteamInput_SteamInput002_SetLEDColor_params *params = (struct ISteamInput_SteamInput002_SetLEDColor_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; iface->SetLEDColor( params->inputHandle, params->nColorR, params->nColorG, params->nColorB, params->nFlags ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamInput_SteamInput002_SetLEDColor( void *args ) NTSTATUS ISteamInput_SteamInput002_TriggerHapticPulse( void *args ) { struct ISteamInput_SteamInput002_TriggerHapticPulse_params *params = (struct ISteamInput_SteamInput002_TriggerHapticPulse_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; iface->TriggerHapticPulse( params->inputHandle, params->eTargetPad, params->usDurationMicroSec ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamInput_SteamInput002_TriggerHapticPulse( void *args ) NTSTATUS ISteamInput_SteamInput002_TriggerRepeatedHapticPulse( void *args ) { struct ISteamInput_SteamInput002_TriggerRepeatedHapticPulse_params *params = (struct ISteamInput_SteamInput002_TriggerRepeatedHapticPulse_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; iface->TriggerRepeatedHapticPulse( params->inputHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamInput_SteamInput002_TriggerRepeatedHapticPulse( void *args ) NTSTATUS ISteamInput_SteamInput002_ShowBindingPanel( void *args ) { struct ISteamInput_SteamInput002_ShowBindingPanel_params *params = (struct ISteamInput_SteamInput002_ShowBindingPanel_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->ShowBindingPanel( params->inputHandle ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamInput_SteamInput002_ShowBindingPanel( void *args ) NTSTATUS ISteamInput_SteamInput002_GetInputTypeForHandle( void *args ) { struct ISteamInput_SteamInput002_GetInputTypeForHandle_params *params = (struct ISteamInput_SteamInput002_GetInputTypeForHandle_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->GetInputTypeForHandle( params->inputHandle ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamInput_SteamInput002_GetInputTypeForHandle( void *args ) NTSTATUS ISteamInput_SteamInput002_GetControllerForGamepadIndex( void *args ) { struct ISteamInput_SteamInput002_GetControllerForGamepadIndex_params *params = (struct ISteamInput_SteamInput002_GetControllerForGamepadIndex_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->GetControllerForGamepadIndex( params->nIndex ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamInput_SteamInput002_GetControllerForGamepadIndex( void *args ) NTSTATUS ISteamInput_SteamInput002_GetGamepadIndexForController( void *args ) { struct ISteamInput_SteamInput002_GetGamepadIndexForController_params *params = (struct ISteamInput_SteamInput002_GetGamepadIndexForController_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->GetGamepadIndexForController( params->ulinputHandle ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamInput_SteamInput002_GetGamepadIndexForController( void *args ) NTSTATUS ISteamInput_SteamInput002_GetStringForXboxOrigin( void *args ) { struct ISteamInput_SteamInput002_GetStringForXboxOrigin_params *params = (struct ISteamInput_SteamInput002_GetStringForXboxOrigin_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->GetStringForXboxOrigin( params->eOrigin ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamInput_SteamInput002_GetStringForXboxOrigin( void *args ) NTSTATUS ISteamInput_SteamInput002_GetActionOriginFromXboxOrigin( void *args ) { struct ISteamInput_SteamInput002_GetActionOriginFromXboxOrigin_params *params = (struct ISteamInput_SteamInput002_GetActionOriginFromXboxOrigin_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->GetActionOriginFromXboxOrigin( params->inputHandle, params->eOrigin ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamInput_SteamInput002_GetActionOriginFromXboxOrigin( void *args ) NTSTATUS ISteamInput_SteamInput002_TranslateActionOrigin( void *args ) { struct ISteamInput_SteamInput002_TranslateActionOrigin_params *params = (struct ISteamInput_SteamInput002_TranslateActionOrigin_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->TranslateActionOrigin( params->eDestinationInputType, params->eSourceOrigin ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamInput_SteamInput002_TranslateActionOrigin( void *args ) NTSTATUS ISteamInput_SteamInput002_GetDeviceBindingRevision( void *args ) { struct ISteamInput_SteamInput002_GetDeviceBindingRevision_params *params = (struct ISteamInput_SteamInput002_GetDeviceBindingRevision_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->GetDeviceBindingRevision( params->inputHandle, params->pMajor, params->pMinor ); return 0; } @@ -264,7 +264,7 @@ NTSTATUS ISteamInput_SteamInput002_GetDeviceBindingRevision( void *args ) NTSTATUS ISteamInput_SteamInput002_GetRemotePlaySessionID( void *args ) { struct ISteamInput_SteamInput002_GetRemotePlaySessionID_params *params = (struct ISteamInput_SteamInput002_GetRemotePlaySessionID_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; params->_ret = iface->GetRemotePlaySessionID( params->inputHandle ); return 0; } diff --git a/lsteamclient/cppISteamInput_SteamInput005.cpp b/lsteamclient/cppISteamInput_SteamInput005.cpp index 6dc1fb87..1a2a1aa4 100644 --- a/lsteamclient/cppISteamInput_SteamInput005.cpp +++ b/lsteamclient/cppISteamInput_SteamInput005.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamInput_SteamInput005_Init( void *args ) { struct ISteamInput_SteamInput005_Init_params *params = (struct ISteamInput_SteamInput005_Init_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->Init( params->bExplicitlyCallRunFrame ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamInput_SteamInput005_Init( void *args ) NTSTATUS ISteamInput_SteamInput005_Shutdown( void *args ) { struct ISteamInput_SteamInput005_Shutdown_params *params = (struct ISteamInput_SteamInput005_Shutdown_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->Shutdown( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamInput_SteamInput005_Shutdown( void *args ) NTSTATUS ISteamInput_SteamInput005_SetInputActionManifestFilePath( void *args ) { struct ISteamInput_SteamInput005_SetInputActionManifestFilePath_params *params = (struct ISteamInput_SteamInput005_SetInputActionManifestFilePath_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; char *u_pchInputActionManifestAbsolutePath = steamclient_dos_to_unix_path( params->pchInputActionManifestAbsolutePath, 0 ); params->_ret = iface->SetInputActionManifestFilePath( u_pchInputActionManifestAbsolutePath ); steamclient_free_path( u_pchInputActionManifestAbsolutePath ); @@ -34,7 +34,7 @@ NTSTATUS ISteamInput_SteamInput005_SetInputActionManifestFilePath( void *args ) NTSTATUS ISteamInput_SteamInput005_RunFrame( void *args ) { struct ISteamInput_SteamInput005_RunFrame_params *params = (struct ISteamInput_SteamInput005_RunFrame_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; iface->RunFrame( params->bReservedValue ); return 0; } @@ -42,7 +42,7 @@ NTSTATUS ISteamInput_SteamInput005_RunFrame( void *args ) NTSTATUS ISteamInput_SteamInput005_BWaitForData( void *args ) { struct ISteamInput_SteamInput005_BWaitForData_params *params = (struct ISteamInput_SteamInput005_BWaitForData_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->BWaitForData( params->bWaitForever, params->unTimeout ); return 0; } @@ -50,7 +50,7 @@ NTSTATUS ISteamInput_SteamInput005_BWaitForData( void *args ) NTSTATUS ISteamInput_SteamInput005_BNewDataAvailable( void *args ) { struct ISteamInput_SteamInput005_BNewDataAvailable_params *params = (struct ISteamInput_SteamInput005_BNewDataAvailable_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->BNewDataAvailable( ); return 0; } @@ -58,7 +58,7 @@ NTSTATUS ISteamInput_SteamInput005_BNewDataAvailable( void *args ) NTSTATUS ISteamInput_SteamInput005_GetConnectedControllers( void *args ) { struct ISteamInput_SteamInput005_GetConnectedControllers_params *params = (struct ISteamInput_SteamInput005_GetConnectedControllers_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetConnectedControllers( params->handlesOut ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamInput_SteamInput005_GetConnectedControllers( void *args ) NTSTATUS ISteamInput_SteamInput005_EnableDeviceCallbacks( void *args ) { struct ISteamInput_SteamInput005_EnableDeviceCallbacks_params *params = (struct ISteamInput_SteamInput005_EnableDeviceCallbacks_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; iface->EnableDeviceCallbacks( ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamInput_SteamInput005_EnableDeviceCallbacks( void *args ) NTSTATUS ISteamInput_SteamInput005_GetActionSetHandle( void *args ) { struct ISteamInput_SteamInput005_GetActionSetHandle_params *params = (struct ISteamInput_SteamInput005_GetActionSetHandle_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamInput_SteamInput005_GetActionSetHandle( void *args ) NTSTATUS ISteamInput_SteamInput005_ActivateActionSet( void *args ) { struct ISteamInput_SteamInput005_ActivateActionSet_params *params = (struct ISteamInput_SteamInput005_ActivateActionSet_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; iface->ActivateActionSet( params->inputHandle, params->actionSetHandle ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamInput_SteamInput005_ActivateActionSet( void *args ) NTSTATUS ISteamInput_SteamInput005_GetCurrentActionSet( void *args ) { struct ISteamInput_SteamInput005_GetCurrentActionSet_params *params = (struct ISteamInput_SteamInput005_GetCurrentActionSet_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetCurrentActionSet( params->inputHandle ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamInput_SteamInput005_GetCurrentActionSet( void *args ) NTSTATUS ISteamInput_SteamInput005_ActivateActionSetLayer( void *args ) { struct ISteamInput_SteamInput005_ActivateActionSetLayer_params *params = (struct ISteamInput_SteamInput005_ActivateActionSetLayer_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; iface->ActivateActionSetLayer( params->inputHandle, params->actionSetLayerHandle ); return 0; } @@ -106,7 +106,7 @@ NTSTATUS ISteamInput_SteamInput005_ActivateActionSetLayer( void *args ) NTSTATUS ISteamInput_SteamInput005_DeactivateActionSetLayer( void *args ) { struct ISteamInput_SteamInput005_DeactivateActionSetLayer_params *params = (struct ISteamInput_SteamInput005_DeactivateActionSetLayer_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; iface->DeactivateActionSetLayer( params->inputHandle, params->actionSetLayerHandle ); return 0; } @@ -114,7 +114,7 @@ NTSTATUS ISteamInput_SteamInput005_DeactivateActionSetLayer( void *args ) NTSTATUS ISteamInput_SteamInput005_DeactivateAllActionSetLayers( void *args ) { struct ISteamInput_SteamInput005_DeactivateAllActionSetLayers_params *params = (struct ISteamInput_SteamInput005_DeactivateAllActionSetLayers_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; iface->DeactivateAllActionSetLayers( params->inputHandle ); return 0; } @@ -122,7 +122,7 @@ NTSTATUS ISteamInput_SteamInput005_DeactivateAllActionSetLayers( void *args ) NTSTATUS ISteamInput_SteamInput005_GetActiveActionSetLayers( void *args ) { struct ISteamInput_SteamInput005_GetActiveActionSetLayers_params *params = (struct ISteamInput_SteamInput005_GetActiveActionSetLayers_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetActiveActionSetLayers( params->inputHandle, params->handlesOut ); return 0; } @@ -130,7 +130,7 @@ NTSTATUS ISteamInput_SteamInput005_GetActiveActionSetLayers( void *args ) NTSTATUS ISteamInput_SteamInput005_GetDigitalActionHandle( void *args ) { struct ISteamInput_SteamInput005_GetDigitalActionHandle_params *params = (struct ISteamInput_SteamInput005_GetDigitalActionHandle_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); return 0; } @@ -138,7 +138,7 @@ NTSTATUS ISteamInput_SteamInput005_GetDigitalActionHandle( void *args ) NTSTATUS ISteamInput_SteamInput005_GetDigitalActionData( void *args ) { struct ISteamInput_SteamInput005_GetDigitalActionData_params *params = (struct ISteamInput_SteamInput005_GetDigitalActionData_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; *params->_ret = iface->GetDigitalActionData( params->inputHandle, params->digitalActionHandle ); return 0; } @@ -146,7 +146,7 @@ NTSTATUS ISteamInput_SteamInput005_GetDigitalActionData( void *args ) NTSTATUS ISteamInput_SteamInput005_GetDigitalActionOrigins( void *args ) { struct ISteamInput_SteamInput005_GetDigitalActionOrigins_params *params = (struct ISteamInput_SteamInput005_GetDigitalActionOrigins_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetDigitalActionOrigins( params->inputHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); return 0; } @@ -154,7 +154,7 @@ NTSTATUS ISteamInput_SteamInput005_GetDigitalActionOrigins( void *args ) NTSTATUS ISteamInput_SteamInput005_GetStringForDigitalActionName( void *args ) { struct ISteamInput_SteamInput005_GetStringForDigitalActionName_params *params = (struct ISteamInput_SteamInput005_GetStringForDigitalActionName_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetStringForDigitalActionName( params->eActionHandle ); return 0; } @@ -162,7 +162,7 @@ NTSTATUS ISteamInput_SteamInput005_GetStringForDigitalActionName( void *args ) NTSTATUS ISteamInput_SteamInput005_GetAnalogActionHandle( void *args ) { struct ISteamInput_SteamInput005_GetAnalogActionHandle_params *params = (struct ISteamInput_SteamInput005_GetAnalogActionHandle_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); return 0; } @@ -170,7 +170,7 @@ NTSTATUS ISteamInput_SteamInput005_GetAnalogActionHandle( void *args ) NTSTATUS ISteamInput_SteamInput005_GetAnalogActionData( void *args ) { struct ISteamInput_SteamInput005_GetAnalogActionData_params *params = (struct ISteamInput_SteamInput005_GetAnalogActionData_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; *params->_ret = iface->GetAnalogActionData( params->inputHandle, params->analogActionHandle ); return 0; } @@ -178,7 +178,7 @@ NTSTATUS ISteamInput_SteamInput005_GetAnalogActionData( void *args ) NTSTATUS ISteamInput_SteamInput005_GetAnalogActionOrigins( void *args ) { struct ISteamInput_SteamInput005_GetAnalogActionOrigins_params *params = (struct ISteamInput_SteamInput005_GetAnalogActionOrigins_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetAnalogActionOrigins( params->inputHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); return 0; } @@ -186,7 +186,7 @@ NTSTATUS ISteamInput_SteamInput005_GetAnalogActionOrigins( void *args ) NTSTATUS ISteamInput_SteamInput005_GetStringForActionOrigin( void *args ) { struct ISteamInput_SteamInput005_GetStringForActionOrigin_params *params = (struct ISteamInput_SteamInput005_GetStringForActionOrigin_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetStringForActionOrigin( params->eOrigin ); return 0; } @@ -194,7 +194,7 @@ NTSTATUS ISteamInput_SteamInput005_GetStringForActionOrigin( void *args ) NTSTATUS ISteamInput_SteamInput005_GetStringForAnalogActionName( void *args ) { struct ISteamInput_SteamInput005_GetStringForAnalogActionName_params *params = (struct ISteamInput_SteamInput005_GetStringForAnalogActionName_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetStringForAnalogActionName( params->eActionHandle ); return 0; } @@ -202,7 +202,7 @@ NTSTATUS ISteamInput_SteamInput005_GetStringForAnalogActionName( void *args ) NTSTATUS ISteamInput_SteamInput005_StopAnalogActionMomentum( void *args ) { struct ISteamInput_SteamInput005_StopAnalogActionMomentum_params *params = (struct ISteamInput_SteamInput005_StopAnalogActionMomentum_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; iface->StopAnalogActionMomentum( params->inputHandle, params->eAction ); return 0; } @@ -210,7 +210,7 @@ NTSTATUS ISteamInput_SteamInput005_StopAnalogActionMomentum( void *args ) NTSTATUS ISteamInput_SteamInput005_GetMotionData( void *args ) { struct ISteamInput_SteamInput005_GetMotionData_params *params = (struct ISteamInput_SteamInput005_GetMotionData_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; *params->_ret = iface->GetMotionData( params->inputHandle ); return 0; } @@ -218,7 +218,7 @@ NTSTATUS ISteamInput_SteamInput005_GetMotionData( void *args ) NTSTATUS ISteamInput_SteamInput005_TriggerVibration( void *args ) { struct ISteamInput_SteamInput005_TriggerVibration_params *params = (struct ISteamInput_SteamInput005_TriggerVibration_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; iface->TriggerVibration( params->inputHandle, params->usLeftSpeed, params->usRightSpeed ); return 0; } @@ -226,7 +226,7 @@ NTSTATUS ISteamInput_SteamInput005_TriggerVibration( void *args ) NTSTATUS ISteamInput_SteamInput005_TriggerVibrationExtended( void *args ) { struct ISteamInput_SteamInput005_TriggerVibrationExtended_params *params = (struct ISteamInput_SteamInput005_TriggerVibrationExtended_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; iface->TriggerVibrationExtended( params->inputHandle, params->usLeftSpeed, params->usRightSpeed, params->usLeftTriggerSpeed, params->usRightTriggerSpeed ); return 0; } @@ -234,7 +234,7 @@ NTSTATUS ISteamInput_SteamInput005_TriggerVibrationExtended( void *args ) NTSTATUS ISteamInput_SteamInput005_TriggerSimpleHapticEvent( void *args ) { struct ISteamInput_SteamInput005_TriggerSimpleHapticEvent_params *params = (struct ISteamInput_SteamInput005_TriggerSimpleHapticEvent_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; iface->TriggerSimpleHapticEvent( params->inputHandle, params->eHapticLocation, params->nIntensity, params->nGainDB, params->nOtherIntensity, params->nOtherGainDB ); return 0; } @@ -242,7 +242,7 @@ NTSTATUS ISteamInput_SteamInput005_TriggerSimpleHapticEvent( void *args ) NTSTATUS ISteamInput_SteamInput005_SetLEDColor( void *args ) { struct ISteamInput_SteamInput005_SetLEDColor_params *params = (struct ISteamInput_SteamInput005_SetLEDColor_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; iface->SetLEDColor( params->inputHandle, params->nColorR, params->nColorG, params->nColorB, params->nFlags ); return 0; } @@ -250,7 +250,7 @@ NTSTATUS ISteamInput_SteamInput005_SetLEDColor( void *args ) NTSTATUS ISteamInput_SteamInput005_Legacy_TriggerHapticPulse( void *args ) { struct ISteamInput_SteamInput005_Legacy_TriggerHapticPulse_params *params = (struct ISteamInput_SteamInput005_Legacy_TriggerHapticPulse_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; iface->Legacy_TriggerHapticPulse( params->inputHandle, params->eTargetPad, params->usDurationMicroSec ); return 0; } @@ -258,7 +258,7 @@ NTSTATUS ISteamInput_SteamInput005_Legacy_TriggerHapticPulse( void *args ) NTSTATUS ISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse( void *args ) { struct ISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse_params *params = (struct ISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; iface->Legacy_TriggerRepeatedHapticPulse( params->inputHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); return 0; } @@ -266,7 +266,7 @@ NTSTATUS ISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse( void *args NTSTATUS ISteamInput_SteamInput005_ShowBindingPanel( void *args ) { struct ISteamInput_SteamInput005_ShowBindingPanel_params *params = (struct ISteamInput_SteamInput005_ShowBindingPanel_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->ShowBindingPanel( params->inputHandle ); return 0; } @@ -274,7 +274,7 @@ NTSTATUS ISteamInput_SteamInput005_ShowBindingPanel( void *args ) NTSTATUS ISteamInput_SteamInput005_GetInputTypeForHandle( void *args ) { struct ISteamInput_SteamInput005_GetInputTypeForHandle_params *params = (struct ISteamInput_SteamInput005_GetInputTypeForHandle_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetInputTypeForHandle( params->inputHandle ); return 0; } @@ -282,7 +282,7 @@ NTSTATUS ISteamInput_SteamInput005_GetInputTypeForHandle( void *args ) NTSTATUS ISteamInput_SteamInput005_GetControllerForGamepadIndex( void *args ) { struct ISteamInput_SteamInput005_GetControllerForGamepadIndex_params *params = (struct ISteamInput_SteamInput005_GetControllerForGamepadIndex_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetControllerForGamepadIndex( params->nIndex ); return 0; } @@ -290,7 +290,7 @@ NTSTATUS ISteamInput_SteamInput005_GetControllerForGamepadIndex( void *args ) NTSTATUS ISteamInput_SteamInput005_GetGamepadIndexForController( void *args ) { struct ISteamInput_SteamInput005_GetGamepadIndexForController_params *params = (struct ISteamInput_SteamInput005_GetGamepadIndexForController_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetGamepadIndexForController( params->ulinputHandle ); return 0; } @@ -298,7 +298,7 @@ NTSTATUS ISteamInput_SteamInput005_GetGamepadIndexForController( void *args ) NTSTATUS ISteamInput_SteamInput005_GetStringForXboxOrigin( void *args ) { struct ISteamInput_SteamInput005_GetStringForXboxOrigin_params *params = (struct ISteamInput_SteamInput005_GetStringForXboxOrigin_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetStringForXboxOrigin( params->eOrigin ); return 0; } @@ -306,7 +306,7 @@ NTSTATUS ISteamInput_SteamInput005_GetStringForXboxOrigin( void *args ) NTSTATUS ISteamInput_SteamInput005_GetActionOriginFromXboxOrigin( void *args ) { struct ISteamInput_SteamInput005_GetActionOriginFromXboxOrigin_params *params = (struct ISteamInput_SteamInput005_GetActionOriginFromXboxOrigin_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetActionOriginFromXboxOrigin( params->inputHandle, params->eOrigin ); return 0; } @@ -314,7 +314,7 @@ NTSTATUS ISteamInput_SteamInput005_GetActionOriginFromXboxOrigin( void *args ) NTSTATUS ISteamInput_SteamInput005_TranslateActionOrigin( void *args ) { struct ISteamInput_SteamInput005_TranslateActionOrigin_params *params = (struct ISteamInput_SteamInput005_TranslateActionOrigin_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->TranslateActionOrigin( params->eDestinationInputType, params->eSourceOrigin ); return 0; } @@ -322,7 +322,7 @@ NTSTATUS ISteamInput_SteamInput005_TranslateActionOrigin( void *args ) NTSTATUS ISteamInput_SteamInput005_GetDeviceBindingRevision( void *args ) { struct ISteamInput_SteamInput005_GetDeviceBindingRevision_params *params = (struct ISteamInput_SteamInput005_GetDeviceBindingRevision_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetDeviceBindingRevision( params->inputHandle, params->pMajor, params->pMinor ); return 0; } @@ -330,7 +330,7 @@ NTSTATUS ISteamInput_SteamInput005_GetDeviceBindingRevision( void *args ) NTSTATUS ISteamInput_SteamInput005_GetRemotePlaySessionID( void *args ) { struct ISteamInput_SteamInput005_GetRemotePlaySessionID_params *params = (struct ISteamInput_SteamInput005_GetRemotePlaySessionID_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetRemotePlaySessionID( params->inputHandle ); return 0; } @@ -338,7 +338,7 @@ NTSTATUS ISteamInput_SteamInput005_GetRemotePlaySessionID( void *args ) NTSTATUS ISteamInput_SteamInput005_GetSessionInputConfigurationSettings( void *args ) { struct ISteamInput_SteamInput005_GetSessionInputConfigurationSettings_params *params = (struct ISteamInput_SteamInput005_GetSessionInputConfigurationSettings_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; params->_ret = iface->GetSessionInputConfigurationSettings( ); return 0; } diff --git a/lsteamclient/cppISteamInput_SteamInput006.cpp b/lsteamclient/cppISteamInput_SteamInput006.cpp index 4fac6bea..cc748e67 100644 --- a/lsteamclient/cppISteamInput_SteamInput006.cpp +++ b/lsteamclient/cppISteamInput_SteamInput006.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamInput_SteamInput006_Init( void *args ) { struct ISteamInput_SteamInput006_Init_params *params = (struct ISteamInput_SteamInput006_Init_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->Init( params->bExplicitlyCallRunFrame ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamInput_SteamInput006_Init( void *args ) NTSTATUS ISteamInput_SteamInput006_Shutdown( void *args ) { struct ISteamInput_SteamInput006_Shutdown_params *params = (struct ISteamInput_SteamInput006_Shutdown_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->Shutdown( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamInput_SteamInput006_Shutdown( void *args ) NTSTATUS ISteamInput_SteamInput006_SetInputActionManifestFilePath( void *args ) { struct ISteamInput_SteamInput006_SetInputActionManifestFilePath_params *params = (struct ISteamInput_SteamInput006_SetInputActionManifestFilePath_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; char *u_pchInputActionManifestAbsolutePath = steamclient_dos_to_unix_path( params->pchInputActionManifestAbsolutePath, 0 ); params->_ret = iface->SetInputActionManifestFilePath( u_pchInputActionManifestAbsolutePath ); steamclient_free_path( u_pchInputActionManifestAbsolutePath ); @@ -34,7 +34,7 @@ NTSTATUS ISteamInput_SteamInput006_SetInputActionManifestFilePath( void *args ) NTSTATUS ISteamInput_SteamInput006_RunFrame( void *args ) { struct ISteamInput_SteamInput006_RunFrame_params *params = (struct ISteamInput_SteamInput006_RunFrame_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; iface->RunFrame( params->bReservedValue ); return 0; } @@ -42,7 +42,7 @@ NTSTATUS ISteamInput_SteamInput006_RunFrame( void *args ) NTSTATUS ISteamInput_SteamInput006_BWaitForData( void *args ) { struct ISteamInput_SteamInput006_BWaitForData_params *params = (struct ISteamInput_SteamInput006_BWaitForData_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->BWaitForData( params->bWaitForever, params->unTimeout ); return 0; } @@ -50,7 +50,7 @@ NTSTATUS ISteamInput_SteamInput006_BWaitForData( void *args ) NTSTATUS ISteamInput_SteamInput006_BNewDataAvailable( void *args ) { struct ISteamInput_SteamInput006_BNewDataAvailable_params *params = (struct ISteamInput_SteamInput006_BNewDataAvailable_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->BNewDataAvailable( ); return 0; } @@ -58,7 +58,7 @@ NTSTATUS ISteamInput_SteamInput006_BNewDataAvailable( void *args ) NTSTATUS ISteamInput_SteamInput006_GetConnectedControllers( void *args ) { struct ISteamInput_SteamInput006_GetConnectedControllers_params *params = (struct ISteamInput_SteamInput006_GetConnectedControllers_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetConnectedControllers( params->handlesOut ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamInput_SteamInput006_GetConnectedControllers( void *args ) NTSTATUS ISteamInput_SteamInput006_EnableDeviceCallbacks( void *args ) { struct ISteamInput_SteamInput006_EnableDeviceCallbacks_params *params = (struct ISteamInput_SteamInput006_EnableDeviceCallbacks_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; iface->EnableDeviceCallbacks( ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamInput_SteamInput006_EnableDeviceCallbacks( void *args ) NTSTATUS ISteamInput_SteamInput006_GetActionSetHandle( void *args ) { struct ISteamInput_SteamInput006_GetActionSetHandle_params *params = (struct ISteamInput_SteamInput006_GetActionSetHandle_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetActionSetHandle( params->pszActionSetName ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamInput_SteamInput006_GetActionSetHandle( void *args ) NTSTATUS ISteamInput_SteamInput006_ActivateActionSet( void *args ) { struct ISteamInput_SteamInput006_ActivateActionSet_params *params = (struct ISteamInput_SteamInput006_ActivateActionSet_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; iface->ActivateActionSet( params->inputHandle, params->actionSetHandle ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamInput_SteamInput006_ActivateActionSet( void *args ) NTSTATUS ISteamInput_SteamInput006_GetCurrentActionSet( void *args ) { struct ISteamInput_SteamInput006_GetCurrentActionSet_params *params = (struct ISteamInput_SteamInput006_GetCurrentActionSet_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetCurrentActionSet( params->inputHandle ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamInput_SteamInput006_GetCurrentActionSet( void *args ) NTSTATUS ISteamInput_SteamInput006_ActivateActionSetLayer( void *args ) { struct ISteamInput_SteamInput006_ActivateActionSetLayer_params *params = (struct ISteamInput_SteamInput006_ActivateActionSetLayer_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; iface->ActivateActionSetLayer( params->inputHandle, params->actionSetLayerHandle ); return 0; } @@ -106,7 +106,7 @@ NTSTATUS ISteamInput_SteamInput006_ActivateActionSetLayer( void *args ) NTSTATUS ISteamInput_SteamInput006_DeactivateActionSetLayer( void *args ) { struct ISteamInput_SteamInput006_DeactivateActionSetLayer_params *params = (struct ISteamInput_SteamInput006_DeactivateActionSetLayer_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; iface->DeactivateActionSetLayer( params->inputHandle, params->actionSetLayerHandle ); return 0; } @@ -114,7 +114,7 @@ NTSTATUS ISteamInput_SteamInput006_DeactivateActionSetLayer( void *args ) NTSTATUS ISteamInput_SteamInput006_DeactivateAllActionSetLayers( void *args ) { struct ISteamInput_SteamInput006_DeactivateAllActionSetLayers_params *params = (struct ISteamInput_SteamInput006_DeactivateAllActionSetLayers_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; iface->DeactivateAllActionSetLayers( params->inputHandle ); return 0; } @@ -122,7 +122,7 @@ NTSTATUS ISteamInput_SteamInput006_DeactivateAllActionSetLayers( void *args ) NTSTATUS ISteamInput_SteamInput006_GetActiveActionSetLayers( void *args ) { struct ISteamInput_SteamInput006_GetActiveActionSetLayers_params *params = (struct ISteamInput_SteamInput006_GetActiveActionSetLayers_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetActiveActionSetLayers( params->inputHandle, params->handlesOut ); return 0; } @@ -130,7 +130,7 @@ NTSTATUS ISteamInput_SteamInput006_GetActiveActionSetLayers( void *args ) NTSTATUS ISteamInput_SteamInput006_GetDigitalActionHandle( void *args ) { struct ISteamInput_SteamInput006_GetDigitalActionHandle_params *params = (struct ISteamInput_SteamInput006_GetDigitalActionHandle_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetDigitalActionHandle( params->pszActionName ); return 0; } @@ -138,7 +138,7 @@ NTSTATUS ISteamInput_SteamInput006_GetDigitalActionHandle( void *args ) NTSTATUS ISteamInput_SteamInput006_GetDigitalActionData( void *args ) { struct ISteamInput_SteamInput006_GetDigitalActionData_params *params = (struct ISteamInput_SteamInput006_GetDigitalActionData_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; *params->_ret = iface->GetDigitalActionData( params->inputHandle, params->digitalActionHandle ); return 0; } @@ -146,7 +146,7 @@ NTSTATUS ISteamInput_SteamInput006_GetDigitalActionData( void *args ) NTSTATUS ISteamInput_SteamInput006_GetDigitalActionOrigins( void *args ) { struct ISteamInput_SteamInput006_GetDigitalActionOrigins_params *params = (struct ISteamInput_SteamInput006_GetDigitalActionOrigins_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetDigitalActionOrigins( params->inputHandle, params->actionSetHandle, params->digitalActionHandle, params->originsOut ); return 0; } @@ -154,7 +154,7 @@ NTSTATUS ISteamInput_SteamInput006_GetDigitalActionOrigins( void *args ) NTSTATUS ISteamInput_SteamInput006_GetStringForDigitalActionName( void *args ) { struct ISteamInput_SteamInput006_GetStringForDigitalActionName_params *params = (struct ISteamInput_SteamInput006_GetStringForDigitalActionName_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetStringForDigitalActionName( params->eActionHandle ); return 0; } @@ -162,7 +162,7 @@ NTSTATUS ISteamInput_SteamInput006_GetStringForDigitalActionName( void *args ) NTSTATUS ISteamInput_SteamInput006_GetAnalogActionHandle( void *args ) { struct ISteamInput_SteamInput006_GetAnalogActionHandle_params *params = (struct ISteamInput_SteamInput006_GetAnalogActionHandle_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetAnalogActionHandle( params->pszActionName ); return 0; } @@ -170,7 +170,7 @@ NTSTATUS ISteamInput_SteamInput006_GetAnalogActionHandle( void *args ) NTSTATUS ISteamInput_SteamInput006_GetAnalogActionData( void *args ) { struct ISteamInput_SteamInput006_GetAnalogActionData_params *params = (struct ISteamInput_SteamInput006_GetAnalogActionData_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; *params->_ret = iface->GetAnalogActionData( params->inputHandle, params->analogActionHandle ); return 0; } @@ -178,7 +178,7 @@ NTSTATUS ISteamInput_SteamInput006_GetAnalogActionData( void *args ) NTSTATUS ISteamInput_SteamInput006_GetAnalogActionOrigins( void *args ) { struct ISteamInput_SteamInput006_GetAnalogActionOrigins_params *params = (struct ISteamInput_SteamInput006_GetAnalogActionOrigins_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetAnalogActionOrigins( params->inputHandle, params->actionSetHandle, params->analogActionHandle, params->originsOut ); return 0; } @@ -186,7 +186,7 @@ NTSTATUS ISteamInput_SteamInput006_GetAnalogActionOrigins( void *args ) NTSTATUS ISteamInput_SteamInput006_GetStringForActionOrigin( void *args ) { struct ISteamInput_SteamInput006_GetStringForActionOrigin_params *params = (struct ISteamInput_SteamInput006_GetStringForActionOrigin_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetStringForActionOrigin( params->eOrigin ); return 0; } @@ -194,7 +194,7 @@ NTSTATUS ISteamInput_SteamInput006_GetStringForActionOrigin( void *args ) NTSTATUS ISteamInput_SteamInput006_GetStringForAnalogActionName( void *args ) { struct ISteamInput_SteamInput006_GetStringForAnalogActionName_params *params = (struct ISteamInput_SteamInput006_GetStringForAnalogActionName_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetStringForAnalogActionName( params->eActionHandle ); return 0; } @@ -202,7 +202,7 @@ NTSTATUS ISteamInput_SteamInput006_GetStringForAnalogActionName( void *args ) NTSTATUS ISteamInput_SteamInput006_StopAnalogActionMomentum( void *args ) { struct ISteamInput_SteamInput006_StopAnalogActionMomentum_params *params = (struct ISteamInput_SteamInput006_StopAnalogActionMomentum_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; iface->StopAnalogActionMomentum( params->inputHandle, params->eAction ); return 0; } @@ -210,7 +210,7 @@ NTSTATUS ISteamInput_SteamInput006_StopAnalogActionMomentum( void *args ) NTSTATUS ISteamInput_SteamInput006_GetMotionData( void *args ) { struct ISteamInput_SteamInput006_GetMotionData_params *params = (struct ISteamInput_SteamInput006_GetMotionData_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; *params->_ret = iface->GetMotionData( params->inputHandle ); return 0; } @@ -218,7 +218,7 @@ NTSTATUS ISteamInput_SteamInput006_GetMotionData( void *args ) NTSTATUS ISteamInput_SteamInput006_TriggerVibration( void *args ) { struct ISteamInput_SteamInput006_TriggerVibration_params *params = (struct ISteamInput_SteamInput006_TriggerVibration_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; iface->TriggerVibration( params->inputHandle, params->usLeftSpeed, params->usRightSpeed ); return 0; } @@ -226,7 +226,7 @@ NTSTATUS ISteamInput_SteamInput006_TriggerVibration( void *args ) NTSTATUS ISteamInput_SteamInput006_TriggerVibrationExtended( void *args ) { struct ISteamInput_SteamInput006_TriggerVibrationExtended_params *params = (struct ISteamInput_SteamInput006_TriggerVibrationExtended_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; iface->TriggerVibrationExtended( params->inputHandle, params->usLeftSpeed, params->usRightSpeed, params->usLeftTriggerSpeed, params->usRightTriggerSpeed ); return 0; } @@ -234,7 +234,7 @@ NTSTATUS ISteamInput_SteamInput006_TriggerVibrationExtended( void *args ) NTSTATUS ISteamInput_SteamInput006_TriggerSimpleHapticEvent( void *args ) { struct ISteamInput_SteamInput006_TriggerSimpleHapticEvent_params *params = (struct ISteamInput_SteamInput006_TriggerSimpleHapticEvent_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; iface->TriggerSimpleHapticEvent( params->inputHandle, params->eHapticLocation, params->nIntensity, params->nGainDB, params->nOtherIntensity, params->nOtherGainDB ); return 0; } @@ -242,7 +242,7 @@ NTSTATUS ISteamInput_SteamInput006_TriggerSimpleHapticEvent( void *args ) NTSTATUS ISteamInput_SteamInput006_SetLEDColor( void *args ) { struct ISteamInput_SteamInput006_SetLEDColor_params *params = (struct ISteamInput_SteamInput006_SetLEDColor_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; iface->SetLEDColor( params->inputHandle, params->nColorR, params->nColorG, params->nColorB, params->nFlags ); return 0; } @@ -250,7 +250,7 @@ NTSTATUS ISteamInput_SteamInput006_SetLEDColor( void *args ) NTSTATUS ISteamInput_SteamInput006_Legacy_TriggerHapticPulse( void *args ) { struct ISteamInput_SteamInput006_Legacy_TriggerHapticPulse_params *params = (struct ISteamInput_SteamInput006_Legacy_TriggerHapticPulse_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; iface->Legacy_TriggerHapticPulse( params->inputHandle, params->eTargetPad, params->usDurationMicroSec ); return 0; } @@ -258,7 +258,7 @@ NTSTATUS ISteamInput_SteamInput006_Legacy_TriggerHapticPulse( void *args ) NTSTATUS ISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse( void *args ) { struct ISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse_params *params = (struct ISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; iface->Legacy_TriggerRepeatedHapticPulse( params->inputHandle, params->eTargetPad, params->usDurationMicroSec, params->usOffMicroSec, params->unRepeat, params->nFlags ); return 0; } @@ -266,7 +266,7 @@ NTSTATUS ISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse( void *args NTSTATUS ISteamInput_SteamInput006_ShowBindingPanel( void *args ) { struct ISteamInput_SteamInput006_ShowBindingPanel_params *params = (struct ISteamInput_SteamInput006_ShowBindingPanel_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->ShowBindingPanel( params->inputHandle ); return 0; } @@ -274,7 +274,7 @@ NTSTATUS ISteamInput_SteamInput006_ShowBindingPanel( void *args ) NTSTATUS ISteamInput_SteamInput006_GetInputTypeForHandle( void *args ) { struct ISteamInput_SteamInput006_GetInputTypeForHandle_params *params = (struct ISteamInput_SteamInput006_GetInputTypeForHandle_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetInputTypeForHandle( params->inputHandle ); return 0; } @@ -282,7 +282,7 @@ NTSTATUS ISteamInput_SteamInput006_GetInputTypeForHandle( void *args ) NTSTATUS ISteamInput_SteamInput006_GetControllerForGamepadIndex( void *args ) { struct ISteamInput_SteamInput006_GetControllerForGamepadIndex_params *params = (struct ISteamInput_SteamInput006_GetControllerForGamepadIndex_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetControllerForGamepadIndex( params->nIndex ); return 0; } @@ -290,7 +290,7 @@ NTSTATUS ISteamInput_SteamInput006_GetControllerForGamepadIndex( void *args ) NTSTATUS ISteamInput_SteamInput006_GetGamepadIndexForController( void *args ) { struct ISteamInput_SteamInput006_GetGamepadIndexForController_params *params = (struct ISteamInput_SteamInput006_GetGamepadIndexForController_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetGamepadIndexForController( params->ulinputHandle ); return 0; } @@ -298,7 +298,7 @@ NTSTATUS ISteamInput_SteamInput006_GetGamepadIndexForController( void *args ) NTSTATUS ISteamInput_SteamInput006_GetStringForXboxOrigin( void *args ) { struct ISteamInput_SteamInput006_GetStringForXboxOrigin_params *params = (struct ISteamInput_SteamInput006_GetStringForXboxOrigin_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetStringForXboxOrigin( params->eOrigin ); return 0; } @@ -306,7 +306,7 @@ NTSTATUS ISteamInput_SteamInput006_GetStringForXboxOrigin( void *args ) NTSTATUS ISteamInput_SteamInput006_GetActionOriginFromXboxOrigin( void *args ) { struct ISteamInput_SteamInput006_GetActionOriginFromXboxOrigin_params *params = (struct ISteamInput_SteamInput006_GetActionOriginFromXboxOrigin_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetActionOriginFromXboxOrigin( params->inputHandle, params->eOrigin ); return 0; } @@ -314,7 +314,7 @@ NTSTATUS ISteamInput_SteamInput006_GetActionOriginFromXboxOrigin( void *args ) NTSTATUS ISteamInput_SteamInput006_TranslateActionOrigin( void *args ) { struct ISteamInput_SteamInput006_TranslateActionOrigin_params *params = (struct ISteamInput_SteamInput006_TranslateActionOrigin_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->TranslateActionOrigin( params->eDestinationInputType, params->eSourceOrigin ); return 0; } @@ -322,7 +322,7 @@ NTSTATUS ISteamInput_SteamInput006_TranslateActionOrigin( void *args ) NTSTATUS ISteamInput_SteamInput006_GetDeviceBindingRevision( void *args ) { struct ISteamInput_SteamInput006_GetDeviceBindingRevision_params *params = (struct ISteamInput_SteamInput006_GetDeviceBindingRevision_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetDeviceBindingRevision( params->inputHandle, params->pMajor, params->pMinor ); return 0; } @@ -330,7 +330,7 @@ NTSTATUS ISteamInput_SteamInput006_GetDeviceBindingRevision( void *args ) NTSTATUS ISteamInput_SteamInput006_GetRemotePlaySessionID( void *args ) { struct ISteamInput_SteamInput006_GetRemotePlaySessionID_params *params = (struct ISteamInput_SteamInput006_GetRemotePlaySessionID_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetRemotePlaySessionID( params->inputHandle ); return 0; } @@ -338,7 +338,7 @@ NTSTATUS ISteamInput_SteamInput006_GetRemotePlaySessionID( void *args ) NTSTATUS ISteamInput_SteamInput006_GetSessionInputConfigurationSettings( void *args ) { struct ISteamInput_SteamInput006_GetSessionInputConfigurationSettings_params *params = (struct ISteamInput_SteamInput006_GetSessionInputConfigurationSettings_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; params->_ret = iface->GetSessionInputConfigurationSettings( ); return 0; } @@ -346,7 +346,7 @@ NTSTATUS ISteamInput_SteamInput006_GetSessionInputConfigurationSettings( void *a NTSTATUS ISteamInput_SteamInput006_SetDualSenseTriggerEffect( void *args ) { struct ISteamInput_SteamInput006_SetDualSenseTriggerEffect_params *params = (struct ISteamInput_SteamInput006_SetDualSenseTriggerEffect_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; iface->SetDualSenseTriggerEffect( params->inputHandle, params->pParam ); return 0; } diff --git a/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V001.cpp b/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V001.cpp index 39900530..6cdc097e 100644 --- a/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V001.cpp +++ b/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->GetResultStatus( params->resultHandle ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus( void *ar NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->GetResultItems( params->resultHandle, params->pOutItemsArray, params->punOutItemsArraySize ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems( void *arg NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->GetResultTimestamp( params->resultHandle ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp( void NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->CheckResultSteamID( params->resultHandle, params->steamIDExpected ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID( void NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; iface->DestroyResult( params->resultHandle ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->GetAllItems( params->pResultHandle ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems( void *args ) NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->GetItemsByID( params->pResultHandle, params->pInstanceIDs, params->unCountInstanceIDs ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->SerializeResult( params->resultHandle, params->pOutBuffer, params->punOutBufferSize ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult( void *ar NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->DeserializeResult( params->pOutResultHandle, params->pBuffer, params->unBufferSize, params->bRESERVED_MUST_BE_FALSE ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult( void * NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->GenerateItems( params->pResultHandle, params->pArrayItemDefs, params->punArrayQuantity, params->unArrayLength ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->GrantPromoItems( params->pResultHandle ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems( void *ar NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->AddPromoItem( params->pResultHandle, params->itemDef ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->AddPromoItems( params->pResultHandle, params->pArrayItemDefs, params->unArrayLength ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->ConsumeItem( params->pResultHandle, params->itemConsume, params->unQuantity ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem( void *args ) NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->ExchangeItems( params->pResultHandle, params->pArrayGenerate, params->punArrayGenerateQuantity, params->unArrayGenerateLength, params->pArrayDestroy, params->punArrayDestroyQuantity, params->unArrayDestroyLength ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->TransferItemQuantity( params->pResultHandle, params->itemIdSource, params->unQuantity, params->itemIdDest ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity( voi NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; iface->SendItemDropHeartbeat( ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat( vo NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->TriggerItemDrop( params->pResultHandle, params->dropListDefinition ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop( void *ar NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->TradeItems( params->pResultHandle, params->steamIDTradePartner, params->pArrayGive, params->pArrayGiveQuantity, params->nArrayGiveLength, params->pArrayGet, params->pArrayGetQuantity, params->nArrayGetLength ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems( void *args ) NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->LoadItemDefinitions( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions( void NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->GetItemDefinitionIDs( params->pItemDefIDs, params->punItemDefIDsArraySize ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs( voi NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->GetItemDefinitionProperty( params->iDefinition, params->pchPropertyName, params->pchValueBuffer, params->punValueBufferSizeOut ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->RequestEligiblePromoItemDefinitionsIDs( params->steamID ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemD NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V001 *)params->u_iface; params->_ret = iface->GetEligiblePromoItemDefinitionIDs( params->steamID, params->pItemDefIDs, params->punItemDefIDsArraySize ); return 0; } diff --git a/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V002.cpp b/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V002.cpp index 01e88daa..eed610cd 100644 --- a/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V002.cpp +++ b/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->GetResultStatus( params->resultHandle ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus( void *ar NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->GetResultItems( params->resultHandle, params->pOutItemsArray, params->punOutItemsArraySize ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems( void *arg NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->GetResultItemProperty( params->resultHandle, params->unItemIndex, params->pchPropertyName, params->pchValueBuffer, params->punValueBufferSizeOut ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty( vo NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->GetResultTimestamp( params->resultHandle ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp( void NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->CheckResultSteamID( params->resultHandle, params->steamIDExpected ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID( void NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; iface->DestroyResult( params->resultHandle ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->GetAllItems( params->pResultHandle ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems( void *args ) NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->GetItemsByID( params->pResultHandle, params->pInstanceIDs, params->unCountInstanceIDs ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->SerializeResult( params->resultHandle, params->pOutBuffer, params->punOutBufferSize ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult( void *ar NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->DeserializeResult( params->pOutResultHandle, params->pBuffer, params->unBufferSize, params->bRESERVED_MUST_BE_FALSE ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult( void * NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->GenerateItems( params->pResultHandle, params->pArrayItemDefs, params->punArrayQuantity, params->unArrayLength ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->GrantPromoItems( params->pResultHandle ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems( void *ar NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->AddPromoItem( params->pResultHandle, params->itemDef ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->AddPromoItems( params->pResultHandle, params->pArrayItemDefs, params->unArrayLength ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->ConsumeItem( params->pResultHandle, params->itemConsume, params->unQuantity ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem( void *args ) NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->ExchangeItems( params->pResultHandle, params->pArrayGenerate, params->punArrayGenerateQuantity, params->unArrayGenerateLength, params->pArrayDestroy, params->punArrayDestroyQuantity, params->unArrayDestroyLength ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->TransferItemQuantity( params->pResultHandle, params->itemIdSource, params->unQuantity, params->itemIdDest ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity( voi NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; iface->SendItemDropHeartbeat( ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat( vo NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->TriggerItemDrop( params->pResultHandle, params->dropListDefinition ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop( void *ar NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->TradeItems( params->pResultHandle, params->steamIDTradePartner, params->pArrayGive, params->pArrayGiveQuantity, params->nArrayGiveLength, params->pArrayGet, params->pArrayGetQuantity, params->nArrayGetLength ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems( void *args ) NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->LoadItemDefinitions( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions( void NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->GetItemDefinitionIDs( params->pItemDefIDs, params->punItemDefIDsArraySize ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs( voi NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->GetItemDefinitionProperty( params->iDefinition, params->pchPropertyName, params->pchValueBuffer, params->punValueBufferSizeOut ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->RequestEligiblePromoItemDefinitionsIDs( params->steamID ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemD NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->GetEligiblePromoItemDefinitionIDs( params->steamID, params->pItemDefIDs, params->punItemDefIDsArraySize ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefin NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->StartPurchase( params->pArrayItemDefs, params->punArrayQuantity, params->unArrayLength ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->RequestPrices( ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->GetNumItemsWithPrices( ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices( vo NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->GetItemsWithPrices( params->pArrayItemDefs, params->pPrices, params->unArrayLength ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices( void NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->GetItemPrice( params->iDefinition, params->pPrice ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->StartUpdateProperties( ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties( vo NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->RemoveProperty( params->handle, params->nItemID, params->pchPropertyName ); return 0; } @@ -264,7 +264,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty( void *arg NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->SetProperty( params->handle, params->nItemID, params->pchPropertyName, params->pchPropertyValue ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty( void *args ) NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->SetProperty( params->handle, params->nItemID, params->pchPropertyName, params->bValue ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->SetProperty( params->handle, params->nItemID, params->pchPropertyName, params->nValue ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->SetProperty( params->handle, params->nItemID, params->pchPropertyName, params->flValue ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V002 *)params->u_iface; params->_ret = iface->SubmitUpdateProperties( params->handle, params->pResultHandle ); return 0; } diff --git a/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V003.cpp b/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V003.cpp index 41f249ad..00f2ab12 100644 --- a/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V003.cpp +++ b/lsteamclient/cppISteamInventory_STEAMINVENTORY_INTERFACE_V003.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->GetResultStatus( params->resultHandle ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus( void *ar NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->GetResultItems( params->resultHandle, params->pOutItemsArray, params->punOutItemsArraySize ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems( void *arg NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->GetResultItemProperty( params->resultHandle, params->unItemIndex, params->pchPropertyName, params->pchValueBuffer, params->punValueBufferSizeOut ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty( vo NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->GetResultTimestamp( params->resultHandle ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp( void NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->CheckResultSteamID( params->resultHandle, params->steamIDExpected ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID( void NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; iface->DestroyResult( params->resultHandle ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->GetAllItems( params->pResultHandle ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems( void *args ) NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->GetItemsByID( params->pResultHandle, params->pInstanceIDs, params->unCountInstanceIDs ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->SerializeResult( params->resultHandle, params->pOutBuffer, params->punOutBufferSize ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult( void *ar NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->DeserializeResult( params->pOutResultHandle, params->pBuffer, params->unBufferSize, params->bRESERVED_MUST_BE_FALSE ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult( void * NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->GenerateItems( params->pResultHandle, params->pArrayItemDefs, params->punArrayQuantity, params->unArrayLength ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->GrantPromoItems( params->pResultHandle ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems( void *ar NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->AddPromoItem( params->pResultHandle, params->itemDef ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->AddPromoItems( params->pResultHandle, params->pArrayItemDefs, params->unArrayLength ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->ConsumeItem( params->pResultHandle, params->itemConsume, params->unQuantity ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem( void *args ) NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->ExchangeItems( params->pResultHandle, params->pArrayGenerate, params->punArrayGenerateQuantity, params->unArrayGenerateLength, params->pArrayDestroy, params->punArrayDestroyQuantity, params->unArrayDestroyLength ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->TransferItemQuantity( params->pResultHandle, params->itemIdSource, params->unQuantity, params->itemIdDest ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity( voi NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; iface->SendItemDropHeartbeat( ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat( vo NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->TriggerItemDrop( params->pResultHandle, params->dropListDefinition ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop( void *ar NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->TradeItems( params->pResultHandle, params->steamIDTradePartner, params->pArrayGive, params->pArrayGiveQuantity, params->nArrayGiveLength, params->pArrayGet, params->pArrayGetQuantity, params->nArrayGetLength ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems( void *args ) NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->LoadItemDefinitions( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions( void NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->GetItemDefinitionIDs( params->pItemDefIDs, params->punItemDefIDsArraySize ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs( voi NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->GetItemDefinitionProperty( params->iDefinition, params->pchPropertyName, params->pchValueBuffer, params->punValueBufferSizeOut ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->RequestEligiblePromoItemDefinitionsIDs( params->steamID ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemD NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->GetEligiblePromoItemDefinitionIDs( params->steamID, params->pItemDefIDs, params->punItemDefIDsArraySize ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefin NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->StartPurchase( params->pArrayItemDefs, params->punArrayQuantity, params->unArrayLength ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->RequestPrices( ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->GetNumItemsWithPrices( ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices( vo NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->GetItemsWithPrices( params->pArrayItemDefs, params->pCurrentPrices, params->pBasePrices, params->unArrayLength ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices( void NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->GetItemPrice( params->iDefinition, params->pCurrentPrice, params->pBasePrice ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->StartUpdateProperties( ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties( vo NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->RemoveProperty( params->handle, params->nItemID, params->pchPropertyName ); return 0; } @@ -264,7 +264,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty( void *arg NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->SetProperty( params->handle, params->nItemID, params->pchPropertyName, params->pchPropertyValue ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty( void *args ) NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->SetProperty( params->handle, params->nItemID, params->pchPropertyName, params->bValue ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->SetProperty( params->handle, params->nItemID, params->pchPropertyName, params->nValue ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->SetProperty( params->handle, params->nItemID, params->pchPropertyName, params->flValue ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4( void *args NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->SubmitUpdateProperties( params->handle, params->pResultHandle ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties( v NTSTATUS ISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem( void *args ) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem_params *params = (struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem_params *)args; - struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->linux_side; + struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *iface = (struct u_ISteamInventory_STEAMINVENTORY_INTERFACE_V003 *)params->u_iface; params->_ret = iface->InspectItem( params->pResultHandle, params->pchItemToken ); return 0; } diff --git a/lsteamclient/cppISteamMasterServerUpdater_SteamMasterServerUpdater001.cpp b/lsteamclient/cppISteamMasterServerUpdater_SteamMasterServerUpdater001.cpp index 3c92a14d..1d5fa956 100644 --- a/lsteamclient/cppISteamMasterServerUpdater_SteamMasterServerUpdater001.cpp +++ b/lsteamclient/cppISteamMasterServerUpdater_SteamMasterServerUpdater001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive( void *args ) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive_params *params = (struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive_params *)args; - struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->linux_side; + struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->u_iface; iface->SetActive( params->bActive ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive( void * NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval( void *args ) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval_params *params = (struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval_params *)args; - struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->linux_side; + struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->u_iface; iface->SetHeartbeatInterval( params->iHeartbeatInterval ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInter NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket( void *args ) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket_params *params = (struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket_params *)args; - struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->linux_side; + struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->u_iface; params->_ret = iface->HandleIncomingPacket( params->pData, params->cbData, params->srcIP, params->srcPort ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPac NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket( void *args ) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket_params *params = (struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket_params *)args; - struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->linux_side; + struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->u_iface; params->_ret = iface->GetNextOutgoingPacket( params->pOut, params->cbMaxOut, params->pNetAdr, params->pPort ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPa NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData( void *args ) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData_params *params = (struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData_params *)args; - struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->linux_side; + struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->u_iface; iface->SetBasicServerData( params->nProtocolVersion, params->bDedicatedServer, params->pRegionName, params->pProductName, params->nMaxReportedClients, params->bPasswordProtected, params->pGameDescription ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerDat NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues( void *args ) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues_params *params = (struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues_params *)args; - struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->linux_side; + struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->u_iface; iface->ClearAllKeyValues( ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue( void *args ) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue_params *params = (struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue_params *)args; - struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->linux_side; + struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->u_iface; iface->SetKeyValue( params->pKey, params->pValue ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue( void NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown( void *args ) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown_params *params = (struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown_params *)args; - struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->linux_side; + struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->u_iface; iface->NotifyShutdown( ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown( v NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested( void *args ) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested_params *params = (struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested_params *)args; - struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->linux_side; + struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->u_iface; params->_ret = iface->WasRestartRequested( ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequest NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat( void *args ) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat_params *params = (struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat_params *)args; - struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->linux_side; + struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->u_iface; iface->ForceHeartbeat( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat( v NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer( void *args ) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer_params *params = (struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer_params *)args; - struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->linux_side; + struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->u_iface; params->_ret = iface->AddMasterServer( params->pServerAddress ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer( NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer( void *args ) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer_params *params = (struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer_params *)args; - struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->linux_side; + struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->u_iface; params->_ret = iface->RemoveMasterServer( params->pServerAddress ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServe NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers( void *args ) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers_params *params = (struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers_params *)args; - struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->linux_side; + struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->u_iface; params->_ret = iface->GetNumMasterServers( ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServe NTSTATUS ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress( void *args ) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress_params *params = (struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress_params *)args; - struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->linux_side; + struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *iface = (struct u_ISteamMasterServerUpdater_SteamMasterServerUpdater001 *)params->u_iface; params->_ret = iface->GetMasterServerAddress( params->iServer, params->pOut, params->outBufferSize ); return 0; } diff --git a/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers001.cpp b/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers001.cpp index 332051ce..eccbcf04 100644 --- a/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers001.cpp +++ b/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->u_iface; params->_ret = iface->GetServerDetails( params->eType, params->iServer ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails( v NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->u_iface; iface->CancelQuery( params->eType ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery( void * NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->u_iface; iface->RefreshQuery( params->eType ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery( void NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->u_iface; params->_ret = iface->IsRefreshing( params->eType ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing( void NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->u_iface; params->_ret = iface->GetServerCount( params->eType ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount( voi NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->u_iface; iface->RefreshServer( params->eType, params->iServer ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer( void NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->u_iface; iface->CancelServerQuery( params->hServerQuery ); return 0; } diff --git a/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers002.cpp b/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers002.cpp index 81b1d2b3..383a05d9 100644 --- a/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers002.cpp +++ b/lsteamclient/cppISteamMatchmakingServers_SteamMatchMakingServers002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->u_iface; params->_ret = iface->GetServerDetails( params->hRequest, params->iServer ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails( v NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->u_iface; iface->CancelQuery( params->hRequest ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery( void * NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->u_iface; iface->RefreshQuery( params->hRequest ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery( void NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->u_iface; params->_ret = iface->IsRefreshing( params->hRequest ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing( void NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->u_iface; params->_ret = iface->GetServerCount( params->hRequest ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount( voi NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->u_iface; iface->RefreshServer( params->hRequest, params->iServer ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer( void NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->u_iface; iface->CancelServerQuery( params->hServerQuery ); return 0; } diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking001.cpp b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking001.cpp index f8fd9fd7..174d6b11 100644 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking001.cpp +++ b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; params->_ret = iface->GetFavoriteGameCount( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; params->_ret = iface->GetFavoriteGame( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->punFlags, params->pRTime32LastPlayedOnServer ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; params->_ret = iface->AddFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->unFlags, params->rTime32LastPlayedOnServer ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; params->_ret = iface->RemoveFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->unFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; params->_ret = iface->GetFavoriteGame2( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->pnQueryPort, params->punFlags, params->pRTime32LastPlayedOnServer ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; params->_ret = iface->AddFavoriteGame2( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags, params->rTime32LastPlayedOnServer ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; params->_ret = iface->RemoveFavoriteGame2( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_RequestLobbyList( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_RequestLobbyList_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_RequestLobbyList_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; iface->RequestLobbyList( params->ulGameID, params->pFilters, params->nFilters ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_RequestLobbyList( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; *params->_ret = iface->GetLobbyByIndex( params->iLobby ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_CreateLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_CreateLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_CreateLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; iface->CreateLobby( params->ulGameID, params->bPrivate ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_CreateLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_JoinLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_JoinLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_JoinLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; iface->JoinLobby( params->steamIDLobby ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_JoinLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_LeaveLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_LeaveLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_LeaveLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; iface->LeaveLobby( params->steamIDLobby ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_LeaveLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; params->_ret = iface->InviteUserToLobby( params->steamIDLobby, params->steamIDInvitee ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; params->_ret = iface->GetNumLobbyMembers( params->steamIDLobby ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; *params->_ret = iface->GetLobbyMemberByIndex( params->steamIDLobby, params->iMember ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; params->_ret = iface->GetLobbyData( params->SteamIDLobby, params->pchKey ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_SetLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; params->_ret = iface->SetLobbyData( params->steamIDLobby, params->pchKey, params->pchValue ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_SetLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; params->_ret = iface->GetLobbyMemberData( params->steamIDLobby, params->steamIDUser, params->pchKey ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; params->_ret = iface->SetLobbyMemberData( params->steamIDLobby, params->pchKey, params->pchValue ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; params->_ret = iface->SendLobbyChatMsg( params->steamIDLobby, params->pvMsgBody, params->cubMsgBody ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; params->_ret = iface->GetLobbyChatEntry( params->steamIDLobby, params->iChatID, params->pSteamIDUser, params->pvData, params->cubData, params->peChatEntryType ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking001_RequestLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking001_RequestLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking001_RequestLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking001 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking001 *)params->u_iface; params->_ret = iface->RequestLobbyData( params->steamIDLobby ); return 0; } diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking002.cpp b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking002.cpp index 2b7a34de..7664b27c 100644 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking002.cpp +++ b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; params->_ret = iface->GetFavoriteGameCount( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; params->_ret = iface->GetFavoriteGame( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->pnQueryPort, params->punFlags, params->pRTime32LastPlayedOnServer ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; params->_ret = iface->AddFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags, params->rTime32LastPlayedOnServer ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; params->_ret = iface->RemoveFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking002_RequestLobbyList( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_RequestLobbyList_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_RequestLobbyList_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; iface->RequestLobbyList( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_RequestLobbyList( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; *params->_ret = iface->GetLobbyByIndex( params->iLobby ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking002_CreateLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_CreateLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_CreateLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; iface->CreateLobby( params->bPrivate ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_CreateLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking002_JoinLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_JoinLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_JoinLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; iface->JoinLobby( params->steamIDLobby ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_JoinLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking002_LeaveLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_LeaveLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_LeaveLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; iface->LeaveLobby( params->steamIDLobby ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_LeaveLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; params->_ret = iface->InviteUserToLobby( params->steamIDLobby, params->steamIDInvitee ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; params->_ret = iface->GetNumLobbyMembers( params->steamIDLobby ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; *params->_ret = iface->GetLobbyMemberByIndex( params->steamIDLobby, params->iMember ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; params->_ret = iface->GetLobbyData( params->steamIDLobby, params->pchKey ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking002_SetLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; params->_ret = iface->SetLobbyData( params->steamIDLobby, params->pchKey, params->pchValue ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_SetLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; params->_ret = iface->GetLobbyMemberData( params->steamIDLobby, params->steamIDUser, params->pchKey ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; iface->SetLobbyMemberData( params->steamIDLobby, params->pchKey, params->pchValue ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; params->_ret = iface->SendLobbyChatMsg( params->steamIDLobby, params->pvMsgBody, params->cubMsgBody ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; params->_ret = iface->GetLobbyChatEntry( params->steamIDLobby, params->iChatID, params->pSteamIDUser, params->pvData, params->cubData, params->peChatEntryType ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking002_RequestLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_RequestLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_RequestLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; params->_ret = iface->RequestLobbyData( params->steamIDLobby ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking002_RequestLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer( void *args ) { struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer_params *params = (struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking002 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking002 *)params->u_iface; iface->SetLobbyGameServer( params->steamIDLobby, params->unGameServerIP, params->unGameServerPort, params->steamIDGameServer ); return 0; } diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking003.cpp b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking003.cpp index 54ad6768..161a2b2d 100644 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking003.cpp +++ b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking003.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; params->_ret = iface->GetFavoriteGameCount( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; params->_ret = iface->GetFavoriteGame( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->pnQueryPort, params->punFlags, params->pRTime32LastPlayedOnServer ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; params->_ret = iface->AddFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags, params->rTime32LastPlayedOnServer ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; params->_ret = iface->RemoveFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_RequestLobbyList( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_RequestLobbyList_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_RequestLobbyList_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; iface->RequestLobbyList( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_RequestLobbyList( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; iface->AddRequestLobbyListFilter( params->pchKeyToMatch, params->pchValueToMatch ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter( void * NTSTATUS ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; iface->AddRequestLobbyListNumericalFilter( params->pchKeyToMatch, params->nValueToMatch, params->nComparisonType ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilte NTSTATUS ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; iface->AddRequestLobbyListSlotsAvailableFilter( ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailable NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; *params->_ret = iface->GetLobbyByIndex( params->iLobby ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_CreateLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_CreateLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_CreateLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; iface->CreateLobby( params->bPrivate ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_CreateLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_JoinLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_JoinLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_JoinLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; iface->JoinLobby( params->steamIDLobby ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_JoinLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_LeaveLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_LeaveLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_LeaveLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; iface->LeaveLobby( params->steamIDLobby ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_LeaveLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; params->_ret = iface->InviteUserToLobby( params->steamIDLobby, params->steamIDInvitee ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; params->_ret = iface->GetNumLobbyMembers( params->steamIDLobby ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; *params->_ret = iface->GetLobbyMemberByIndex( params->steamIDLobby, params->iMember ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; params->_ret = iface->GetLobbyData( params->steamIDLobby, params->pchKey ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_SetLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; params->_ret = iface->SetLobbyData( params->steamIDLobby, params->pchKey, params->pchValue ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_SetLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; params->_ret = iface->GetLobbyMemberData( params->steamIDLobby, params->steamIDUser, params->pchKey ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; iface->SetLobbyMemberData( params->steamIDLobby, params->pchKey, params->pchValue ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; params->_ret = iface->SendLobbyChatMsg( params->steamIDLobby, params->pvMsgBody, params->cubMsgBody ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; params->_ret = iface->GetLobbyChatEntry( params->steamIDLobby, params->iChatID, params->pSteamIDUser, params->pvData, params->cubData, params->peChatEntryType ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_RequestLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_RequestLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_RequestLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; params->_ret = iface->RequestLobbyData( params->steamIDLobby ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_RequestLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; iface->SetLobbyGameServer( params->steamIDLobby, params->unGameServerIP, params->unGameServerPort, params->steamIDGameServer ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; params->_ret = iface->GetLobbyGameServer( params->steamIDLobby, params->punGameServerIP, params->punGameServerPort, params->psteamIDGameServer ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; params->_ret = iface->SetLobbyMemberLimit( params->steamIDLobby, params->cMaxMembers ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; params->_ret = iface->GetLobbyMemberLimit( params->steamIDLobby ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; iface->SetLobbyVoiceEnabled( params->steamIDLobby, params->bVoiceEnabled ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies( void *args ) { struct ISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies_params *params = (struct ISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking003 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking003 *)params->u_iface; params->_ret = iface->RequestFriendsLobbies( ); return 0; } diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking004.cpp b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking004.cpp index 16dc7f4e..bb950630 100644 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking004.cpp +++ b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking004.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; params->_ret = iface->GetFavoriteGameCount( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; params->_ret = iface->GetFavoriteGame( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->pnQueryPort, params->punFlags, params->pRTime32LastPlayedOnServer ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; params->_ret = iface->AddFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags, params->rTime32LastPlayedOnServer ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; params->_ret = iface->RemoveFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_RequestLobbyList( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_RequestLobbyList_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_RequestLobbyList_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; iface->RequestLobbyList( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_RequestLobbyList( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; iface->AddRequestLobbyListFilter( params->pchKeyToMatch, params->pchValueToMatch ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter( void * NTSTATUS ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; iface->AddRequestLobbyListNumericalFilter( params->pchKeyToMatch, params->nValueToMatch, params->nComparisonType ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilte NTSTATUS ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; iface->AddRequestLobbyListSlotsAvailableFilter( ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailable NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; *params->_ret = iface->GetLobbyByIndex( params->iLobby ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_CreateLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_CreateLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_CreateLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; iface->CreateLobby( params->bPrivate ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_CreateLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_JoinLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_JoinLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_JoinLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; iface->JoinLobby( params->steamIDLobby ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_JoinLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_LeaveLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_LeaveLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_LeaveLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; iface->LeaveLobby( params->steamIDLobby ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_LeaveLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; params->_ret = iface->InviteUserToLobby( params->steamIDLobby, params->steamIDInvitee ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; params->_ret = iface->GetNumLobbyMembers( params->steamIDLobby ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; *params->_ret = iface->GetLobbyMemberByIndex( params->steamIDLobby, params->iMember ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; params->_ret = iface->GetLobbyData( params->steamIDLobby, params->pchKey ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_SetLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; params->_ret = iface->SetLobbyData( params->steamIDLobby, params->pchKey, params->pchValue ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_SetLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; params->_ret = iface->GetLobbyMemberData( params->steamIDLobby, params->steamIDUser, params->pchKey ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; iface->SetLobbyMemberData( params->steamIDLobby, params->pchKey, params->pchValue ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; params->_ret = iface->SendLobbyChatMsg( params->steamIDLobby, params->pvMsgBody, params->cubMsgBody ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; params->_ret = iface->GetLobbyChatEntry( params->steamIDLobby, params->iChatID, params->pSteamIDUser, params->pvData, params->cubData, params->peChatEntryType ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_RequestLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_RequestLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_RequestLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; params->_ret = iface->RequestLobbyData( params->steamIDLobby ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_RequestLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; iface->SetLobbyGameServer( params->steamIDLobby, params->unGameServerIP, params->unGameServerPort, params->steamIDGameServer ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; params->_ret = iface->GetLobbyGameServer( params->steamIDLobby, params->punGameServerIP, params->punGameServerPort, params->psteamIDGameServer ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; params->_ret = iface->SetLobbyMemberLimit( params->steamIDLobby, params->cMaxMembers ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; params->_ret = iface->GetLobbyMemberLimit( params->steamIDLobby ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies( void *args ) { struct ISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies_params *params = (struct ISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking004 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking004 *)params->u_iface; params->_ret = iface->RequestFriendsLobbies( ); return 0; } diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking005.cpp b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking005.cpp index 9ae9b94a..04c5231f 100644 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking005.cpp +++ b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking005.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; params->_ret = iface->GetFavoriteGameCount( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; params->_ret = iface->GetFavoriteGame( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->pnQueryPort, params->punFlags, params->pRTime32LastPlayedOnServer ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; params->_ret = iface->AddFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags, params->rTime32LastPlayedOnServer ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; params->_ret = iface->RemoveFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_RequestLobbyList( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_RequestLobbyList_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_RequestLobbyList_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; iface->RequestLobbyList( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_RequestLobbyList( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; iface->AddRequestLobbyListFilter( params->pchKeyToMatch, params->pchValueToMatch ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter( void * NTSTATUS ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; iface->AddRequestLobbyListNumericalFilter( params->pchKeyToMatch, params->nValueToMatch, params->nComparisonType ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilte NTSTATUS ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; iface->AddRequestLobbyListSlotsAvailableFilter( ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailable NTSTATUS ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; iface->AddRequestLobbyListNearValueFilter( params->pchKeyToMatch, params->nValueToBeCloseTo ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilte NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; *params->_ret = iface->GetLobbyByIndex( params->iLobby ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_CreateLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_CreateLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_CreateLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; iface->CreateLobby( params->eLobbyType ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_CreateLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_JoinLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_JoinLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_JoinLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; iface->JoinLobby( params->steamIDLobby ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_JoinLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_LeaveLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_LeaveLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_LeaveLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; iface->LeaveLobby( params->steamIDLobby ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_LeaveLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; params->_ret = iface->InviteUserToLobby( params->steamIDLobby, params->steamIDInvitee ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; params->_ret = iface->GetNumLobbyMembers( params->steamIDLobby ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; *params->_ret = iface->GetLobbyMemberByIndex( params->steamIDLobby, params->iMember ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; params->_ret = iface->GetLobbyData( params->steamIDLobby, params->pchKey ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_SetLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; params->_ret = iface->SetLobbyData( params->steamIDLobby, params->pchKey, params->pchValue ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_SetLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; params->_ret = iface->GetLobbyMemberData( params->steamIDLobby, params->steamIDUser, params->pchKey ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; iface->SetLobbyMemberData( params->steamIDLobby, params->pchKey, params->pchValue ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; params->_ret = iface->SendLobbyChatMsg( params->steamIDLobby, params->pvMsgBody, params->cubMsgBody ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; params->_ret = iface->GetLobbyChatEntry( params->steamIDLobby, params->iChatID, params->pSteamIDUser, params->pvData, params->cubData, params->peChatEntryType ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_RequestLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_RequestLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_RequestLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; params->_ret = iface->RequestLobbyData( params->steamIDLobby ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_RequestLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; iface->SetLobbyGameServer( params->steamIDLobby, params->unGameServerIP, params->unGameServerPort, params->steamIDGameServer ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; params->_ret = iface->GetLobbyGameServer( params->steamIDLobby, params->punGameServerIP, params->punGameServerPort, params->psteamIDGameServer ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; params->_ret = iface->SetLobbyMemberLimit( params->steamIDLobby, params->cMaxMembers ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; params->_ret = iface->GetLobbyMemberLimit( params->steamIDLobby ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; params->_ret = iface->RequestFriendsLobbies( ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking005_SetLobbyType( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyType_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyType_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; params->_ret = iface->SetLobbyType( params->steamIDLobby, params->eLobbyType ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_SetLobbyType( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; *params->_ret = iface->GetLobbyOwner( params->steamIDLobby ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance( void *args ) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance_params *params = (struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking005 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking005 *)params->u_iface; params->_ret = iface->GetLobbyDistance( params->steamIDLobby ); return 0; } diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking006.cpp b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking006.cpp index c0530f36..e9c225a9 100644 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking006.cpp +++ b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking006.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->GetFavoriteGameCount( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->GetFavoriteGame( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->pnQueryPort, params->punFlags, params->pRTime32LastPlayedOnServer ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->AddFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags, params->rTime32LastPlayedOnServer ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->RemoveFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_RequestLobbyList( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_RequestLobbyList_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_RequestLobbyList_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->RequestLobbyList( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_RequestLobbyList( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; iface->AddRequestLobbyListFilter( params->pchKeyToMatch, params->pchValueToMatch ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter( void * NTSTATUS ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; iface->AddRequestLobbyListNumericalFilter( params->pchKeyToMatch, params->nValueToMatch, params->nComparisonType ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilte NTSTATUS ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; iface->AddRequestLobbyListNearValueFilter( params->pchKeyToMatch, params->nValueToBeCloseTo ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilte NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; *params->_ret = iface->GetLobbyByIndex( params->iLobby ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_CreateLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_CreateLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_CreateLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->CreateLobby( params->eLobbyType ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_CreateLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_JoinLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_JoinLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_JoinLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->JoinLobby( params->steamIDLobby ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_JoinLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_LeaveLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_LeaveLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_LeaveLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; iface->LeaveLobby( params->steamIDLobby ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_LeaveLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->InviteUserToLobby( params->steamIDLobby, params->steamIDInvitee ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->GetNumLobbyMembers( params->steamIDLobby ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; *params->_ret = iface->GetLobbyMemberByIndex( params->steamIDLobby, params->iMember ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->GetLobbyData( params->steamIDLobby, params->pchKey ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_SetLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->SetLobbyData( params->steamIDLobby, params->pchKey, params->pchValue ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_SetLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->GetLobbyMemberData( params->steamIDLobby, params->steamIDUser, params->pchKey ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; iface->SetLobbyMemberData( params->steamIDLobby, params->pchKey, params->pchValue ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->SendLobbyChatMsg( params->steamIDLobby, params->pvMsgBody, params->cubMsgBody ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->GetLobbyChatEntry( params->steamIDLobby, params->iChatID, params->pSteamIDUser, params->pvData, params->cubData, params->peChatEntryType ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_RequestLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_RequestLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_RequestLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->RequestLobbyData( params->steamIDLobby ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_RequestLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; iface->SetLobbyGameServer( params->steamIDLobby, params->unGameServerIP, params->unGameServerPort, params->steamIDGameServer ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->GetLobbyGameServer( params->steamIDLobby, params->punGameServerIP, params->punGameServerPort, params->psteamIDGameServer ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->SetLobbyMemberLimit( params->steamIDLobby, params->cMaxMembers ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->GetLobbyMemberLimit( params->steamIDLobby ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_SetLobbyType( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyType_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyType_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; params->_ret = iface->SetLobbyType( params->steamIDLobby, params->eLobbyType ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking006_SetLobbyType( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner( void *args ) { struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner_params *params = (struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking006 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking006 *)params->u_iface; *params->_ret = iface->GetLobbyOwner( params->steamIDLobby ); return 0; } diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking007.cpp b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking007.cpp index 3dbb56dc..ea59ac60 100644 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking007.cpp +++ b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking007.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->GetFavoriteGameCount( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->GetFavoriteGame( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->pnQueryPort, params->punFlags, params->pRTime32LastPlayedOnServer ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->AddFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags, params->rTime32LastPlayedOnServer ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->RemoveFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_RequestLobbyList( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_RequestLobbyList_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_RequestLobbyList_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->RequestLobbyList( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_RequestLobbyList( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; iface->AddRequestLobbyListStringFilter( params->pchKeyToMatch, params->pchValueToMatch, params->eComparisonType ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter( NTSTATUS ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; iface->AddRequestLobbyListNumericalFilter( params->pchKeyToMatch, params->nValueToMatch, params->eComparisonType ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilte NTSTATUS ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; iface->AddRequestLobbyListNearValueFilter( params->pchKeyToMatch, params->nValueToBeCloseTo ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilte NTSTATUS ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; iface->AddRequestLobbyListFilterSlotsAvailable( params->nSlotsAvailable ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAva NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; *params->_ret = iface->GetLobbyByIndex( params->iLobby ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_CreateLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_CreateLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_CreateLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->CreateLobby( params->eLobbyType, params->cMaxMembers ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_CreateLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_JoinLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_JoinLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_JoinLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->JoinLobby( params->steamIDLobby ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_JoinLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_LeaveLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_LeaveLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_LeaveLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; iface->LeaveLobby( params->steamIDLobby ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_LeaveLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->InviteUserToLobby( params->steamIDLobby, params->steamIDInvitee ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->GetNumLobbyMembers( params->steamIDLobby ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; *params->_ret = iface->GetLobbyMemberByIndex( params->steamIDLobby, params->iMember ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->GetLobbyData( params->steamIDLobby, params->pchKey ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->SetLobbyData( params->steamIDLobby, params->pchKey, params->pchValue ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->GetLobbyDataCount( params->steamIDLobby ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->GetLobbyDataByIndex( params->steamIDLobby, params->iLobbyData, params->pchKey, params->cchKeyBufferSize, params->pchValue, params->cchValueBufferSize ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->DeleteLobbyData( params->steamIDLobby, params->pchKey ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->GetLobbyMemberData( params->steamIDLobby, params->steamIDUser, params->pchKey ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; iface->SetLobbyMemberData( params->steamIDLobby, params->pchKey, params->pchValue ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->SendLobbyChatMsg( params->steamIDLobby, params->pvMsgBody, params->cubMsgBody ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->GetLobbyChatEntry( params->steamIDLobby, params->iChatID, params->pSteamIDUser, params->pvData, params->cubData, params->peChatEntryType ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_RequestLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_RequestLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_RequestLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->RequestLobbyData( params->steamIDLobby ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_RequestLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; iface->SetLobbyGameServer( params->steamIDLobby, params->unGameServerIP, params->unGameServerPort, params->steamIDGameServer ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->GetLobbyGameServer( params->steamIDLobby, params->punGameServerIP, params->punGameServerPort, params->psteamIDGameServer ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->SetLobbyMemberLimit( params->steamIDLobby, params->cMaxMembers ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->GetLobbyMemberLimit( params->steamIDLobby ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyType( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyType_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyType_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->SetLobbyType( params->steamIDLobby, params->eLobbyType ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyType( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->SetLobbyJoinable( params->steamIDLobby, params->bLobbyJoinable ); return 0; } @@ -264,7 +264,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; *params->_ret = iface->GetLobbyOwner( params->steamIDLobby ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner( void *args ) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner_params *params = (struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking007 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking007 *)params->u_iface; params->_ret = iface->SetLobbyOwner( params->steamIDLobby, params->steamIDNewOwner ); return 0; } diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking008.cpp b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking008.cpp index daa43537..ade89298 100644 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking008.cpp +++ b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking008.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->GetFavoriteGameCount( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->GetFavoriteGame( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->pnQueryPort, params->punFlags, params->pRTime32LastPlayedOnServer ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->AddFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags, params->rTime32LastPlayedOnServer ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->RemoveFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_RequestLobbyList( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_RequestLobbyList_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_RequestLobbyList_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->RequestLobbyList( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_RequestLobbyList( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; iface->AddRequestLobbyListStringFilter( params->pchKeyToMatch, params->pchValueToMatch, params->eComparisonType ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter( NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; iface->AddRequestLobbyListNumericalFilter( params->pchKeyToMatch, params->nValueToMatch, params->eComparisonType ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilte NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; iface->AddRequestLobbyListNearValueFilter( params->pchKeyToMatch, params->nValueToBeCloseTo ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilte NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; iface->AddRequestLobbyListFilterSlotsAvailable( params->nSlotsAvailable ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAva NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; iface->AddRequestLobbyListDistanceFilter( params->eLobbyDistanceFilter ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; iface->AddRequestLobbyListResultCountFilter( params->cMaxResults ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFil NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; *params->_ret = iface->GetLobbyByIndex( params->iLobby ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_CreateLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_CreateLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_CreateLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->CreateLobby( params->eLobbyType, params->cMaxMembers ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_CreateLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_JoinLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_JoinLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_JoinLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->JoinLobby( params->steamIDLobby ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_JoinLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_LeaveLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_LeaveLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_LeaveLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; iface->LeaveLobby( params->steamIDLobby ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_LeaveLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->InviteUserToLobby( params->steamIDLobby, params->steamIDInvitee ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->GetNumLobbyMembers( params->steamIDLobby ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; *params->_ret = iface->GetLobbyMemberByIndex( params->steamIDLobby, params->iMember ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->GetLobbyData( params->steamIDLobby, params->pchKey ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->SetLobbyData( params->steamIDLobby, params->pchKey, params->pchValue ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->GetLobbyDataCount( params->steamIDLobby ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->GetLobbyDataByIndex( params->steamIDLobby, params->iLobbyData, params->pchKey, params->cchKeyBufferSize, params->pchValue, params->cchValueBufferSize ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->DeleteLobbyData( params->steamIDLobby, params->pchKey ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->GetLobbyMemberData( params->steamIDLobby, params->steamIDUser, params->pchKey ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; iface->SetLobbyMemberData( params->steamIDLobby, params->pchKey, params->pchValue ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->SendLobbyChatMsg( params->steamIDLobby, params->pvMsgBody, params->cubMsgBody ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->GetLobbyChatEntry( params->steamIDLobby, params->iChatID, params->pSteamIDUser, params->pvData, params->cubData, params->peChatEntryType ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_RequestLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_RequestLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_RequestLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->RequestLobbyData( params->steamIDLobby ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_RequestLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; iface->SetLobbyGameServer( params->steamIDLobby, params->unGameServerIP, params->unGameServerPort, params->steamIDGameServer ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->GetLobbyGameServer( params->steamIDLobby, params->punGameServerIP, params->punGameServerPort, params->psteamIDGameServer ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->SetLobbyMemberLimit( params->steamIDLobby, params->cMaxMembers ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->GetLobbyMemberLimit( params->steamIDLobby ); return 0; } @@ -264,7 +264,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyType( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyType_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyType_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->SetLobbyType( params->steamIDLobby, params->eLobbyType ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyType( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->SetLobbyJoinable( params->steamIDLobby, params->bLobbyJoinable ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; *params->_ret = iface->GetLobbyOwner( params->steamIDLobby ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner( void *args ) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner_params *params = (struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking008 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking008 *)params->u_iface; params->_ret = iface->SetLobbyOwner( params->steamIDLobby, params->steamIDNewOwner ); return 0; } diff --git a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking009.cpp b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking009.cpp index 372fef8b..12eca081 100644 --- a/lsteamclient/cppISteamMatchmaking_SteamMatchMaking009.cpp +++ b/lsteamclient/cppISteamMatchmaking_SteamMatchMaking009.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->GetFavoriteGameCount( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->GetFavoriteGame( params->iGame, params->pnAppID, params->pnIP, params->pnConnPort, params->pnQueryPort, params->punFlags, params->pRTime32LastPlayedOnServer ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->AddFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags, params->rTime32LastPlayedOnServer ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->RemoveFavoriteGame( params->nAppID, params->nIP, params->nConnPort, params->nQueryPort, params->unFlags ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_RequestLobbyList( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_RequestLobbyList_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_RequestLobbyList_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->RequestLobbyList( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_RequestLobbyList( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; iface->AddRequestLobbyListStringFilter( params->pchKeyToMatch, params->pchValueToMatch, params->eComparisonType ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter( NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; iface->AddRequestLobbyListNumericalFilter( params->pchKeyToMatch, params->nValueToMatch, params->eComparisonType ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilte NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; iface->AddRequestLobbyListNearValueFilter( params->pchKeyToMatch, params->nValueToBeCloseTo ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilte NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; iface->AddRequestLobbyListFilterSlotsAvailable( params->nSlotsAvailable ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAva NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; iface->AddRequestLobbyListDistanceFilter( params->eLobbyDistanceFilter ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; iface->AddRequestLobbyListResultCountFilter( params->cMaxResults ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFil NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; iface->AddRequestLobbyListCompatibleMembersFilter( params->steamIDLobby ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMemb NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; *params->_ret = iface->GetLobbyByIndex( params->iLobby ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_CreateLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_CreateLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_CreateLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->CreateLobby( params->eLobbyType, params->cMaxMembers ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_CreateLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_JoinLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_JoinLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_JoinLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->JoinLobby( params->steamIDLobby ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_JoinLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_LeaveLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_LeaveLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_LeaveLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; iface->LeaveLobby( params->steamIDLobby ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_LeaveLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->InviteUserToLobby( params->steamIDLobby, params->steamIDInvitee ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->GetNumLobbyMembers( params->steamIDLobby ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; *params->_ret = iface->GetLobbyMemberByIndex( params->steamIDLobby, params->iMember ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex( void *args NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->GetLobbyData( params->steamIDLobby, params->pchKey ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->SetLobbyData( params->steamIDLobby, params->pchKey, params->pchValue ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->GetLobbyDataCount( params->steamIDLobby ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->GetLobbyDataByIndex( params->steamIDLobby, params->iLobbyData, params->pchKey, params->cchKeyBufferSize, params->pchValue, params->cchValueBufferSize ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->DeleteLobbyData( params->steamIDLobby, params->pchKey ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->GetLobbyMemberData( params->steamIDLobby, params->steamIDUser, params->pchKey ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; iface->SetLobbyMemberData( params->steamIDLobby, params->pchKey, params->pchValue ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->SendLobbyChatMsg( params->steamIDLobby, params->pvMsgBody, params->cubMsgBody ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->GetLobbyChatEntry( params->steamIDLobby, params->iChatID, params->pSteamIDUser, params->pvData, params->cubData, params->peChatEntryType ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_RequestLobbyData( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_RequestLobbyData_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_RequestLobbyData_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->RequestLobbyData( params->steamIDLobby ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_RequestLobbyData( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; iface->SetLobbyGameServer( params->steamIDLobby, params->unGameServerIP, params->unGameServerPort, params->steamIDGameServer ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->GetLobbyGameServer( params->steamIDLobby, params->punGameServerIP, params->punGameServerPort, params->psteamIDGameServer ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->SetLobbyMemberLimit( params->steamIDLobby, params->cMaxMembers ); return 0; } @@ -264,7 +264,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->GetLobbyMemberLimit( params->steamIDLobby ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyType( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyType_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyType_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->SetLobbyType( params->steamIDLobby, params->eLobbyType ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyType( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->SetLobbyJoinable( params->steamIDLobby, params->bLobbyJoinable ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; *params->_ret = iface->GetLobbyOwner( params->steamIDLobby ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->SetLobbyOwner( params->steamIDLobby, params->steamIDNewOwner ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner( void *args ) NTSTATUS ISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby( void *args ) { struct ISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby_params *params = (struct ISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby_params *)args; - struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->linux_side; + struct u_ISteamMatchmaking_SteamMatchMaking009 *iface = (struct u_ISteamMatchmaking_SteamMatchMaking009 *)params->u_iface; params->_ret = iface->SetLinkedLobby( params->steamIDLobby, params->steamIDLobbyDependent ); return 0; } diff --git a/lsteamclient/cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001.cpp index 6b9159c2..3a869418 100644 --- a/lsteamclient/cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->RegisterSteamMusicRemote( params->pchName ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMu NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->DeregisterSteamMusicRemote( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteam NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->BIsCurrentMusicRemote( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusic NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->BActivationSuccess( params->bValue ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSucc NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetDisplayName( params->pchDisplayName ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName( NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetPNGIcon_64x64( params->pvBuffer, params->cbBufferLength ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x6 NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->EnablePlayPrevious( params->bValue ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevi NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->EnablePlayNext( params->bValue ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext( NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->EnableShuffled( params->bValue ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled( NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->EnableLooped( params->bValue ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped( v NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->EnableQueue( params->bValue ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue( vo NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->EnablePlaylists( params->bValue ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->UpdatePlaybackStatus( params->nStatus ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackS NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->UpdateShuffled( params->bValue ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled( NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->UpdateLooped( params->bValue ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped( v NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->UpdateVolume( params->flValue ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume( v NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->CurrentEntryWillChange( ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWil NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->CurrentEntryIsAvailable( params->bAvailable ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsA NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->UpdateCurrentEntryText( params->pchText ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEn NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->UpdateCurrentEntryElapsedSeconds( params->nValue ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEn NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->UpdateCurrentEntryCoverArt( params->pvBuffer, params->cbBufferLength ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEn NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->CurrentEntryDidChange( ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDid NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->QueueWillChange( ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->ResetQueueEntries( ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntri NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetQueueEntry( params->nID, params->nPosition, params->pchEntryText ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry( NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetCurrentQueueEntry( params->nID ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueue NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->QueueDidChange( ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange( NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->PlaylistWillChange( ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillCha NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->ResetPlaylistEntries( ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEn NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetPlaylistEntry( params->nID, params->nPosition, params->pchEntryText ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntr NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetCurrentPlaylistEntry( params->nID ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlayl NTSTATUS ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange( void *args ) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange_params *params = (struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange_params *)args; - struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *iface = (struct u_ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->PlaylistDidChange( ); return 0; } diff --git a/lsteamclient/cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001.cpp index 6450a3de..81409216 100644 --- a/lsteamclient/cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamMusic_STEAMMUSIC_INTERFACE_VERSION001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled( void *args ) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled_params *params = (struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled_params *)args; - struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *iface = (struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *iface = (struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->BIsEnabled( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled( void *args ) NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying( void *args ) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying_params *params = (struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying_params *)args; - struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *iface = (struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *iface = (struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->BIsPlaying( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying( void *args ) NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus( void *args ) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus_params *params = (struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus_params *)args; - struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *iface = (struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *iface = (struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetPlaybackStatus( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus( void *ar NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play( void *args ) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play_params *params = (struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play_params *)args; - struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *iface = (struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *iface = (struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *)params->u_iface; iface->Play( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play( void *args ) NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause( void *args ) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause_params *params = (struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause_params *)args; - struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *iface = (struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *iface = (struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *)params->u_iface; iface->Pause( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause( void *args ) NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious( void *args ) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious_params *params = (struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious_params *)args; - struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *iface = (struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *iface = (struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *)params->u_iface; iface->PlayPrevious( ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious( void *args ) NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext( void *args ) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext_params *params = (struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext_params *)args; - struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *iface = (struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *iface = (struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *)params->u_iface; iface->PlayNext( ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext( void *args ) NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume( void *args ) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume_params *params = (struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume_params *)args; - struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *iface = (struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *iface = (struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *)params->u_iface; iface->SetVolume( params->flVolume ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume( void *args ) NTSTATUS ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume( void *args ) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume_params *params = (struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume_params *)args; - struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *iface = (struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *iface = (struct u_ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetVolume( ); return 0; } diff --git a/lsteamclient/cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001.cpp b/lsteamclient/cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001.cpp index 2ca0b7ee..2af975e4 100644 --- a/lsteamclient/cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001.cpp +++ b/lsteamclient/cppISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort( void *args ) { struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort_params *params = (struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort_params *)args; - struct u_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 *iface = (struct u_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 *)params->linux_side; + struct u_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 *iface = (struct u_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 *)params->u_iface; iface->DestroyFakeUDPPort( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUD NTSTATUS ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP( void *args ) { struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP_params *params = (struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP_params *)args; - struct u_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 *iface = (struct u_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 *)params->linux_side; + struct u_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 *iface = (struct u_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 *)params->u_iface; params->_ret = iface->SendMessageToFakeIP( params->remoteAddress, params->pData, params->cbData, params->nSendFlags ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageTo NTSTATUS ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup( void *args ) { struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup_params *params = (struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup_params *)args; - struct u_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 *iface = (struct u_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 *)params->linux_side; + struct u_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 *iface = (struct u_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 *)params->u_iface; iface->ScheduleCleanup( params->remoteAddress ); return 0; } diff --git a/lsteamclient/cppISteamNetworkingMessages_SteamNetworkingMessages002.cpp b/lsteamclient/cppISteamNetworkingMessages_SteamNetworkingMessages002.cpp index 6bcb7b50..1251d3f9 100644 --- a/lsteamclient/cppISteamNetworkingMessages_SteamNetworkingMessages002.cpp +++ b/lsteamclient/cppISteamNetworkingMessages_SteamNetworkingMessages002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser( void *args ) { struct ISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser_params *params = (struct ISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser_params *)args; - struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *iface = (struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *)params->linux_side; + struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *iface = (struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *)params->u_iface; params->_ret = iface->SendMessageToUser( params->identityRemote, params->pubData, params->cubData, params->nSendFlags, params->nRemoteChannel ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser( NTSTATUS ISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser( void *args ) { struct ISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser_params *params = (struct ISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser_params *)args; - struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *iface = (struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *)params->linux_side; + struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *iface = (struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *)params->u_iface; params->_ret = iface->AcceptSessionWithUser( params->identityRemote ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUs NTSTATUS ISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser( void *args ) { struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser_params *params = (struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser_params *)args; - struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *iface = (struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *)params->linux_side; + struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *iface = (struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *)params->u_iface; params->_ret = iface->CloseSessionWithUser( params->identityRemote ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUse NTSTATUS ISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser( void *args ) { struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser_params *params = (struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser_params *)args; - struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *iface = (struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *)params->linux_side; + struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *iface = (struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *)params->u_iface; params->_ret = iface->CloseChannelWithUser( params->identityRemote, params->nLocalChannel ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUse NTSTATUS ISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo( void *args ) { struct ISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo_params *params = (struct ISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo_params *)args; - struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *iface = (struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *)params->linux_side; + struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *iface = (struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *)params->u_iface; params->_ret = iface->GetSessionConnectionInfo( params->identityRemote, params->pConnectionInfo, params->pQuickStatus ); return 0; } diff --git a/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002.cpp b/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002.cpp index 8ea15233..057e8287 100644 --- a/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002.cpp +++ b/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous( void *args ) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous_params *params = (struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous_params *)args; - struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *)params->linux_side; + struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *)params->u_iface; iface->SendP2PRendezvous( params->steamIDRemote, params->unConnectionIDSrc, params->pMsgRendezvous, params->cbRendezvous ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_S NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure( void *args ) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure_params *params = (struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure_params *)args; - struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *)params->linux_side; + struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *)params->u_iface; iface->SendP2PConnectionFailure( params->steamIDRemote, params->unConnectionIDDest, params->nReason, params->pszReason ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_S NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync( void *args ) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync_params *params = (struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync_params *)args; - struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *)params->linux_side; + struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *)params->u_iface; params->_ret = iface->GetCertAsync( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_G NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON( void *args ) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON_params *params = (struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON_params *)args; - struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *)params->linux_side; + struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *)params->u_iface; params->_ret = iface->GetNetworkConfigJSON( params->buf, params->cbBuf ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_G NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket( void *args ) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket_params *params = (struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket_params *)args; - struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *)params->linux_side; + struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *)params->u_iface; iface->CacheRelayTicket( params->pTicket, params->cbTicket ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_C NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount( void *args ) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount_params *params = (struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount_params *)args; - struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *)params->linux_side; + struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *)params->u_iface; params->_ret = iface->GetCachedRelayTicketCount( ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_G NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket( void *args ) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket_params *params = (struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket_params *)args; - struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *)params->linux_side; + struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *)params->u_iface; params->_ret = iface->GetCachedRelayTicket( params->idxTicket, params->buf, params->cbBuf ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_G NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg( void *args ) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg_params *params = (struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg_params *)args; - struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *)params->linux_side; + struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002 *)params->u_iface; iface->PostConnectionStateMsg( params->pMsg, params->cbMsg ); return 0; } diff --git a/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003.cpp b/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003.cpp index 1cc661c8..4fd8c9c3 100644 --- a/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003.cpp +++ b/lsteamclient/cppISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous( void *args ) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous_params *params = (struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous_params *)args; - struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *)params->linux_side; + struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *)params->u_iface; iface->SendP2PRendezvous( params->steamIDRemote, params->unConnectionIDSrc, params->pMsgRendezvous, params->cbRendezvous ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_S NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure( void *args ) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure_params *params = (struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure_params *)args; - struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *)params->linux_side; + struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *)params->u_iface; iface->SendP2PConnectionFailure( params->steamIDRemote, params->unConnectionIDDest, params->nReason, params->pszReason ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_S NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync( void *args ) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync_params *params = (struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync_params *)args; - struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *)params->linux_side; + struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *)params->u_iface; params->_ret = iface->GetCertAsync( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_G NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON( void *args ) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON_params *params = (struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON_params *)args; - struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *)params->linux_side; + struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *)params->u_iface; params->_ret = iface->GetNetworkConfigJSON( params->buf, params->cbBuf, params->pszLauncherPartner ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_G NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket( void *args ) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket_params *params = (struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket_params *)args; - struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *)params->linux_side; + struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *)params->u_iface; iface->CacheRelayTicket( params->pTicket, params->cbTicket ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_C NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount( void *args ) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount_params *params = (struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount_params *)args; - struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *)params->linux_side; + struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *)params->u_iface; params->_ret = iface->GetCachedRelayTicketCount( ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_G NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket( void *args ) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket_params *params = (struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket_params *)args; - struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *)params->linux_side; + struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *)params->u_iface; params->_ret = iface->GetCachedRelayTicket( params->idxTicket, params->buf, params->cbBuf ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_G NTSTATUS ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg( void *args ) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg_params *params = (struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg_params *)args; - struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *)params->linux_side; + struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *iface = (struct u_ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003 *)params->u_iface; iface->PostConnectionStateMsg( params->pMsg, params->cbMsg ); return 0; } diff --git a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets002.cpp b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets002.cpp index e9ec5bf1..15009b31 100644 --- a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets002.cpp +++ b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->CreateListenSocketIP( params->localAddress ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP( NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->ConnectByIPAddress( params->address ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress( v NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->CreateListenSocketP2P( params->nVirtualPort ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->ConnectP2P( params->identityRemote, params->nVirtualPort ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P( void *arg NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->AcceptConnection( params->hConn ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection( voi NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->CloseConnection( params->hPeer, params->nReason, params->pszDebug, params->bEnableLinger ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection( void NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->CloseListenSocket( params->hSocket ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->SetConnectionUserData( params->hPeer, params->nUserData ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->GetConnectionUserData( params->hPeer ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; iface->SetConnectionName( params->hPeer, params->pszName ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->GetConnectionName( params->hPeer, params->pszName, params->nMaxLen ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->SendMessageToConnection( params->hConn, params->pData, params->cbData, params->nSendFlags ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnecti NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->FlushMessagesOnConnection( params->hConn ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnec NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->GetConnectionInfo( params->hConn, params->pInfo ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->GetQuickConnectionStatus( params->hConn, params->pStats ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionSta NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->GetDetailedConnectionStatus( params->hConn, params->pszBuf, params->cbBuf ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnection NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->GetListenSocketAddress( params->hSocket, params->address ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddres NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->CreateSocketPair( params->pOutConnection1, params->pOutConnection2, params->bUseNetworkLoopback, params->pIdentity1, params->pIdentity2 ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair( voi NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->GetIdentity( params->pIdentity ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity( void *ar NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->ReceivedRelayAuthTicket( params->pvTicket, params->cbTicket, params->pOutParsedTicket ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTick NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->FindRelayAuthTicketForServer( params->identityGameServer, params->nVirtualPort, params->pOutParsedTicket ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketFo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->ConnectToHostedDedicatedServer( params->identityTarget, params->nVirtualPort ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedica NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->GetHostedDedicatedServerPort( ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->GetHostedDedicatedServerPOPID( ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->GetHostedDedicatedServerAddress( params->pRouting ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; params->_ret = iface->CreateHostedDedicatedServerListenSocket( params->nVirtualPort ); return 0; } diff --git a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets004.cpp b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets004.cpp index 75fba8f6..60109274 100644 --- a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets004.cpp +++ b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets004.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->CreateListenSocketIP( params->localAddress ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP( NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->ConnectByIPAddress( params->address ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress( v NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->CreateListenSocketP2P( params->nVirtualPort ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->ConnectP2P( params->identityRemote, params->nVirtualPort ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P( void *arg NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->AcceptConnection( params->hConn ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection( voi NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->CloseConnection( params->hPeer, params->nReason, params->pszDebug, params->bEnableLinger ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection( void NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->CloseListenSocket( params->hSocket ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->SetConnectionUserData( params->hPeer, params->nUserData ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->GetConnectionUserData( params->hPeer ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; iface->SetConnectionName( params->hPeer, params->pszName ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->GetConnectionName( params->hPeer, params->pszName, params->nMaxLen ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->SendMessageToConnection( params->hConn, params->pData, params->cbData, params->nSendFlags ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnecti NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->FlushMessagesOnConnection( params->hConn ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnec NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->GetConnectionInfo( params->hConn, params->pInfo ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->GetQuickConnectionStatus( params->hConn, params->pStats ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionSta NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->GetDetailedConnectionStatus( params->hConn, params->pszBuf, params->cbBuf ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnection NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->GetListenSocketAddress( params->hSocket, params->address ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddres NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->CreateSocketPair( params->pOutConnection1, params->pOutConnection2, params->bUseNetworkLoopback, params->pIdentity1, params->pIdentity2 ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair( voi NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->GetIdentity( params->pIdentity ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity( void *ar NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->InitAuthentication( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication( v NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->GetAuthenticationStatus( params->pDetails ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStat NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->ReceivedRelayAuthTicket( params->pvTicket, params->cbTicket, params->pOutParsedTicket ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTick NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->FindRelayAuthTicketForServer( params->identityGameServer, params->nVirtualPort, params->pOutParsedTicket ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketFo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->ConnectToHostedDedicatedServer( params->identityTarget, params->nVirtualPort ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedica NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->GetHostedDedicatedServerPort( ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->GetHostedDedicatedServerPOPID( ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->GetHostedDedicatedServerAddress( params->pRouting ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->CreateHostedDedicatedServerListenSocket( params->nVirtualPort ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicated NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; params->_ret = iface->GetGameCoordinatorServerLogin( params->pLoginInfo, params->pcbSignedBlob, params->pBlob ); return 0; } diff --git a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets006.cpp b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets006.cpp index 17ad5c6d..8bbeba9c 100644 --- a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets006.cpp +++ b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets006.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->CreateListenSocketIP( params->localAddress, params->nOptions, params->pOptions ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP( NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->ConnectByIPAddress( params->address, params->nOptions, params->pOptions ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress( v NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->CreateListenSocketP2P( params->nVirtualPort, params->nOptions, params->pOptions ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->ConnectP2P( params->identityRemote, params->nVirtualPort, params->nOptions, params->pOptions ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P( void *arg NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->AcceptConnection( params->hConn ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection( voi NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->CloseConnection( params->hPeer, params->nReason, params->pszDebug, params->bEnableLinger ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection( void NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->CloseListenSocket( params->hSocket ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->SetConnectionUserData( params->hPeer, params->nUserData ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->GetConnectionUserData( params->hPeer ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; iface->SetConnectionName( params->hPeer, params->pszName ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->GetConnectionName( params->hPeer, params->pszName, params->nMaxLen ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->SendMessageToConnection( params->hConn, params->pData, params->cbData, params->nSendFlags, params->pOutMessageNumber ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnecti NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->FlushMessagesOnConnection( params->hConn ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnec NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->GetConnectionInfo( params->hConn, params->pInfo ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->GetQuickConnectionStatus( params->hConn, params->pStats ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionSta NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->GetDetailedConnectionStatus( params->hConn, params->pszBuf, params->cbBuf ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnection NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->GetListenSocketAddress( params->hSocket, params->address ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddres NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->CreateSocketPair( params->pOutConnection1, params->pOutConnection2, params->bUseNetworkLoopback, params->pIdentity1, params->pIdentity2 ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair( voi NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->GetIdentity( params->pIdentity ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity( void *ar NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->InitAuthentication( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication( v NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->GetAuthenticationStatus( params->pDetails ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStat NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->ReceivedRelayAuthTicket( params->pvTicket, params->cbTicket, params->pOutParsedTicket ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTick NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->FindRelayAuthTicketForServer( params->identityGameServer, params->nVirtualPort, params->pOutParsedTicket ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketFo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->ConnectToHostedDedicatedServer( params->identityTarget, params->nVirtualPort, params->nOptions, params->pOptions ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedica NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->GetHostedDedicatedServerPort( ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->GetHostedDedicatedServerPOPID( ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->GetHostedDedicatedServerAddress( params->pRouting ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->CreateHostedDedicatedServerListenSocket( params->nVirtualPort, params->nOptions, params->pOptions ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicated NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; params->_ret = iface->GetGameCoordinatorServerLogin( params->pLoginInfo, params->pcbSignedBlob, params->pBlob ); return 0; } diff --git a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets008.cpp b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets008.cpp index 5b764e4b..413207b9 100644 --- a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets008.cpp +++ b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets008.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->CreateListenSocketIP( params->localAddress, params->nOptions, params->pOptions ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP( NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->ConnectByIPAddress( params->address, params->nOptions, params->pOptions ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress( v NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->CreateListenSocketP2P( params->nVirtualPort, params->nOptions, params->pOptions ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->ConnectP2P( params->identityRemote, params->nVirtualPort, params->nOptions, params->pOptions ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P( void *arg NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->AcceptConnection( params->hConn ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection( voi NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->CloseConnection( params->hPeer, params->nReason, params->pszDebug, params->bEnableLinger ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection( void NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->CloseListenSocket( params->hSocket ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->SetConnectionUserData( params->hPeer, params->nUserData ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->GetConnectionUserData( params->hPeer ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; iface->SetConnectionName( params->hPeer, params->pszName ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->GetConnectionName( params->hPeer, params->pszName, params->nMaxLen ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->SendMessageToConnection( params->hConn, params->pData, params->cbData, params->nSendFlags, params->pOutMessageNumber ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnecti NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->FlushMessagesOnConnection( params->hConn ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnec NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->GetConnectionInfo( params->hConn, params->pInfo ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->GetQuickConnectionStatus( params->hConn, params->pStats ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionSta NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->GetDetailedConnectionStatus( params->hConn, params->pszBuf, params->cbBuf ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnection NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->GetListenSocketAddress( params->hSocket, params->address ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddres NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->CreateSocketPair( params->pOutConnection1, params->pOutConnection2, params->bUseNetworkLoopback, params->pIdentity1, params->pIdentity2 ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair( voi NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->GetIdentity( params->pIdentity ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity( void *ar NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->InitAuthentication( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication( v NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->GetAuthenticationStatus( params->pDetails ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStat NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->CreatePollGroup( ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup( void NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->DestroyPollGroup( params->hPollGroup ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup( voi NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->SetConnectionPollGroup( params->hConn, params->hPollGroup ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGrou NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->ReceivedRelayAuthTicket( params->pvTicket, params->cbTicket, params->pOutParsedTicket ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTick NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->FindRelayAuthTicketForServer( params->identityGameServer, params->nVirtualPort, params->pOutParsedTicket ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketFo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->ConnectToHostedDedicatedServer( params->identityTarget, params->nVirtualPort, params->nOptions, params->pOptions ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedica NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->GetHostedDedicatedServerPort( ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->GetHostedDedicatedServerPOPID( ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->GetHostedDedicatedServerAddress( params->pRouting ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->CreateHostedDedicatedServerListenSocket( params->nVirtualPort, params->nOptions, params->pOptions ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicated NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->GetGameCoordinatorServerLogin( params->pLoginInfo, params->pcbSignedBlob, params->pBlob ); return 0; } @@ -264,7 +264,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->GetCertificateRequest( params->pcbBlob, params->pBlob, params->errMsg ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; params->_ret = iface->SetCertificate( params->pCertificate, params->cbCertificate, params->errMsg ); return 0; } diff --git a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets009.cpp b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets009.cpp index c66141be..98b0c5b7 100644 --- a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets009.cpp +++ b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets009.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->CreateListenSocketIP( params->localAddress, params->nOptions, params->pOptions ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP( NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->ConnectByIPAddress( params->address, params->nOptions, params->pOptions ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress( v NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->CreateListenSocketP2P( params->nLocalVirtualPort, params->nOptions, params->pOptions ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->ConnectP2P( params->identityRemote, params->nRemoteVirtualPort, params->nOptions, params->pOptions ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P( void *arg NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->AcceptConnection( params->hConn ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection( voi NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->CloseConnection( params->hPeer, params->nReason, params->pszDebug, params->bEnableLinger ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection( void NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->CloseListenSocket( params->hSocket ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->SetConnectionUserData( params->hPeer, params->nUserData ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->GetConnectionUserData( params->hPeer ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; iface->SetConnectionName( params->hPeer, params->pszName ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->GetConnectionName( params->hPeer, params->pszName, params->nMaxLen ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->SendMessageToConnection( params->hConn, params->pData, params->cbData, params->nSendFlags, params->pOutMessageNumber ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnecti NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->FlushMessagesOnConnection( params->hConn ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnec NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->GetConnectionInfo( params->hConn, params->pInfo ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->GetQuickConnectionStatus( params->hConn, params->pStats ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionSta NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->GetDetailedConnectionStatus( params->hConn, params->pszBuf, params->cbBuf ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnection NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->GetListenSocketAddress( params->hSocket, params->address ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddres NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->CreateSocketPair( params->pOutConnection1, params->pOutConnection2, params->bUseNetworkLoopback, params->pIdentity1, params->pIdentity2 ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair( voi NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->GetIdentity( params->pIdentity ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity( void *ar NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->InitAuthentication( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication( v NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->GetAuthenticationStatus( params->pDetails ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStat NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->CreatePollGroup( ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup( void NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->DestroyPollGroup( params->hPollGroup ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup( voi NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->SetConnectionPollGroup( params->hConn, params->hPollGroup ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGrou NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->ReceivedRelayAuthTicket( params->pvTicket, params->cbTicket, params->pOutParsedTicket ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTick NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->FindRelayAuthTicketForServer( params->identityGameServer, params->nRemoteVirtualPort, params->pOutParsedTicket ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketFo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->ConnectToHostedDedicatedServer( params->identityTarget, params->nRemoteVirtualPort, params->nOptions, params->pOptions ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedica NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->GetHostedDedicatedServerPort( ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->GetHostedDedicatedServerPOPID( ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->GetHostedDedicatedServerAddress( params->pRouting ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->CreateHostedDedicatedServerListenSocket( params->nLocalVirtualPort, params->nOptions, params->pOptions ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicated NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->GetGameCoordinatorServerLogin( params->pLoginInfo, params->pcbSignedBlob, params->pBlob ); return 0; } @@ -264,7 +264,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->ConnectP2PCustomSignaling( params->pSignaling, params->pPeerIdentity, params->nRemoteVirtualPort, params->nOptions, params->pOptions ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSigna NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->ReceivedP2PCustomSignal( params->pMsg, params->cbMsg, params->pContext ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSign NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->GetCertificateRequest( params->pcbBlob, params->pBlob, params->errMsg ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; params->_ret = iface->SetCertificate( params->pCertificate, params->cbCertificate, params->errMsg ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate( void NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; iface->RunCallbacks( ); return 0; } diff --git a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets012.cpp b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets012.cpp index 812d4f36..ee835987 100644 --- a/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets012.cpp +++ b/lsteamclient/cppISteamNetworkingSockets_SteamNetworkingSockets012.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->CreateListenSocketIP( params->localAddress, params->nOptions, params->pOptions ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP( NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->ConnectByIPAddress( params->address, params->nOptions, params->pOptions ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress( v NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->CreateListenSocketP2P( params->nLocalVirtualPort, params->nOptions, params->pOptions ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->ConnectP2P( params->identityRemote, params->nRemoteVirtualPort, params->nOptions, params->pOptions ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P( void *arg NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->AcceptConnection( params->hConn ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection( voi NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->CloseConnection( params->hPeer, params->nReason, params->pszDebug, params->bEnableLinger ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection( void NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->CloseListenSocket( params->hSocket ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->SetConnectionUserData( params->hPeer, params->nUserData ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->GetConnectionUserData( params->hPeer ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; iface->SetConnectionName( params->hPeer, params->pszName ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->GetConnectionName( params->hPeer, params->pszName, params->nMaxLen ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->SendMessageToConnection( params->hConn, params->pData, params->cbData, params->nSendFlags, params->pOutMessageNumber ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnecti NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->FlushMessagesOnConnection( params->hConn ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnec NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->GetConnectionInfo( params->hConn, params->pInfo ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo( vo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->GetConnectionRealTimeStatus( params->hConn, params->pStatus, params->nLanes, params->pLanes ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTime NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->GetDetailedConnectionStatus( params->hConn, params->pszBuf, params->cbBuf ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnection NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->GetListenSocketAddress( params->hSocket, params->address ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddres NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->CreateSocketPair( params->pOutConnection1, params->pOutConnection2, params->bUseNetworkLoopback, params->pIdentity1, params->pIdentity2 ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair( voi NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->ConfigureConnectionLanes( params->hConn, params->nNumLanes, params->pLanePriorities, params->pLaneWeights ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLa NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->GetIdentity( params->pIdentity ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity( void *ar NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->InitAuthentication( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication( v NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->GetAuthenticationStatus( params->pDetails ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStat NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->CreatePollGroup( ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup( void NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->DestroyPollGroup( params->hPollGroup ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup( voi NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->SetConnectionPollGroup( params->hConn, params->hPollGroup ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGrou NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->ReceivedRelayAuthTicket( params->pvTicket, params->cbTicket, params->pOutParsedTicket ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTick NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->FindRelayAuthTicketForServer( params->identityGameServer, params->nRemoteVirtualPort, params->pOutParsedTicket ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketFo NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->ConnectToHostedDedicatedServer( params->identityTarget, params->nRemoteVirtualPort, params->nOptions, params->pOptions ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedica NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->GetHostedDedicatedServerPort( ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->GetHostedDedicatedServerPOPID( ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->GetHostedDedicatedServerAddress( params->pRouting ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->CreateHostedDedicatedServerListenSocket( params->nLocalVirtualPort, params->nOptions, params->pOptions ); return 0; } @@ -264,7 +264,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicated NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->GetGameCoordinatorServerLogin( params->pLoginInfo, params->pcbSignedBlob, params->pBlob ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorSer NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->ConnectP2PCustomSignaling( params->pSignaling, params->pPeerIdentity, params->nRemoteVirtualPort, params->nOptions, params->pOptions ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSigna NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->ReceivedP2PCustomSignal( params->pMsg, params->cbMsg, params->pContext ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSign NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->GetCertificateRequest( params->pcbBlob, params->pBlob, params->errMsg ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->SetCertificate( params->pCertificate, params->cbCertificate, params->errMsg ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate( void NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; iface->ResetIdentity( params->pIdentity ); return 0; } @@ -312,7 +312,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity( void * NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; iface->RunCallbacks( ); return 0; } @@ -320,7 +320,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks( void *a NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->BeginAsyncRequestFakeIP( params->nNumPorts ); return 0; } @@ -328,7 +328,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFake NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; iface->GetFakeIP( params->idxFirstPort, params->pInfo ); return 0; } @@ -336,7 +336,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP( void *args NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->CreateListenSocketP2PFakeIP( params->idxFakePort, params->nOptions, params->pOptions ); return 0; } @@ -344,7 +344,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->GetRemoteFakeIPForConnection( params->hConn, params->pOutAddr ); return 0; } @@ -352,7 +352,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForCon NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; params->_ret = iface->CreateFakeUDPPort( params->idxFakeServerPort ); return 0; } diff --git a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils001.cpp b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils001.cpp index 79fa48a9..e35611db 100644 --- a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils001.cpp +++ b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; params->_ret = iface->GetLocalPingLocation( params->result ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation( voi NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; params->_ret = iface->EstimatePingTimeBetweenTwoLocations( params->location1, params->location2 ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTw NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; params->_ret = iface->EstimatePingTimeFromLocalHost( params->remoteLocation ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocal NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; iface->ConvertPingLocationToString( params->location, params->pszBuf, params->cchBufSize ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToStri NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; params->_ret = iface->ParsePingLocationString( params->pszString, params->result ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString( NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; params->_ret = iface->CheckPingDataUpToDate( params->flMaxAgeSeconds ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate( vo NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; params->_ret = iface->IsPingMeasurementInProgress( ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgre NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; params->_ret = iface->GetPingToDataCenter( params->popID, params->pViaRelayPoP ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter( void NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; params->_ret = iface->GetDirectPingToPOP( params->popID ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP( void NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; params->_ret = iface->GetPOPCount( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount( void *args ) NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; params->_ret = iface->GetPOPList( params->list, params->nListSz ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList( void *args ) NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; params->_ret = iface->GetLocalTimestamp( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp( void * NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; void (*U_CDECL u_pfnFunc)(uint32_t, const char *) = manual_convert_SetDebugOutputFunction_pfnFunc( params->pfnFunc ); iface->SetDebugOutputFunction( params->eDetailLevel, u_pfnFunc ); return 0; @@ -113,7 +113,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction( v NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; params->_ret = iface->SetConfigValue( params->eValue, params->eScopeType, params->scopeObj, params->eDataType, params->pArg ); return 0; } @@ -121,7 +121,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue( void *arg NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; params->_ret = iface->GetConfigValue( params->eValue, params->eScopeType, params->scopeObj, params->pOutDataType, params->pResult, params->cbResult ); return 0; } @@ -129,7 +129,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue( void *arg NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; params->_ret = iface->GetConfigValueInfo( params->eValue, params->pOutName, params->pOutDataType, params->pOutScope, params->pOutNextValue ); return 0; } @@ -137,7 +137,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo( void NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; params->_ret = iface->GetFirstConfigValue( ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue( void NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; iface->SteamNetworkingIPAddr_ToString( params->addr, params->buf, params->cbBuf, params->bWithPort ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToS NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; params->_ret = iface->SteamNetworkingIPAddr_ParseString( params->pAddr, params->pszStr ); return 0; } @@ -161,7 +161,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_Par NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; iface->SteamNetworkingIdentity_ToString( params->identity, params->buf, params->cbBuf ); return 0; } @@ -169,7 +169,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_T NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils001 *)params->u_iface; params->_ret = iface->SteamNetworkingIdentity_ParseString( params->pIdentity, params->pszStr ); return 0; } diff --git a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils002.cpp b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils002.cpp index 20b6f3b4..9e047fee 100644 --- a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils002.cpp +++ b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; params->_ret = iface->GetRelayNetworkStatus( params->pDetails ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus( vo NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; params->_ret = iface->GetLocalPingLocation( params->result ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation( voi NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; params->_ret = iface->EstimatePingTimeBetweenTwoLocations( params->location1, params->location2 ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTw NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; params->_ret = iface->EstimatePingTimeFromLocalHost( params->remoteLocation ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocal NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; iface->ConvertPingLocationToString( params->location, params->pszBuf, params->cchBufSize ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToStri NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; params->_ret = iface->ParsePingLocationString( params->pszString, params->result ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString( NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; params->_ret = iface->CheckPingDataUpToDate( params->flMaxAgeSeconds ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate( vo NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; params->_ret = iface->GetPingToDataCenter( params->popID, params->pViaRelayPoP ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter( void NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; params->_ret = iface->GetDirectPingToPOP( params->popID ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP( void NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; params->_ret = iface->GetPOPCount( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount( void *args ) NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; params->_ret = iface->GetPOPList( params->list, params->nListSz ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList( void *args ) NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; params->_ret = iface->GetLocalTimestamp( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp( void * NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; void (*U_CDECL u_pfnFunc)(uint32_t, const char *) = manual_convert_SetDebugOutputFunction_pfnFunc( params->pfnFunc ); iface->SetDebugOutputFunction( params->eDetailLevel, u_pfnFunc ); return 0; @@ -113,7 +113,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction( v NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; params->_ret = iface->SetConfigValue( params->eValue, params->eScopeType, params->scopeObj, params->eDataType, params->pArg ); return 0; } @@ -121,7 +121,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue( void *arg NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; params->_ret = iface->GetConfigValue( params->eValue, params->eScopeType, params->scopeObj, params->pOutDataType, params->pResult, params->cbResult ); return 0; } @@ -129,7 +129,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue( void *arg NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; params->_ret = iface->GetConfigValueInfo( params->eValue, params->pOutName, params->pOutDataType, params->pOutScope, params->pOutNextValue ); return 0; } @@ -137,7 +137,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo( void NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; params->_ret = iface->GetFirstConfigValue( ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue( void NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; iface->SteamNetworkingIPAddr_ToString( params->addr, params->buf, params->cbBuf, params->bWithPort ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToS NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; params->_ret = iface->SteamNetworkingIPAddr_ParseString( params->pAddr, params->pszStr ); return 0; } @@ -161,7 +161,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_Par NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; iface->SteamNetworkingIdentity_ToString( params->identity, params->buf, params->cbBuf ); return 0; } @@ -169,7 +169,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_T NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils002 *)params->u_iface; params->_ret = iface->SteamNetworkingIdentity_ParseString( params->pIdentity, params->pszStr ); return 0; } diff --git a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils003.cpp b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils003.cpp index a1420f21..fc36b3ce 100644 --- a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils003.cpp +++ b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils003.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; params->_ret = iface->GetRelayNetworkStatus( params->pDetails ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus( vo NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; params->_ret = iface->GetLocalPingLocation( params->result ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation( voi NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; params->_ret = iface->EstimatePingTimeBetweenTwoLocations( params->location1, params->location2 ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTw NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; params->_ret = iface->EstimatePingTimeFromLocalHost( params->remoteLocation ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocal NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; iface->ConvertPingLocationToString( params->location, params->pszBuf, params->cchBufSize ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToStri NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; params->_ret = iface->ParsePingLocationString( params->pszString, params->result ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString( NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; params->_ret = iface->CheckPingDataUpToDate( params->flMaxAgeSeconds ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate( vo NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; params->_ret = iface->GetPingToDataCenter( params->popID, params->pViaRelayPoP ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter( void NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; params->_ret = iface->GetDirectPingToPOP( params->popID ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP( void NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; params->_ret = iface->GetPOPCount( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount( void *args ) NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; params->_ret = iface->GetPOPList( params->list, params->nListSz ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList( void *args ) NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; params->_ret = iface->GetLocalTimestamp( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp( void * NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; void (*U_CDECL u_pfnFunc)(uint32_t, const char *) = manual_convert_SetDebugOutputFunction_pfnFunc( params->pfnFunc ); iface->SetDebugOutputFunction( params->eDetailLevel, u_pfnFunc ); return 0; @@ -113,7 +113,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction( v NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; params->_ret = iface->GetConfigValue( params->eValue, params->eScopeType, params->scopeObj, params->pOutDataType, params->pResult, params->cbResult ); return 0; } @@ -121,7 +121,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue( void *arg NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; params->_ret = iface->GetConfigValueInfo( params->eValue, params->pOutName, params->pOutDataType, params->pOutScope, params->pOutNextValue ); return 0; } @@ -129,7 +129,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo( void NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; params->_ret = iface->GetFirstConfigValue( ); return 0; } @@ -137,7 +137,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue( void NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; iface->SteamNetworkingIPAddr_ToString( params->addr, params->buf, params->cbBuf, params->bWithPort ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToS NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; params->_ret = iface->SteamNetworkingIPAddr_ParseString( params->pAddr, params->pszStr ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_Par NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; iface->SteamNetworkingIdentity_ToString( params->identity, params->buf, params->cbBuf ); return 0; } @@ -161,7 +161,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_T NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; params->_ret = iface->SteamNetworkingIdentity_ParseString( params->pIdentity, params->pszStr ); return 0; } diff --git a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils004.cpp b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils004.cpp index a0fdf52e..a415fea1 100644 --- a/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils004.cpp +++ b/lsteamclient/cppISteamNetworkingUtils_SteamNetworkingUtils004.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->GetRelayNetworkStatus( params->pDetails ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus( vo NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->GetLocalPingLocation( params->result ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation( voi NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->EstimatePingTimeBetweenTwoLocations( params->location1, params->location2 ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTw NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->EstimatePingTimeFromLocalHost( params->remoteLocation ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocal NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; iface->ConvertPingLocationToString( params->location, params->pszBuf, params->cchBufSize ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToStri NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->ParsePingLocationString( params->pszString, params->result ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString( NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->CheckPingDataUpToDate( params->flMaxAgeSeconds ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate( vo NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->GetPingToDataCenter( params->popID, params->pViaRelayPoP ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter( void NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->GetDirectPingToPOP( params->popID ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP( void NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->GetPOPCount( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount( void *args ) NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->GetPOPList( params->list, params->nListSz ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList( void *args ) NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->GetLocalTimestamp( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp( void * NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; void (*U_CDECL u_pfnFunc)(uint32_t, const char *) = manual_convert_SetDebugOutputFunction_pfnFunc( params->pfnFunc ); iface->SetDebugOutputFunction( params->eDetailLevel, u_pfnFunc ); return 0; @@ -113,7 +113,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction( v NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->GetIPv4FakeIPType( params->nIPv4 ); return 0; } @@ -121,7 +121,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType( void * NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->GetRealIdentityForFakeIP( params->fakeIP, params->pOutRealIdentity ); return 0; } @@ -129,7 +129,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP( NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->GetConfigValue( params->eValue, params->eScopeType, params->scopeObj, params->pOutDataType, params->pResult, params->cbResult ); return 0; } @@ -137,7 +137,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue( void *arg NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->GetConfigValueInfo( params->eValue, params->pOutDataType, params->pOutScope ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo( void NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->IterateGenericEditableConfigValues( params->eCurrent, params->bEnumerateDevVars ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableCon NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; iface->SteamNetworkingIPAddr_ToString( params->addr, params->buf, params->cbBuf, params->bWithPort ); return 0; } @@ -161,7 +161,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToS NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->SteamNetworkingIPAddr_ParseString( params->pAddr, params->pszStr ); return 0; } @@ -169,7 +169,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_Par NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->SteamNetworkingIPAddr_GetFakeIPType( params->addr ); return 0; } @@ -177,7 +177,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_Get NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; iface->SteamNetworkingIdentity_ToString( params->identity, params->buf, params->cbBuf ); return 0; } @@ -185,7 +185,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_T NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; params->_ret = iface->SteamNetworkingIdentity_ParseString( params->pIdentity, params->pszStr ); return 0; } diff --git a/lsteamclient/cppISteamNetworking_SteamNetworking001.cpp b/lsteamclient/cppISteamNetworking_SteamNetworking001.cpp index 1a085c7d..5b21ac80 100644 --- a/lsteamclient/cppISteamNetworking_SteamNetworking001.cpp +++ b/lsteamclient/cppISteamNetworking_SteamNetworking001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworking_SteamNetworking001_CreateListenSocket( void *args ) { struct ISteamNetworking_SteamNetworking001_CreateListenSocket_params *params = (struct ISteamNetworking_SteamNetworking001_CreateListenSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->u_iface; params->_ret = iface->CreateListenSocket( params->nVirtualP2PPort, params->nIP, params->nPort ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworking_SteamNetworking001_CreateListenSocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket( void *args ) { struct ISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket_params *params = (struct ISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->u_iface; params->_ret = iface->CreateP2PConnectionSocket( params->steamIDTarget, params->nVirtualPort, params->nTimeoutSec ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket( void *ar NTSTATUS ISteamNetworking_SteamNetworking001_CreateConnectionSocket( void *args ) { struct ISteamNetworking_SteamNetworking001_CreateConnectionSocket_params *params = (struct ISteamNetworking_SteamNetworking001_CreateConnectionSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->u_iface; params->_ret = iface->CreateConnectionSocket( params->nIP, params->nPort, params->nTimeoutSec ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworking_SteamNetworking001_CreateConnectionSocket( void *args NTSTATUS ISteamNetworking_SteamNetworking001_DestroySocket( void *args ) { struct ISteamNetworking_SteamNetworking001_DestroySocket_params *params = (struct ISteamNetworking_SteamNetworking001_DestroySocket_params *)args; - struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->u_iface; params->_ret = iface->DestroySocket( params->hSocket, params->bNotifyRemoteEnd ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworking_SteamNetworking001_DestroySocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking001_DestroyListenSocket( void *args ) { struct ISteamNetworking_SteamNetworking001_DestroyListenSocket_params *params = (struct ISteamNetworking_SteamNetworking001_DestroyListenSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->u_iface; params->_ret = iface->DestroyListenSocket( params->hSocket, params->bNotifyRemoteEnd ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamNetworking_SteamNetworking001_DestroyListenSocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking001_SendDataOnSocket( void *args ) { struct ISteamNetworking_SteamNetworking001_SendDataOnSocket_params *params = (struct ISteamNetworking_SteamNetworking001_SendDataOnSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->u_iface; params->_ret = iface->SendDataOnSocket( params->hSocket, params->pubData, params->cubData, params->bReliable ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamNetworking_SteamNetworking001_SendDataOnSocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket( void *args ) { struct ISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket_params *params = (struct ISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->u_iface; params->_ret = iface->IsDataAvailableOnSocket( params->hSocket, params->pcubMsgSize ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket( void *args NTSTATUS ISteamNetworking_SteamNetworking001_RetrieveDataFromSocket( void *args ) { struct ISteamNetworking_SteamNetworking001_RetrieveDataFromSocket_params *params = (struct ISteamNetworking_SteamNetworking001_RetrieveDataFromSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->u_iface; params->_ret = iface->RetrieveDataFromSocket( params->hSocket, params->pubDest, params->cubDest, params->pcubMsgSize ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamNetworking_SteamNetworking001_RetrieveDataFromSocket( void *args NTSTATUS ISteamNetworking_SteamNetworking001_IsDataAvailable( void *args ) { struct ISteamNetworking_SteamNetworking001_IsDataAvailable_params *params = (struct ISteamNetworking_SteamNetworking001_IsDataAvailable_params *)args; - struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->u_iface; params->_ret = iface->IsDataAvailable( params->hListenSocket, params->pcubMsgSize, params->phSocket ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamNetworking_SteamNetworking001_IsDataAvailable( void *args ) NTSTATUS ISteamNetworking_SteamNetworking001_RetrieveData( void *args ) { struct ISteamNetworking_SteamNetworking001_RetrieveData_params *params = (struct ISteamNetworking_SteamNetworking001_RetrieveData_params *)args; - struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->u_iface; params->_ret = iface->RetrieveData( params->hListenSocket, params->pubDest, params->cubDest, params->pcubMsgSize, params->phSocket ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamNetworking_SteamNetworking001_RetrieveData( void *args ) NTSTATUS ISteamNetworking_SteamNetworking001_GetSocketInfo( void *args ) { struct ISteamNetworking_SteamNetworking001_GetSocketInfo_params *params = (struct ISteamNetworking_SteamNetworking001_GetSocketInfo_params *)args; - struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->u_iface; params->_ret = iface->GetSocketInfo( params->hSocket, params->pSteamIDRemote, params->peSocketStatus, params->punIPRemote, params->punPortRemote ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamNetworking_SteamNetworking001_GetSocketInfo( void *args ) NTSTATUS ISteamNetworking_SteamNetworking001_GetListenSocketInfo( void *args ) { struct ISteamNetworking_SteamNetworking001_GetListenSocketInfo_params *params = (struct ISteamNetworking_SteamNetworking001_GetListenSocketInfo_params *)args; - struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking001 *iface = (struct u_ISteamNetworking_SteamNetworking001 *)params->u_iface; params->_ret = iface->GetListenSocketInfo( params->hListenSocket, params->pnIP, params->pnPort ); return 0; } diff --git a/lsteamclient/cppISteamNetworking_SteamNetworking002.cpp b/lsteamclient/cppISteamNetworking_SteamNetworking002.cpp index 87c1879e..c446eac6 100644 --- a/lsteamclient/cppISteamNetworking_SteamNetworking002.cpp +++ b/lsteamclient/cppISteamNetworking_SteamNetworking002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworking_SteamNetworking002_CreateListenSocket( void *args ) { struct ISteamNetworking_SteamNetworking002_CreateListenSocket_params *params = (struct ISteamNetworking_SteamNetworking002_CreateListenSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->u_iface; params->_ret = iface->CreateListenSocket( params->nVirtualP2PPort, params->nIP, params->nPort, params->bAllowUseOfPacketRelay ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworking_SteamNetworking002_CreateListenSocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket( void *args ) { struct ISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket_params *params = (struct ISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->u_iface; params->_ret = iface->CreateP2PConnectionSocket( params->steamIDTarget, params->nVirtualPort, params->nTimeoutSec, params->bAllowUseOfPacketRelay ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket( void *ar NTSTATUS ISteamNetworking_SteamNetworking002_CreateConnectionSocket( void *args ) { struct ISteamNetworking_SteamNetworking002_CreateConnectionSocket_params *params = (struct ISteamNetworking_SteamNetworking002_CreateConnectionSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->u_iface; params->_ret = iface->CreateConnectionSocket( params->nIP, params->nPort, params->nTimeoutSec ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworking_SteamNetworking002_CreateConnectionSocket( void *args NTSTATUS ISteamNetworking_SteamNetworking002_DestroySocket( void *args ) { struct ISteamNetworking_SteamNetworking002_DestroySocket_params *params = (struct ISteamNetworking_SteamNetworking002_DestroySocket_params *)args; - struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->u_iface; params->_ret = iface->DestroySocket( params->hSocket, params->bNotifyRemoteEnd ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworking_SteamNetworking002_DestroySocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking002_DestroyListenSocket( void *args ) { struct ISteamNetworking_SteamNetworking002_DestroyListenSocket_params *params = (struct ISteamNetworking_SteamNetworking002_DestroyListenSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->u_iface; params->_ret = iface->DestroyListenSocket( params->hSocket, params->bNotifyRemoteEnd ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamNetworking_SteamNetworking002_DestroyListenSocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking002_SendDataOnSocket( void *args ) { struct ISteamNetworking_SteamNetworking002_SendDataOnSocket_params *params = (struct ISteamNetworking_SteamNetworking002_SendDataOnSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->u_iface; params->_ret = iface->SendDataOnSocket( params->hSocket, params->pubData, params->cubData, params->bReliable ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamNetworking_SteamNetworking002_SendDataOnSocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket( void *args ) { struct ISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket_params *params = (struct ISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->u_iface; params->_ret = iface->IsDataAvailableOnSocket( params->hSocket, params->pcubMsgSize ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket( void *args NTSTATUS ISteamNetworking_SteamNetworking002_RetrieveDataFromSocket( void *args ) { struct ISteamNetworking_SteamNetworking002_RetrieveDataFromSocket_params *params = (struct ISteamNetworking_SteamNetworking002_RetrieveDataFromSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->u_iface; params->_ret = iface->RetrieveDataFromSocket( params->hSocket, params->pubDest, params->cubDest, params->pcubMsgSize ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamNetworking_SteamNetworking002_RetrieveDataFromSocket( void *args NTSTATUS ISteamNetworking_SteamNetworking002_IsDataAvailable( void *args ) { struct ISteamNetworking_SteamNetworking002_IsDataAvailable_params *params = (struct ISteamNetworking_SteamNetworking002_IsDataAvailable_params *)args; - struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->u_iface; params->_ret = iface->IsDataAvailable( params->hListenSocket, params->pcubMsgSize, params->phSocket ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamNetworking_SteamNetworking002_IsDataAvailable( void *args ) NTSTATUS ISteamNetworking_SteamNetworking002_RetrieveData( void *args ) { struct ISteamNetworking_SteamNetworking002_RetrieveData_params *params = (struct ISteamNetworking_SteamNetworking002_RetrieveData_params *)args; - struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->u_iface; params->_ret = iface->RetrieveData( params->hListenSocket, params->pubDest, params->cubDest, params->pcubMsgSize, params->phSocket ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamNetworking_SteamNetworking002_RetrieveData( void *args ) NTSTATUS ISteamNetworking_SteamNetworking002_GetSocketInfo( void *args ) { struct ISteamNetworking_SteamNetworking002_GetSocketInfo_params *params = (struct ISteamNetworking_SteamNetworking002_GetSocketInfo_params *)args; - struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->u_iface; params->_ret = iface->GetSocketInfo( params->hSocket, params->pSteamIDRemote, params->peSocketStatus, params->punIPRemote, params->punPortRemote ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamNetworking_SteamNetworking002_GetSocketInfo( void *args ) NTSTATUS ISteamNetworking_SteamNetworking002_GetListenSocketInfo( void *args ) { struct ISteamNetworking_SteamNetworking002_GetListenSocketInfo_params *params = (struct ISteamNetworking_SteamNetworking002_GetListenSocketInfo_params *)args; - struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->u_iface; params->_ret = iface->GetListenSocketInfo( params->hListenSocket, params->pnIP, params->pnPort ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamNetworking_SteamNetworking002_GetListenSocketInfo( void *args ) NTSTATUS ISteamNetworking_SteamNetworking002_GetSocketConnectionType( void *args ) { struct ISteamNetworking_SteamNetworking002_GetSocketConnectionType_params *params = (struct ISteamNetworking_SteamNetworking002_GetSocketConnectionType_params *)args; - struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->u_iface; params->_ret = iface->GetSocketConnectionType( params->hSocket ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamNetworking_SteamNetworking002_GetSocketConnectionType( void *args NTSTATUS ISteamNetworking_SteamNetworking002_GetMaxPacketSize( void *args ) { struct ISteamNetworking_SteamNetworking002_GetMaxPacketSize_params *params = (struct ISteamNetworking_SteamNetworking002_GetMaxPacketSize_params *)args; - struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking002 *iface = (struct u_ISteamNetworking_SteamNetworking002 *)params->u_iface; params->_ret = iface->GetMaxPacketSize( params->hSocket ); return 0; } diff --git a/lsteamclient/cppISteamNetworking_SteamNetworking003.cpp b/lsteamclient/cppISteamNetworking_SteamNetworking003.cpp index 9bbc09ea..cb313324 100644 --- a/lsteamclient/cppISteamNetworking_SteamNetworking003.cpp +++ b/lsteamclient/cppISteamNetworking_SteamNetworking003.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_SendP2PPacket( void *args ) { struct ISteamNetworking_SteamNetworking003_SendP2PPacket_params *params = (struct ISteamNetworking_SteamNetworking003_SendP2PPacket_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->SendP2PPacket( params->steamIDRemote, params->pubData, params->cubData, params->eP2PSendType ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_SendP2PPacket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking003_IsP2PPacketAvailable( void *args ) { struct ISteamNetworking_SteamNetworking003_IsP2PPacketAvailable_params *params = (struct ISteamNetworking_SteamNetworking003_IsP2PPacketAvailable_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->IsP2PPacketAvailable( params->pcubMsgSize ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_IsP2PPacketAvailable( void *args ) NTSTATUS ISteamNetworking_SteamNetworking003_ReadP2PPacket( void *args ) { struct ISteamNetworking_SteamNetworking003_ReadP2PPacket_params *params = (struct ISteamNetworking_SteamNetworking003_ReadP2PPacket_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->ReadP2PPacket( params->pubDest, params->cubDest, params->pcubMsgSize, params->psteamIDRemote ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_ReadP2PPacket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser( void *args ) { struct ISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser_params *params = (struct ISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->AcceptP2PSessionWithUser( params->steamIDRemote ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser( void *arg NTSTATUS ISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser( void *args ) { struct ISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser_params *params = (struct ISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->CloseP2PSessionWithUser( params->steamIDRemote ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser( void *args NTSTATUS ISteamNetworking_SteamNetworking003_GetP2PSessionState( void *args ) { struct ISteamNetworking_SteamNetworking003_GetP2PSessionState_params *params = (struct ISteamNetworking_SteamNetworking003_GetP2PSessionState_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->GetP2PSessionState( params->steamIDRemote, params->pConnectionState ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_GetP2PSessionState( void *args ) NTSTATUS ISteamNetworking_SteamNetworking003_CreateListenSocket( void *args ) { struct ISteamNetworking_SteamNetworking003_CreateListenSocket_params *params = (struct ISteamNetworking_SteamNetworking003_CreateListenSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->CreateListenSocket( params->nVirtualP2PPort, params->nIP, params->nPort, params->bAllowUseOfPacketRelay ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_CreateListenSocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket( void *args ) { struct ISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket_params *params = (struct ISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->CreateP2PConnectionSocket( params->steamIDTarget, params->nVirtualPort, params->nTimeoutSec, params->bAllowUseOfPacketRelay ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket( void *ar NTSTATUS ISteamNetworking_SteamNetworking003_CreateConnectionSocket( void *args ) { struct ISteamNetworking_SteamNetworking003_CreateConnectionSocket_params *params = (struct ISteamNetworking_SteamNetworking003_CreateConnectionSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->CreateConnectionSocket( params->nIP, params->nPort, params->nTimeoutSec ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_CreateConnectionSocket( void *args NTSTATUS ISteamNetworking_SteamNetworking003_DestroySocket( void *args ) { struct ISteamNetworking_SteamNetworking003_DestroySocket_params *params = (struct ISteamNetworking_SteamNetworking003_DestroySocket_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->DestroySocket( params->hSocket, params->bNotifyRemoteEnd ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_DestroySocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking003_DestroyListenSocket( void *args ) { struct ISteamNetworking_SteamNetworking003_DestroyListenSocket_params *params = (struct ISteamNetworking_SteamNetworking003_DestroyListenSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->DestroyListenSocket( params->hSocket, params->bNotifyRemoteEnd ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_DestroyListenSocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking003_SendDataOnSocket( void *args ) { struct ISteamNetworking_SteamNetworking003_SendDataOnSocket_params *params = (struct ISteamNetworking_SteamNetworking003_SendDataOnSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->SendDataOnSocket( params->hSocket, params->pubData, params->cubData, params->bReliable ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_SendDataOnSocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket( void *args ) { struct ISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket_params *params = (struct ISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->IsDataAvailableOnSocket( params->hSocket, params->pcubMsgSize ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket( void *args NTSTATUS ISteamNetworking_SteamNetworking003_RetrieveDataFromSocket( void *args ) { struct ISteamNetworking_SteamNetworking003_RetrieveDataFromSocket_params *params = (struct ISteamNetworking_SteamNetworking003_RetrieveDataFromSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->RetrieveDataFromSocket( params->hSocket, params->pubDest, params->cubDest, params->pcubMsgSize ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_RetrieveDataFromSocket( void *args NTSTATUS ISteamNetworking_SteamNetworking003_IsDataAvailable( void *args ) { struct ISteamNetworking_SteamNetworking003_IsDataAvailable_params *params = (struct ISteamNetworking_SteamNetworking003_IsDataAvailable_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->IsDataAvailable( params->hListenSocket, params->pcubMsgSize, params->phSocket ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_IsDataAvailable( void *args ) NTSTATUS ISteamNetworking_SteamNetworking003_RetrieveData( void *args ) { struct ISteamNetworking_SteamNetworking003_RetrieveData_params *params = (struct ISteamNetworking_SteamNetworking003_RetrieveData_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->RetrieveData( params->hListenSocket, params->pubDest, params->cubDest, params->pcubMsgSize, params->phSocket ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_RetrieveData( void *args ) NTSTATUS ISteamNetworking_SteamNetworking003_GetSocketInfo( void *args ) { struct ISteamNetworking_SteamNetworking003_GetSocketInfo_params *params = (struct ISteamNetworking_SteamNetworking003_GetSocketInfo_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->GetSocketInfo( params->hSocket, params->pSteamIDRemote, params->peSocketStatus, params->punIPRemote, params->punPortRemote ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_GetSocketInfo( void *args ) NTSTATUS ISteamNetworking_SteamNetworking003_GetListenSocketInfo( void *args ) { struct ISteamNetworking_SteamNetworking003_GetListenSocketInfo_params *params = (struct ISteamNetworking_SteamNetworking003_GetListenSocketInfo_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->GetListenSocketInfo( params->hListenSocket, params->pnIP, params->pnPort ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_GetListenSocketInfo( void *args ) NTSTATUS ISteamNetworking_SteamNetworking003_GetSocketConnectionType( void *args ) { struct ISteamNetworking_SteamNetworking003_GetSocketConnectionType_params *params = (struct ISteamNetworking_SteamNetworking003_GetSocketConnectionType_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->GetSocketConnectionType( params->hSocket ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamNetworking_SteamNetworking003_GetSocketConnectionType( void *args NTSTATUS ISteamNetworking_SteamNetworking003_GetMaxPacketSize( void *args ) { struct ISteamNetworking_SteamNetworking003_GetMaxPacketSize_params *params = (struct ISteamNetworking_SteamNetworking003_GetMaxPacketSize_params *)args; - struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking003 *iface = (struct u_ISteamNetworking_SteamNetworking003 *)params->u_iface; params->_ret = iface->GetMaxPacketSize( params->hSocket ); return 0; } diff --git a/lsteamclient/cppISteamNetworking_SteamNetworking004.cpp b/lsteamclient/cppISteamNetworking_SteamNetworking004.cpp index 77389116..122a705d 100644 --- a/lsteamclient/cppISteamNetworking_SteamNetworking004.cpp +++ b/lsteamclient/cppISteamNetworking_SteamNetworking004.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_SendP2PPacket( void *args ) { struct ISteamNetworking_SteamNetworking004_SendP2PPacket_params *params = (struct ISteamNetworking_SteamNetworking004_SendP2PPacket_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->SendP2PPacket( params->steamIDRemote, params->pubData, params->cubData, params->eP2PSendType, params->nVirtualPort ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_SendP2PPacket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking004_IsP2PPacketAvailable( void *args ) { struct ISteamNetworking_SteamNetworking004_IsP2PPacketAvailable_params *params = (struct ISteamNetworking_SteamNetworking004_IsP2PPacketAvailable_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->IsP2PPacketAvailable( params->pcubMsgSize, params->nVirtualPort ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_IsP2PPacketAvailable( void *args ) NTSTATUS ISteamNetworking_SteamNetworking004_ReadP2PPacket( void *args ) { struct ISteamNetworking_SteamNetworking004_ReadP2PPacket_params *params = (struct ISteamNetworking_SteamNetworking004_ReadP2PPacket_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->ReadP2PPacket( params->pubDest, params->cubDest, params->pcubMsgSize, params->psteamIDRemote, params->nVirtualPort ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_ReadP2PPacket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser( void *args ) { struct ISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser_params *params = (struct ISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->AcceptP2PSessionWithUser( params->steamIDRemote ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser( void *arg NTSTATUS ISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser( void *args ) { struct ISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser_params *params = (struct ISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->CloseP2PSessionWithUser( params->steamIDRemote ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser( void *args NTSTATUS ISteamNetworking_SteamNetworking004_GetP2PSessionState( void *args ) { struct ISteamNetworking_SteamNetworking004_GetP2PSessionState_params *params = (struct ISteamNetworking_SteamNetworking004_GetP2PSessionState_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->GetP2PSessionState( params->steamIDRemote, params->pConnectionState ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_GetP2PSessionState( void *args ) NTSTATUS ISteamNetworking_SteamNetworking004_CreateListenSocket( void *args ) { struct ISteamNetworking_SteamNetworking004_CreateListenSocket_params *params = (struct ISteamNetworking_SteamNetworking004_CreateListenSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->CreateListenSocket( params->nVirtualP2PPort, params->nIP, params->nPort, params->bAllowUseOfPacketRelay ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_CreateListenSocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket( void *args ) { struct ISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket_params *params = (struct ISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->CreateP2PConnectionSocket( params->steamIDTarget, params->nVirtualPort, params->nTimeoutSec, params->bAllowUseOfPacketRelay ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket( void *ar NTSTATUS ISteamNetworking_SteamNetworking004_CreateConnectionSocket( void *args ) { struct ISteamNetworking_SteamNetworking004_CreateConnectionSocket_params *params = (struct ISteamNetworking_SteamNetworking004_CreateConnectionSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->CreateConnectionSocket( params->nIP, params->nPort, params->nTimeoutSec ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_CreateConnectionSocket( void *args NTSTATUS ISteamNetworking_SteamNetworking004_DestroySocket( void *args ) { struct ISteamNetworking_SteamNetworking004_DestroySocket_params *params = (struct ISteamNetworking_SteamNetworking004_DestroySocket_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->DestroySocket( params->hSocket, params->bNotifyRemoteEnd ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_DestroySocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking004_DestroyListenSocket( void *args ) { struct ISteamNetworking_SteamNetworking004_DestroyListenSocket_params *params = (struct ISteamNetworking_SteamNetworking004_DestroyListenSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->DestroyListenSocket( params->hSocket, params->bNotifyRemoteEnd ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_DestroyListenSocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking004_SendDataOnSocket( void *args ) { struct ISteamNetworking_SteamNetworking004_SendDataOnSocket_params *params = (struct ISteamNetworking_SteamNetworking004_SendDataOnSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->SendDataOnSocket( params->hSocket, params->pubData, params->cubData, params->bReliable ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_SendDataOnSocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket( void *args ) { struct ISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket_params *params = (struct ISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->IsDataAvailableOnSocket( params->hSocket, params->pcubMsgSize ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket( void *args NTSTATUS ISteamNetworking_SteamNetworking004_RetrieveDataFromSocket( void *args ) { struct ISteamNetworking_SteamNetworking004_RetrieveDataFromSocket_params *params = (struct ISteamNetworking_SteamNetworking004_RetrieveDataFromSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->RetrieveDataFromSocket( params->hSocket, params->pubDest, params->cubDest, params->pcubMsgSize ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_RetrieveDataFromSocket( void *args NTSTATUS ISteamNetworking_SteamNetworking004_IsDataAvailable( void *args ) { struct ISteamNetworking_SteamNetworking004_IsDataAvailable_params *params = (struct ISteamNetworking_SteamNetworking004_IsDataAvailable_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->IsDataAvailable( params->hListenSocket, params->pcubMsgSize, params->phSocket ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_IsDataAvailable( void *args ) NTSTATUS ISteamNetworking_SteamNetworking004_RetrieveData( void *args ) { struct ISteamNetworking_SteamNetworking004_RetrieveData_params *params = (struct ISteamNetworking_SteamNetworking004_RetrieveData_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->RetrieveData( params->hListenSocket, params->pubDest, params->cubDest, params->pcubMsgSize, params->phSocket ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_RetrieveData( void *args ) NTSTATUS ISteamNetworking_SteamNetworking004_GetSocketInfo( void *args ) { struct ISteamNetworking_SteamNetworking004_GetSocketInfo_params *params = (struct ISteamNetworking_SteamNetworking004_GetSocketInfo_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->GetSocketInfo( params->hSocket, params->pSteamIDRemote, params->peSocketStatus, params->punIPRemote, params->punPortRemote ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_GetSocketInfo( void *args ) NTSTATUS ISteamNetworking_SteamNetworking004_GetListenSocketInfo( void *args ) { struct ISteamNetworking_SteamNetworking004_GetListenSocketInfo_params *params = (struct ISteamNetworking_SteamNetworking004_GetListenSocketInfo_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->GetListenSocketInfo( params->hListenSocket, params->pnIP, params->pnPort ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_GetListenSocketInfo( void *args ) NTSTATUS ISteamNetworking_SteamNetworking004_GetSocketConnectionType( void *args ) { struct ISteamNetworking_SteamNetworking004_GetSocketConnectionType_params *params = (struct ISteamNetworking_SteamNetworking004_GetSocketConnectionType_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->GetSocketConnectionType( params->hSocket ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamNetworking_SteamNetworking004_GetSocketConnectionType( void *args NTSTATUS ISteamNetworking_SteamNetworking004_GetMaxPacketSize( void *args ) { struct ISteamNetworking_SteamNetworking004_GetMaxPacketSize_params *params = (struct ISteamNetworking_SteamNetworking004_GetMaxPacketSize_params *)args; - struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking004 *iface = (struct u_ISteamNetworking_SteamNetworking004 *)params->u_iface; params->_ret = iface->GetMaxPacketSize( params->hSocket ); return 0; } diff --git a/lsteamclient/cppISteamNetworking_SteamNetworking005.cpp b/lsteamclient/cppISteamNetworking_SteamNetworking005.cpp index b681b92e..8c5bc1c5 100644 --- a/lsteamclient/cppISteamNetworking_SteamNetworking005.cpp +++ b/lsteamclient/cppISteamNetworking_SteamNetworking005.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_SendP2PPacket( void *args ) { struct ISteamNetworking_SteamNetworking005_SendP2PPacket_params *params = (struct ISteamNetworking_SteamNetworking005_SendP2PPacket_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->SendP2PPacket( params->steamIDRemote, params->pubData, params->cubData, params->eP2PSendType, params->nChannel ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_SendP2PPacket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking005_IsP2PPacketAvailable( void *args ) { struct ISteamNetworking_SteamNetworking005_IsP2PPacketAvailable_params *params = (struct ISteamNetworking_SteamNetworking005_IsP2PPacketAvailable_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->IsP2PPacketAvailable( params->pcubMsgSize, params->nChannel ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_IsP2PPacketAvailable( void *args ) NTSTATUS ISteamNetworking_SteamNetworking005_ReadP2PPacket( void *args ) { struct ISteamNetworking_SteamNetworking005_ReadP2PPacket_params *params = (struct ISteamNetworking_SteamNetworking005_ReadP2PPacket_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->ReadP2PPacket( params->pubDest, params->cubDest, params->pcubMsgSize, params->psteamIDRemote, params->nChannel ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_ReadP2PPacket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser( void *args ) { struct ISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser_params *params = (struct ISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->AcceptP2PSessionWithUser( params->steamIDRemote ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser( void *arg NTSTATUS ISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser( void *args ) { struct ISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser_params *params = (struct ISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->CloseP2PSessionWithUser( params->steamIDRemote ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser( void *args NTSTATUS ISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser( void *args ) { struct ISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser_params *params = (struct ISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->CloseP2PChannelWithUser( params->steamIDRemote, params->nChannel ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser( void *args NTSTATUS ISteamNetworking_SteamNetworking005_GetP2PSessionState( void *args ) { struct ISteamNetworking_SteamNetworking005_GetP2PSessionState_params *params = (struct ISteamNetworking_SteamNetworking005_GetP2PSessionState_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->GetP2PSessionState( params->steamIDRemote, params->pConnectionState ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_GetP2PSessionState( void *args ) NTSTATUS ISteamNetworking_SteamNetworking005_AllowP2PPacketRelay( void *args ) { struct ISteamNetworking_SteamNetworking005_AllowP2PPacketRelay_params *params = (struct ISteamNetworking_SteamNetworking005_AllowP2PPacketRelay_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->AllowP2PPacketRelay( params->bAllow ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_AllowP2PPacketRelay( void *args ) NTSTATUS ISteamNetworking_SteamNetworking005_CreateListenSocket( void *args ) { struct ISteamNetworking_SteamNetworking005_CreateListenSocket_params *params = (struct ISteamNetworking_SteamNetworking005_CreateListenSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->CreateListenSocket( params->nVirtualP2PPort, params->nIP, params->nPort, params->bAllowUseOfPacketRelay ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_CreateListenSocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket( void *args ) { struct ISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket_params *params = (struct ISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->CreateP2PConnectionSocket( params->steamIDTarget, params->nVirtualPort, params->nTimeoutSec, params->bAllowUseOfPacketRelay ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket( void *ar NTSTATUS ISteamNetworking_SteamNetworking005_CreateConnectionSocket( void *args ) { struct ISteamNetworking_SteamNetworking005_CreateConnectionSocket_params *params = (struct ISteamNetworking_SteamNetworking005_CreateConnectionSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->CreateConnectionSocket( params->nIP, params->nPort, params->nTimeoutSec ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_CreateConnectionSocket( void *args NTSTATUS ISteamNetworking_SteamNetworking005_DestroySocket( void *args ) { struct ISteamNetworking_SteamNetworking005_DestroySocket_params *params = (struct ISteamNetworking_SteamNetworking005_DestroySocket_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->DestroySocket( params->hSocket, params->bNotifyRemoteEnd ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_DestroySocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking005_DestroyListenSocket( void *args ) { struct ISteamNetworking_SteamNetworking005_DestroyListenSocket_params *params = (struct ISteamNetworking_SteamNetworking005_DestroyListenSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->DestroyListenSocket( params->hSocket, params->bNotifyRemoteEnd ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_DestroyListenSocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking005_SendDataOnSocket( void *args ) { struct ISteamNetworking_SteamNetworking005_SendDataOnSocket_params *params = (struct ISteamNetworking_SteamNetworking005_SendDataOnSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->SendDataOnSocket( params->hSocket, params->pubData, params->cubData, params->bReliable ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_SendDataOnSocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket( void *args ) { struct ISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket_params *params = (struct ISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->IsDataAvailableOnSocket( params->hSocket, params->pcubMsgSize ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket( void *args NTSTATUS ISteamNetworking_SteamNetworking005_RetrieveDataFromSocket( void *args ) { struct ISteamNetworking_SteamNetworking005_RetrieveDataFromSocket_params *params = (struct ISteamNetworking_SteamNetworking005_RetrieveDataFromSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->RetrieveDataFromSocket( params->hSocket, params->pubDest, params->cubDest, params->pcubMsgSize ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_RetrieveDataFromSocket( void *args NTSTATUS ISteamNetworking_SteamNetworking005_IsDataAvailable( void *args ) { struct ISteamNetworking_SteamNetworking005_IsDataAvailable_params *params = (struct ISteamNetworking_SteamNetworking005_IsDataAvailable_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->IsDataAvailable( params->hListenSocket, params->pcubMsgSize, params->phSocket ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_IsDataAvailable( void *args ) NTSTATUS ISteamNetworking_SteamNetworking005_RetrieveData( void *args ) { struct ISteamNetworking_SteamNetworking005_RetrieveData_params *params = (struct ISteamNetworking_SteamNetworking005_RetrieveData_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->RetrieveData( params->hListenSocket, params->pubDest, params->cubDest, params->pcubMsgSize, params->phSocket ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_RetrieveData( void *args ) NTSTATUS ISteamNetworking_SteamNetworking005_GetSocketInfo( void *args ) { struct ISteamNetworking_SteamNetworking005_GetSocketInfo_params *params = (struct ISteamNetworking_SteamNetworking005_GetSocketInfo_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->GetSocketInfo( params->hSocket, params->pSteamIDRemote, params->peSocketStatus, params->punIPRemote, params->punPortRemote ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_GetSocketInfo( void *args ) NTSTATUS ISteamNetworking_SteamNetworking005_GetListenSocketInfo( void *args ) { struct ISteamNetworking_SteamNetworking005_GetListenSocketInfo_params *params = (struct ISteamNetworking_SteamNetworking005_GetListenSocketInfo_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->GetListenSocketInfo( params->hListenSocket, params->pnIP, params->pnPort ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_GetListenSocketInfo( void *args ) NTSTATUS ISteamNetworking_SteamNetworking005_GetSocketConnectionType( void *args ) { struct ISteamNetworking_SteamNetworking005_GetSocketConnectionType_params *params = (struct ISteamNetworking_SteamNetworking005_GetSocketConnectionType_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->GetSocketConnectionType( params->hSocket ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamNetworking_SteamNetworking005_GetSocketConnectionType( void *args NTSTATUS ISteamNetworking_SteamNetworking005_GetMaxPacketSize( void *args ) { struct ISteamNetworking_SteamNetworking005_GetMaxPacketSize_params *params = (struct ISteamNetworking_SteamNetworking005_GetMaxPacketSize_params *)args; - struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking005 *iface = (struct u_ISteamNetworking_SteamNetworking005 *)params->u_iface; params->_ret = iface->GetMaxPacketSize( params->hSocket ); return 0; } diff --git a/lsteamclient/cppISteamNetworking_SteamNetworking006.cpp b/lsteamclient/cppISteamNetworking_SteamNetworking006.cpp index 8aa17ddf..eb83b558 100644 --- a/lsteamclient/cppISteamNetworking_SteamNetworking006.cpp +++ b/lsteamclient/cppISteamNetworking_SteamNetworking006.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_SendP2PPacket( void *args ) { struct ISteamNetworking_SteamNetworking006_SendP2PPacket_params *params = (struct ISteamNetworking_SteamNetworking006_SendP2PPacket_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->SendP2PPacket( params->steamIDRemote, params->pubData, params->cubData, params->eP2PSendType, params->nChannel ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_SendP2PPacket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking006_IsP2PPacketAvailable( void *args ) { struct ISteamNetworking_SteamNetworking006_IsP2PPacketAvailable_params *params = (struct ISteamNetworking_SteamNetworking006_IsP2PPacketAvailable_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->IsP2PPacketAvailable( params->pcubMsgSize, params->nChannel ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_IsP2PPacketAvailable( void *args ) NTSTATUS ISteamNetworking_SteamNetworking006_ReadP2PPacket( void *args ) { struct ISteamNetworking_SteamNetworking006_ReadP2PPacket_params *params = (struct ISteamNetworking_SteamNetworking006_ReadP2PPacket_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->ReadP2PPacket( params->pubDest, params->cubDest, params->pcubMsgSize, params->psteamIDRemote, params->nChannel ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_ReadP2PPacket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser( void *args ) { struct ISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser_params *params = (struct ISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->AcceptP2PSessionWithUser( params->steamIDRemote ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser( void *arg NTSTATUS ISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser( void *args ) { struct ISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser_params *params = (struct ISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->CloseP2PSessionWithUser( params->steamIDRemote ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser( void *args NTSTATUS ISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser( void *args ) { struct ISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser_params *params = (struct ISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->CloseP2PChannelWithUser( params->steamIDRemote, params->nChannel ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser( void *args NTSTATUS ISteamNetworking_SteamNetworking006_GetP2PSessionState( void *args ) { struct ISteamNetworking_SteamNetworking006_GetP2PSessionState_params *params = (struct ISteamNetworking_SteamNetworking006_GetP2PSessionState_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->GetP2PSessionState( params->steamIDRemote, params->pConnectionState ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_GetP2PSessionState( void *args ) NTSTATUS ISteamNetworking_SteamNetworking006_AllowP2PPacketRelay( void *args ) { struct ISteamNetworking_SteamNetworking006_AllowP2PPacketRelay_params *params = (struct ISteamNetworking_SteamNetworking006_AllowP2PPacketRelay_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->AllowP2PPacketRelay( params->bAllow ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_AllowP2PPacketRelay( void *args ) NTSTATUS ISteamNetworking_SteamNetworking006_CreateListenSocket( void *args ) { struct ISteamNetworking_SteamNetworking006_CreateListenSocket_params *params = (struct ISteamNetworking_SteamNetworking006_CreateListenSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->CreateListenSocket( params->nVirtualP2PPort, params->nIP, params->nPort, params->bAllowUseOfPacketRelay ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_CreateListenSocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket( void *args ) { struct ISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket_params *params = (struct ISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->CreateP2PConnectionSocket( params->steamIDTarget, params->nVirtualPort, params->nTimeoutSec, params->bAllowUseOfPacketRelay ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket( void *ar NTSTATUS ISteamNetworking_SteamNetworking006_CreateConnectionSocket( void *args ) { struct ISteamNetworking_SteamNetworking006_CreateConnectionSocket_params *params = (struct ISteamNetworking_SteamNetworking006_CreateConnectionSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->CreateConnectionSocket( params->nIP, params->nPort, params->nTimeoutSec ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_CreateConnectionSocket( void *args NTSTATUS ISteamNetworking_SteamNetworking006_DestroySocket( void *args ) { struct ISteamNetworking_SteamNetworking006_DestroySocket_params *params = (struct ISteamNetworking_SteamNetworking006_DestroySocket_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->DestroySocket( params->hSocket, params->bNotifyRemoteEnd ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_DestroySocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking006_DestroyListenSocket( void *args ) { struct ISteamNetworking_SteamNetworking006_DestroyListenSocket_params *params = (struct ISteamNetworking_SteamNetworking006_DestroyListenSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->DestroyListenSocket( params->hSocket, params->bNotifyRemoteEnd ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_DestroyListenSocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking006_SendDataOnSocket( void *args ) { struct ISteamNetworking_SteamNetworking006_SendDataOnSocket_params *params = (struct ISteamNetworking_SteamNetworking006_SendDataOnSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->SendDataOnSocket( params->hSocket, params->pubData, params->cubData, params->bReliable ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_SendDataOnSocket( void *args ) NTSTATUS ISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket( void *args ) { struct ISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket_params *params = (struct ISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->IsDataAvailableOnSocket( params->hSocket, params->pcubMsgSize ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket( void *args NTSTATUS ISteamNetworking_SteamNetworking006_RetrieveDataFromSocket( void *args ) { struct ISteamNetworking_SteamNetworking006_RetrieveDataFromSocket_params *params = (struct ISteamNetworking_SteamNetworking006_RetrieveDataFromSocket_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->RetrieveDataFromSocket( params->hSocket, params->pubDest, params->cubDest, params->pcubMsgSize ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_RetrieveDataFromSocket( void *args NTSTATUS ISteamNetworking_SteamNetworking006_IsDataAvailable( void *args ) { struct ISteamNetworking_SteamNetworking006_IsDataAvailable_params *params = (struct ISteamNetworking_SteamNetworking006_IsDataAvailable_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->IsDataAvailable( params->hListenSocket, params->pcubMsgSize, params->phSocket ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_IsDataAvailable( void *args ) NTSTATUS ISteamNetworking_SteamNetworking006_RetrieveData( void *args ) { struct ISteamNetworking_SteamNetworking006_RetrieveData_params *params = (struct ISteamNetworking_SteamNetworking006_RetrieveData_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->RetrieveData( params->hListenSocket, params->pubDest, params->cubDest, params->pcubMsgSize, params->phSocket ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_RetrieveData( void *args ) NTSTATUS ISteamNetworking_SteamNetworking006_GetSocketInfo( void *args ) { struct ISteamNetworking_SteamNetworking006_GetSocketInfo_params *params = (struct ISteamNetworking_SteamNetworking006_GetSocketInfo_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->GetSocketInfo( params->hSocket, params->pSteamIDRemote, params->peSocketStatus, params->punIPRemote, params->punPortRemote ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_GetSocketInfo( void *args ) NTSTATUS ISteamNetworking_SteamNetworking006_GetListenSocketInfo( void *args ) { struct ISteamNetworking_SteamNetworking006_GetListenSocketInfo_params *params = (struct ISteamNetworking_SteamNetworking006_GetListenSocketInfo_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->GetListenSocketInfo( params->hListenSocket, params->pnIP, params->pnPort ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_GetListenSocketInfo( void *args ) NTSTATUS ISteamNetworking_SteamNetworking006_GetSocketConnectionType( void *args ) { struct ISteamNetworking_SteamNetworking006_GetSocketConnectionType_params *params = (struct ISteamNetworking_SteamNetworking006_GetSocketConnectionType_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->GetSocketConnectionType( params->hSocket ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamNetworking_SteamNetworking006_GetSocketConnectionType( void *args NTSTATUS ISteamNetworking_SteamNetworking006_GetMaxPacketSize( void *args ) { struct ISteamNetworking_SteamNetworking006_GetMaxPacketSize_params *params = (struct ISteamNetworking_SteamNetworking006_GetMaxPacketSize_params *)args; - struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->linux_side; + struct u_ISteamNetworking_SteamNetworking006 *iface = (struct u_ISteamNetworking_SteamNetworking006 *)params->u_iface; params->_ret = iface->GetMaxPacketSize( params->hSocket ); return 0; } diff --git a/lsteamclient/cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001.cpp index 5afae401..5bf5166c 100644 --- a/lsteamclient/cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled( void *args ) { struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled_params *params = (struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled_params *)args; - struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *iface = (struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *iface = (struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->BIsParentalLockEnabled( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsPa NTSTATUS ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked( void *args ) { struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked_params *params = (struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked_params *)args; - struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *iface = (struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *iface = (struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->BIsParentalLockLocked( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsPa NTSTATUS ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked( void *args ) { struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked_params *params = (struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked_params *)args; - struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *iface = (struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *iface = (struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->BIsAppBlocked( params->nAppID ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAp NTSTATUS ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList( void *args ) { struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList_params *params = (struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList_params *)args; - struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *iface = (struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *iface = (struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->BIsAppInBlockList( params->nAppID ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAp NTSTATUS ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked( void *args ) { struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked_params *params = (struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked_params *)args; - struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *iface = (struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *iface = (struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->BIsFeatureBlocked( params->eFeature ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFe NTSTATUS ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList( void *args ) { struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList_params *params = (struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList_params *)args; - struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *iface = (struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *iface = (struct u_ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->BIsFeatureInBlockList( params->eFeature ); return 0; } diff --git a/lsteamclient/cppISteamParties_SteamParties002.cpp b/lsteamclient/cppISteamParties_SteamParties002.cpp index 28cc996e..8d75345b 100644 --- a/lsteamclient/cppISteamParties_SteamParties002.cpp +++ b/lsteamclient/cppISteamParties_SteamParties002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamParties_SteamParties002_GetNumActiveBeacons( void *args ) { struct ISteamParties_SteamParties002_GetNumActiveBeacons_params *params = (struct ISteamParties_SteamParties002_GetNumActiveBeacons_params *)args; - struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->linux_side; + struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->u_iface; params->_ret = iface->GetNumActiveBeacons( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamParties_SteamParties002_GetNumActiveBeacons( void *args ) NTSTATUS ISteamParties_SteamParties002_GetBeaconByIndex( void *args ) { struct ISteamParties_SteamParties002_GetBeaconByIndex_params *params = (struct ISteamParties_SteamParties002_GetBeaconByIndex_params *)args; - struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->linux_side; + struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->u_iface; params->_ret = iface->GetBeaconByIndex( params->unIndex ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamParties_SteamParties002_GetBeaconByIndex( void *args ) NTSTATUS ISteamParties_SteamParties002_GetBeaconDetails( void *args ) { struct ISteamParties_SteamParties002_GetBeaconDetails_params *params = (struct ISteamParties_SteamParties002_GetBeaconDetails_params *)args; - struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->linux_side; + struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->u_iface; u_SteamPartyBeaconLocation_t u_pLocation = *params->pLocation; params->_ret = iface->GetBeaconDetails( params->ulBeaconID, params->pSteamIDBeaconOwner, &u_pLocation, params->pchMetadata, params->cchMetadata ); *params->pLocation = u_pLocation; @@ -34,7 +34,7 @@ NTSTATUS ISteamParties_SteamParties002_GetBeaconDetails( void *args ) NTSTATUS ISteamParties_SteamParties002_JoinParty( void *args ) { struct ISteamParties_SteamParties002_JoinParty_params *params = (struct ISteamParties_SteamParties002_JoinParty_params *)args; - struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->linux_side; + struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->u_iface; params->_ret = iface->JoinParty( params->ulBeaconID ); return 0; } @@ -42,7 +42,7 @@ NTSTATUS ISteamParties_SteamParties002_JoinParty( void *args ) NTSTATUS ISteamParties_SteamParties002_GetNumAvailableBeaconLocations( void *args ) { struct ISteamParties_SteamParties002_GetNumAvailableBeaconLocations_params *params = (struct ISteamParties_SteamParties002_GetNumAvailableBeaconLocations_params *)args; - struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->linux_side; + struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->u_iface; params->_ret = iface->GetNumAvailableBeaconLocations( params->puNumLocations ); return 0; } @@ -50,7 +50,7 @@ NTSTATUS ISteamParties_SteamParties002_GetNumAvailableBeaconLocations( void *arg NTSTATUS ISteamParties_SteamParties002_GetAvailableBeaconLocations( void *args ) { struct ISteamParties_SteamParties002_GetAvailableBeaconLocations_params *params = (struct ISteamParties_SteamParties002_GetAvailableBeaconLocations_params *)args; - struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->linux_side; + struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->u_iface; u_SteamPartyBeaconLocation_t u_pLocationList = *params->pLocationList; params->_ret = iface->GetAvailableBeaconLocations( &u_pLocationList, params->uMaxNumLocations ); *params->pLocationList = u_pLocationList; @@ -60,7 +60,7 @@ NTSTATUS ISteamParties_SteamParties002_GetAvailableBeaconLocations( void *args ) NTSTATUS ISteamParties_SteamParties002_CreateBeacon( void *args ) { struct ISteamParties_SteamParties002_CreateBeacon_params *params = (struct ISteamParties_SteamParties002_CreateBeacon_params *)args; - struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->linux_side; + struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->u_iface; u_SteamPartyBeaconLocation_t u_pBeaconLocation = *params->pBeaconLocation; params->_ret = iface->CreateBeacon( params->unOpenSlots, &u_pBeaconLocation, params->pchConnectString, params->pchMetadata ); *params->pBeaconLocation = u_pBeaconLocation; @@ -70,7 +70,7 @@ NTSTATUS ISteamParties_SteamParties002_CreateBeacon( void *args ) NTSTATUS ISteamParties_SteamParties002_OnReservationCompleted( void *args ) { struct ISteamParties_SteamParties002_OnReservationCompleted_params *params = (struct ISteamParties_SteamParties002_OnReservationCompleted_params *)args; - struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->linux_side; + struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->u_iface; iface->OnReservationCompleted( params->ulBeacon, params->steamIDUser ); return 0; } @@ -78,7 +78,7 @@ NTSTATUS ISteamParties_SteamParties002_OnReservationCompleted( void *args ) NTSTATUS ISteamParties_SteamParties002_CancelReservation( void *args ) { struct ISteamParties_SteamParties002_CancelReservation_params *params = (struct ISteamParties_SteamParties002_CancelReservation_params *)args; - struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->linux_side; + struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->u_iface; iface->CancelReservation( params->ulBeacon, params->steamIDUser ); return 0; } @@ -86,7 +86,7 @@ NTSTATUS ISteamParties_SteamParties002_CancelReservation( void *args ) NTSTATUS ISteamParties_SteamParties002_ChangeNumOpenSlots( void *args ) { struct ISteamParties_SteamParties002_ChangeNumOpenSlots_params *params = (struct ISteamParties_SteamParties002_ChangeNumOpenSlots_params *)args; - struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->linux_side; + struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->u_iface; params->_ret = iface->ChangeNumOpenSlots( params->ulBeacon, params->unOpenSlots ); return 0; } @@ -94,7 +94,7 @@ NTSTATUS ISteamParties_SteamParties002_ChangeNumOpenSlots( void *args ) NTSTATUS ISteamParties_SteamParties002_DestroyBeacon( void *args ) { struct ISteamParties_SteamParties002_DestroyBeacon_params *params = (struct ISteamParties_SteamParties002_DestroyBeacon_params *)args; - struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->linux_side; + struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->u_iface; params->_ret = iface->DestroyBeacon( params->ulBeacon ); return 0; } @@ -102,7 +102,7 @@ NTSTATUS ISteamParties_SteamParties002_DestroyBeacon( void *args ) NTSTATUS ISteamParties_SteamParties002_GetBeaconLocationData( void *args ) { struct ISteamParties_SteamParties002_GetBeaconLocationData_params *params = (struct ISteamParties_SteamParties002_GetBeaconLocationData_params *)args; - struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->linux_side; + struct u_ISteamParties_SteamParties002 *iface = (struct u_ISteamParties_SteamParties002 *)params->u_iface; u_SteamPartyBeaconLocation_t u_BeaconLocation = params->BeaconLocation; params->_ret = iface->GetBeaconLocationData( u_BeaconLocation, params->eData, params->pchDataStringOut, params->cchDataStringOut ); return 0; diff --git a/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001.cpp index 1f2f3634..e96df206 100644 --- a/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetSessionCount( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount( NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetSessionID( params->iSessionIndex ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID( voi NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *)params->u_iface; *params->_ret = iface->GetSessionSteamID( params->unSessionID ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetSessionClientName( params->unSessionID ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientN NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetSessionClientFormFactor( params->unSessionID ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientF NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->BGetSessionClientResolution( params->unSessionID, params->pnResolutionX, params->pnResolutionY ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClient NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->BSendRemotePlayTogetherInvite( params->steamIDFriend ); return 0; } diff --git a/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002.cpp b/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002.cpp index d26ab889..8aa29336 100644 --- a/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002.cpp +++ b/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetSessionCount( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount( NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetSessionID( params->iSessionIndex ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID( voi NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *)params->u_iface; *params->_ret = iface->GetSessionSteamID( params->unSessionID ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetSessionClientName( params->unSessionID ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientN NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetSessionClientFormFactor( params->unSessionID ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientF NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->BGetSessionClientResolution( params->unSessionID, params->pnResolutionX, params->pnResolutionY ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClient NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->BStartRemotePlayTogether( params->bShowOverlay ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayT NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->BSendRemotePlayTogetherInvite( params->steamIDFriend ); return 0; } diff --git a/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003.cpp b/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003.cpp index 56649cfa..a69b3a4e 100644 --- a/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003.cpp +++ b/lsteamclient/cppISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionCount( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionCount_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionCount_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetSessionCount( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionCount( NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionID( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionID_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionID_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetSessionID( params->iSessionIndex ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionID( voi NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionSteamID( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionSteamID_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionSteamID_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->u_iface; *params->_ret = iface->GetSessionSteamID( params->unSessionID ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionSteamID NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientName( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientName_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientName_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetSessionClientName( params->unSessionID ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientN NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientFormFactor( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientFormFactor_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientFormFactor_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetSessionClientFormFactor( params->unSessionID ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientF NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BGetSessionClientResolution( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BGetSessionClientResolution_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BGetSessionClientResolution_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->BGetSessionClientResolution( params->unSessionID, params->pnResolutionX, params->pnResolutionY ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BGetSessionClient NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_ShowRemotePlayTogetherUI( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_ShowRemotePlayTogetherUI_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_ShowRemotePlayTogetherUI_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->ShowRemotePlayTogetherUI( ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_ShowRemotePlayTog NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BSendRemotePlayTogetherInvite( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BSendRemotePlayTogetherInvite_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BSendRemotePlayTogetherInvite_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->BSendRemotePlayTogetherInvite( params->steamIDFriend ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BSendRemotePlayTo NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BEnableRemotePlayTogetherDirectInput( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BEnableRemotePlayTogetherDirectInput_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BEnableRemotePlayTogetherDirectInput_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->BEnableRemotePlayTogetherDirectInput( ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BEnableRemotePlay NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_DisableRemotePlayTogetherDirectInput( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_DisableRemotePlayTogetherDirectInput_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_DisableRemotePlayTogetherDirectInput_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->u_iface; iface->DisableRemotePlayTogetherDirectInput( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_DisableRemotePlay NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetInput( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetInput_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetInput_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetInput( params->pInput, params->unMaxEvents ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetInput( void *a NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseVisibility( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseVisibility_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseVisibility_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->u_iface; iface->SetMouseVisibility( params->unSessionID, params->bVisible ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseVisibilit NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMousePosition( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMousePosition_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMousePosition_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->u_iface; iface->SetMousePosition( params->unSessionID, params->flNormalizedX, params->flNormalizedY ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMousePosition( NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_CreateMouseCursor( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_CreateMouseCursor_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_CreateMouseCursor_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->CreateMouseCursor( params->nWidth, params->nHeight, params->nHotX, params->nHotY, params->pBGRA, params->nPitch ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_CreateMouseCursor NTSTATUS ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseCursor( void *args ) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseCursor_params *params = (struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseCursor_params *)args; - struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *iface = (struct u_ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 *)params->u_iface; iface->SetMouseCursor( params->unSessionID, params->unCursorID ); return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001.cpp index ddc015dd..2b4b57ab 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetFileSize( params->pchFile ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->FileExists( params->pchFile ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->FileDelete( params->pchFile ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetFileCount( ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCoun NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileName NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002.cpp index 82a38a6d..52e08bad 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetFileSize( params->pchFile ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->FileExists( params->pchFile ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetFileCount( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCoun NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileName NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003.cpp index 967ad0d5..b1fbfa47 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->FileForget( params->pchFile ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->FileDelete( params->pchFile ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->FileShare( params->pchFile ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->FileExists( params->pchFile ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->FilePersisted( params->pchFile ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersist NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetFileSize( params->pchFile ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetFileTimestamp( params->pchFile ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTime NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetFileCount( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCoun NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileName NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->IsCloudEnabledForAccount( ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->IsCloudEnabledForApp( ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; iface->SetCloudEnabledForApp( params->bEnabled ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEna NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->UGCDownload( params->hContent ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetai NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead( vo NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetCachedUGCCount( ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004.cpp index b29abce7..297cf4ce 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->FileForget( params->pchFile ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->FileDelete( params->pchFile ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->FileShare( params->pchFile ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->FileExists( params->pchFile ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->FilePersisted( params->pchFile ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersist NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetFileSize( params->pchFile ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetFileTimestamp( params->pchFile ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTime NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetSyncPlatforms( params->pchFile ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetFileCount( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCoun NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileName NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->IsCloudEnabledForAccount( ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->IsCloudEnabledForApp( ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; iface->SetCloudEnabledForApp( params->bEnabled ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEna NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->UGCDownload( params->hContent ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetai NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead( vo NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetCachedUGCCount( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005.cpp index 4ecaf04a..bb4e70c9 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->FileForget( params->pchFile ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->FileDelete( params->pchFile ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->FileShare( params->pchFile ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->FileExists( params->pchFile ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->FilePersisted( params->pchFile ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersist NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetFileSize( params->pchFile ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetFileTimestamp( params->pchFile ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTime NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetSyncPlatforms( params->pchFile ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetFileCount( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCoun NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileName NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->IsCloudEnabledForAccount( ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->IsCloudEnabledForApp( ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; iface->SetCloudEnabledForApp( params->bEnabled ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEna NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->UGCDownload( params->hContent ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetai NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead( vo NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetCachedUGCCount( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->PublishFile( params->pchFile, params->pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishWorkshopFile( u_pchFile, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->pTags ); @@ -204,7 +204,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWork NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->UpdatePublishedFile( params->updatePublishedFileRequest ); return 0; } @@ -212,7 +212,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId ); return 0; } @@ -220,7 +220,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); return 0; } @@ -228,7 +228,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); return 0; } @@ -236,7 +236,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -244,7 +244,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); return 0; } @@ -252,7 +252,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006.cpp index 731e82f4..f3acc141 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->FileForget( params->pchFile ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->FileDelete( params->pchFile ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->FileShare( params->pchFile ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->FileExists( params->pchFile ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->FilePersisted( params->pchFile ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersist NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetFileSize( params->pchFile ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetFileTimestamp( params->pchFile ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTime NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetSyncPlatforms( params->pchFile ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetFileCount( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCoun NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileName NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->IsCloudEnabledForAccount( ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->IsCloudEnabledForApp( ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; iface->SetCloudEnabledForApp( params->bEnabled ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEna NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->UGCDownload( params->hContent ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetai NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead( vo NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetCachedUGCCount( ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishWorkshopFile( u_pchFile, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); @@ -204,7 +204,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWork NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); return 0; } @@ -212,7 +212,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, u_pchFile ); steamclient_free_path( u_pchFile ); @@ -222,7 +222,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, u_pchPreviewFile ); steamclient_free_path( u_pchPreviewFile ); @@ -232,7 +232,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); return 0; } @@ -264,7 +264,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); return 0; } @@ -312,7 +312,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -320,7 +320,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_Unsubscribe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); return 0; } @@ -328,7 +328,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -336,7 +336,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); return 0; } @@ -344,7 +344,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserP NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -352,7 +352,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); return 0; } @@ -360,7 +360,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishVideo( params->pchVideoURL, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); steamclient_free_path( u_pchPreviewFile ); @@ -370,7 +370,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVide NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); return 0; } @@ -378,7 +378,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); return 0; } @@ -386,7 +386,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->EnumeratePublishedWorkshopFiles( params->eEnumerationType, params->unStartIndex, params->unCount, params->unDays, params->pTags, params->pUserTags ); return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007.cpp index 5073fcf0..1b7c41f8 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->FileForget( params->pchFile ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->FileDelete( params->pchFile ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->FileShare( params->pchFile ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->FileExists( params->pchFile ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->FilePersisted( params->pchFile ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersist NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetFileSize( params->pchFile ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetFileTimestamp( params->pchFile ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTime NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetSyncPlatforms( params->pchFile ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetFileCount( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCoun NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileName NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->IsCloudEnabledForAccount( ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->IsCloudEnabledForApp( ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; iface->SetCloudEnabledForApp( params->bEnabled ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEna NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->UGCDownload( params->hContent ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetai NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead( vo NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetCachedUGCCount( ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishWorkshopFile( u_pchFile, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); @@ -204,7 +204,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWork NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); return 0; } @@ -212,7 +212,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, u_pchFile ); steamclient_free_path( u_pchFile ); @@ -222,7 +222,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, u_pchPreviewFile ); steamclient_free_path( u_pchPreviewFile ); @@ -232,7 +232,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); return 0; } @@ -264,7 +264,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); return 0; } @@ -312,7 +312,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -320,7 +320,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_Unsubscribe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); return 0; } @@ -328,7 +328,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -336,7 +336,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); return 0; } @@ -344,7 +344,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserP NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -352,7 +352,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); return 0; } @@ -360,7 +360,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishVideo( params->eVideoProvider, params->pchVideoAccount, params->pchVideoIdentifier, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); steamclient_free_path( u_pchPreviewFile ); @@ -370,7 +370,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVide NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); return 0; } @@ -378,7 +378,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); return 0; } @@ -386,7 +386,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->EnumeratePublishedWorkshopFiles( params->eEnumerationType, params->unStartIndex, params->unCount, params->unDays, params->pTags, params->pUserTags ); return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008.cpp index ef63e3de..53c0cbf8 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->FileForget( params->pchFile ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->FileDelete( params->pchFile ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->FileShare( params->pchFile ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->FileWriteStreamOpen( params->pchFile ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->FileWriteStreamWriteChunk( params->writeHandle, params->pvData, params->cubData ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->FileWriteStreamClose( params->writeHandle ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->FileWriteStreamCancel( params->writeHandle ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->FileExists( params->pchFile ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->FilePersisted( params->pchFile ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersist NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetFileSize( params->pchFile ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetFileTimestamp( params->pchFile ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTime NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetSyncPlatforms( params->pchFile ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetFileCount( ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCoun NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileName NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->IsCloudEnabledForAccount( ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->IsCloudEnabledForApp( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; iface->SetCloudEnabledForApp( params->bEnabled ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEna NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->UGCDownload( params->hContent ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetai NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead( vo NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetCachedUGCCount( ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishWorkshopFile( u_pchFile, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); @@ -236,7 +236,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWork NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); return 0; } @@ -244,7 +244,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, u_pchFile ); steamclient_free_path( u_pchFile ); @@ -254,7 +254,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, u_pchPreviewFile ); steamclient_free_path( u_pchPreviewFile ); @@ -264,7 +264,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId ); return 0; } @@ -312,7 +312,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); return 0; } @@ -320,7 +320,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); return 0; } @@ -328,7 +328,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -336,7 +336,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); return 0; } @@ -344,7 +344,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -352,7 +352,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_Unsubscribe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); return 0; } @@ -360,7 +360,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -368,7 +368,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); return 0; } @@ -376,7 +376,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserP NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -384,7 +384,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); return 0; } @@ -392,7 +392,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishVideo( params->eVideoProvider, params->pchVideoAccount, params->pchVideoIdentifier, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); steamclient_free_path( u_pchPreviewFile ); @@ -402,7 +402,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVide NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); return 0; } @@ -410,7 +410,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); return 0; } @@ -418,7 +418,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->EnumeratePublishedWorkshopFiles( params->eEnumerationType, params->unStartIndex, params->unCount, params->unDays, params->pTags, params->pUserTags ); return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009.cpp index 397d6e55..2b6f8fda 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->FileForget( params->pchFile ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->FileDelete( params->pchFile ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->FileShare( params->pchFile ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->FileWriteStreamOpen( params->pchFile ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->FileWriteStreamWriteChunk( params->writeHandle, params->pvData, params->cubData ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->FileWriteStreamClose( params->writeHandle ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->FileWriteStreamCancel( params->writeHandle ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->FileExists( params->pchFile ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->FilePersisted( params->pchFile ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersist NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetFileSize( params->pchFile ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetFileTimestamp( params->pchFile ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTime NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetSyncPlatforms( params->pchFile ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetFileCount( ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCoun NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileName NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->IsCloudEnabledForAccount( ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->IsCloudEnabledForApp( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; iface->SetCloudEnabledForApp( params->bEnabled ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEna NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->UGCDownload( params->hContent ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetai NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead, params->cOffset ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead( vo NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetCachedUGCCount( ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishWorkshopFile( u_pchFile, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); @@ -236,7 +236,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWork NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); return 0; } @@ -244,7 +244,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, u_pchFile ); steamclient_free_path( u_pchFile ); @@ -254,7 +254,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, u_pchPreviewFile ); steamclient_free_path( u_pchPreviewFile ); @@ -264,7 +264,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId ); return 0; } @@ -312,7 +312,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); return 0; } @@ -320,7 +320,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); return 0; } @@ -328,7 +328,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -336,7 +336,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); return 0; } @@ -344,7 +344,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -352,7 +352,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_Unsubscribe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); return 0; } @@ -360,7 +360,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -368,7 +368,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); return 0; } @@ -376,7 +376,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserP NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -384,7 +384,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); return 0; } @@ -392,7 +392,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishVideo( params->eVideoProvider, params->pchVideoAccount, params->pchVideoIdentifier, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); steamclient_free_path( u_pchPreviewFile ); @@ -402,7 +402,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVide NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); return 0; } @@ -410,7 +410,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); return 0; } @@ -418,7 +418,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->EnumeratePublishedWorkshopFiles( params->eEnumerationType, params->unStartIndex, params->unCount, params->unDays, params->pTags, params->pUserTags ); return 0; } diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010.cpp index 5d69ddcf..1eeb9ac8 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->FileForget( params->pchFile ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->FileDelete( params->pchFile ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->FileShare( params->pchFile ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->FileWriteStreamOpen( params->pchFile ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->FileWriteStreamWriteChunk( params->writeHandle, params->pvData, params->cubData ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->FileWriteStreamClose( params->writeHandle ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->FileWriteStreamCancel( params->writeHandle ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->FileExists( params->pchFile ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->FilePersisted( params->pchFile ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersist NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetFileSize( params->pchFile ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetFileTimestamp( params->pchFile ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTime NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetSyncPlatforms( params->pchFile ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetFileCount( ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCoun NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileName NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->IsCloudEnabledForAccount( ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->IsCloudEnabledForApp( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; iface->SetCloudEnabledForApp( params->bEnabled ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEna NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->UGCDownload( params->hContent, params->unPriority ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetai NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead, params->cOffset ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead( vo NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetCachedUGCCount( ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishWorkshopFile( u_pchFile, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); @@ -236,7 +236,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWork NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); return 0; } @@ -244,7 +244,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, u_pchFile ); steamclient_free_path( u_pchFile ); @@ -254,7 +254,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, u_pchPreviewFile ); steamclient_free_path( u_pchPreviewFile ); @@ -264,7 +264,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId ); return 0; } @@ -312,7 +312,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); return 0; } @@ -320,7 +320,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); return 0; } @@ -328,7 +328,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -336,7 +336,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); return 0; } @@ -344,7 +344,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -352,7 +352,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_Unsubscribe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); return 0; } @@ -360,7 +360,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -368,7 +368,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); return 0; } @@ -376,7 +376,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserP NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -384,7 +384,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); return 0; } @@ -392,7 +392,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishVideo( params->eVideoProvider, params->pchVideoAccount, params->pchVideoIdentifier, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); steamclient_free_path( u_pchPreviewFile ); @@ -402,7 +402,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVide NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); return 0; } @@ -410,7 +410,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); return 0; } @@ -418,7 +418,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->EnumeratePublishedWorkshopFiles( params->eEnumerationType, params->unStartIndex, params->unCount, params->unDays, params->pTags, params->pUserTags ); return 0; } @@ -426,7 +426,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 *)params->u_iface; char *u_pchLocation = steamclient_dos_to_unix_path( params->pchLocation, 0 ); params->_ret = iface->UGCDownloadToLocation( params->hContent, u_pchLocation, params->unPriority ); steamclient_free_path( u_pchLocation ); diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011.cpp index 054faf6a..44e8c489 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->FileForget( params->pchFile ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->FileDelete( params->pchFile ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->FileShare( params->pchFile ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->FileWriteStreamOpen( params->pchFile ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->FileWriteStreamWriteChunk( params->writeHandle, params->pvData, params->cubData ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->FileWriteStreamClose( params->writeHandle ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->FileWriteStreamCancel( params->writeHandle ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->FileExists( params->pchFile ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->FilePersisted( params->pchFile ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersist NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetFileSize( params->pchFile ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetFileTimestamp( params->pchFile ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTime NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetSyncPlatforms( params->pchFile ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetFileCount( ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCoun NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileName NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->IsCloudEnabledForAccount( ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->IsCloudEnabledForApp( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; iface->SetCloudEnabledForApp( params->bEnabled ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEna NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->UGCDownload( params->hContent, params->unPriority ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetai NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead, params->cOffset ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead( vo NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetCachedUGCCount( ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishWorkshopFile( u_pchFile, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); @@ -236,7 +236,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWork NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); return 0; } @@ -244,7 +244,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, u_pchFile ); steamclient_free_path( u_pchFile ); @@ -254,7 +254,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, u_pchPreviewFile ); steamclient_free_path( u_pchPreviewFile ); @@ -264,7 +264,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId, params->unMaxSecondsOld ); return 0; } @@ -312,7 +312,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); return 0; } @@ -320,7 +320,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); return 0; } @@ -328,7 +328,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -336,7 +336,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); return 0; } @@ -344,7 +344,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -352,7 +352,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_Unsubscribe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); return 0; } @@ -360,7 +360,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -368,7 +368,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); return 0; } @@ -376,7 +376,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserP NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -384,7 +384,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); return 0; } @@ -392,7 +392,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishVideo( params->eVideoProvider, params->pchVideoAccount, params->pchVideoIdentifier, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); steamclient_free_path( u_pchPreviewFile ); @@ -402,7 +402,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVide NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); return 0; } @@ -410,7 +410,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); return 0; } @@ -418,7 +418,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->EnumeratePublishedWorkshopFiles( params->eEnumerationType, params->unStartIndex, params->unCount, params->unDays, params->pTags, params->pUserTags ); return 0; } @@ -426,7 +426,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 *)params->u_iface; char *u_pchLocation = steamclient_dos_to_unix_path( params->pchLocation, 0 ); params->_ret = iface->UGCDownloadToLocation( params->hContent, u_pchLocation, params->unPriority ); steamclient_free_path( u_pchLocation ); diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012.cpp index 259fd28b..4c96adf1 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->FileForget( params->pchFile ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->FileDelete( params->pchFile ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->FileShare( params->pchFile ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->FileWriteStreamOpen( params->pchFile ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->FileWriteStreamWriteChunk( params->writeHandle, params->pvData, params->cubData ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->FileWriteStreamClose( params->writeHandle ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->FileWriteStreamCancel( params->writeHandle ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->FileExists( params->pchFile ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->FilePersisted( params->pchFile ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersist NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetFileSize( params->pchFile ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetFileTimestamp( params->pchFile ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTime NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetSyncPlatforms( params->pchFile ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetFileCount( ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCoun NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileName NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->IsCloudEnabledForAccount( ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->IsCloudEnabledForApp( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; iface->SetCloudEnabledForApp( params->bEnabled ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEna NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->UGCDownload( params->hContent, params->unPriority ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetai NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead, params->cOffset, params->eAction ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead( vo NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetCachedUGCCount( ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishWorkshopFile( u_pchFile, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); @@ -236,7 +236,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWork NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); return 0; } @@ -244,7 +244,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, u_pchFile ); steamclient_free_path( u_pchFile ); @@ -254,7 +254,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, u_pchPreviewFile ); steamclient_free_path( u_pchPreviewFile ); @@ -264,7 +264,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId, params->unMaxSecondsOld ); return 0; } @@ -312,7 +312,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); return 0; } @@ -320,7 +320,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); return 0; } @@ -328,7 +328,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -336,7 +336,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); return 0; } @@ -344,7 +344,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -352,7 +352,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_Unsubscribe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); return 0; } @@ -360,7 +360,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -368,7 +368,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); return 0; } @@ -376,7 +376,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserP NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -384,7 +384,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); return 0; } @@ -392,7 +392,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishVideo( params->eVideoProvider, params->pchVideoAccount, params->pchVideoIdentifier, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); steamclient_free_path( u_pchPreviewFile ); @@ -402,7 +402,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVide NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); return 0; } @@ -410,7 +410,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); return 0; } @@ -418,7 +418,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->EnumeratePublishedWorkshopFiles( params->eEnumerationType, params->unStartIndex, params->unCount, params->unDays, params->pTags, params->pUserTags ); return 0; } @@ -426,7 +426,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 *)params->u_iface; char *u_pchLocation = steamclient_dos_to_unix_path( params->pchLocation, 0 ); params->_ret = iface->UGCDownloadToLocation( params->hContent, u_pchLocation, params->unPriority ); steamclient_free_path( u_pchLocation ); diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013.cpp index dedfc543..2b6b22a9 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->FileWriteAsync( params->pchFile, params->pvData, params->cubData ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->FileReadAsync( params->pchFile, params->nOffset, params->cubToRead ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsy NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->FileReadAsyncComplete( params->hReadCall, params->pvBuffer, params->cubToRead ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsy NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->FileForget( params->pchFile ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->FileDelete( params->pchFile ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->FileShare( params->pchFile ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->FileWriteStreamOpen( params->pchFile ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->FileWriteStreamWriteChunk( params->writeHandle, params->pvData, params->cubData ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->FileWriteStreamClose( params->writeHandle ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->FileWriteStreamCancel( params->writeHandle ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->FileExists( params->pchFile ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->FilePersisted( params->pchFile ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersist NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetFileSize( params->pchFile ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetFileTimestamp( params->pchFile ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTime NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetSyncPlatforms( params->pchFile ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetFileCount( ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCoun NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileName NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->IsCloudEnabledForAccount( ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->IsCloudEnabledForApp( ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; iface->SetCloudEnabledForApp( params->bEnabled ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEna NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->UGCDownload( params->hContent, params->unPriority ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetai NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead, params->cOffset, params->eAction ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead( vo NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetCachedUGCCount( ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishWorkshopFile( u_pchFile, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); @@ -260,7 +260,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWork NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); return 0; } @@ -268,7 +268,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, u_pchFile ); steamclient_free_path( u_pchFile ); @@ -278,7 +278,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, u_pchPreviewFile ); steamclient_free_path( u_pchPreviewFile ); @@ -288,7 +288,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); return 0; } @@ -312,7 +312,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); return 0; } @@ -320,7 +320,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); return 0; } @@ -328,7 +328,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId, params->unMaxSecondsOld ); return 0; } @@ -336,7 +336,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); return 0; } @@ -344,7 +344,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); return 0; } @@ -352,7 +352,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -360,7 +360,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); return 0; } @@ -368,7 +368,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -376,7 +376,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_Unsubscribe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); return 0; } @@ -384,7 +384,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -392,7 +392,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); return 0; } @@ -400,7 +400,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserP NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -408,7 +408,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); return 0; } @@ -416,7 +416,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishVideo( params->eVideoProvider, params->pchVideoAccount, params->pchVideoIdentifier, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); steamclient_free_path( u_pchPreviewFile ); @@ -426,7 +426,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVide NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); return 0; } @@ -434,7 +434,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); return 0; } @@ -442,7 +442,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->EnumeratePublishedWorkshopFiles( params->eEnumerationType, params->unStartIndex, params->unCount, params->unDays, params->pTags, params->pUserTags ); return 0; } @@ -450,7 +450,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 *)params->u_iface; char *u_pchLocation = steamclient_dos_to_unix_path( params->pchLocation, 0 ); params->_ret = iface->UGCDownloadToLocation( params->hContent, u_pchLocation, params->unPriority ); steamclient_free_path( u_pchLocation ); diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014.cpp index e285123d..31415790 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->FileWriteAsync( params->pchFile, params->pvData, params->cubData ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->FileReadAsync( params->pchFile, params->nOffset, params->cubToRead ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsy NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->FileReadAsyncComplete( params->hReadCall, params->pvBuffer, params->cubToRead ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsy NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->FileForget( params->pchFile ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->FileDelete( params->pchFile ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->FileShare( params->pchFile ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->FileWriteStreamOpen( params->pchFile ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->FileWriteStreamWriteChunk( params->writeHandle, params->pvData, params->cubData ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->FileWriteStreamClose( params->writeHandle ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->FileWriteStreamCancel( params->writeHandle ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->FileExists( params->pchFile ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->FilePersisted( params->pchFile ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersist NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetFileSize( params->pchFile ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetFileTimestamp( params->pchFile ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTime NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetSyncPlatforms( params->pchFile ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetFileCount( ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCoun NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileName NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->IsCloudEnabledForAccount( ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->IsCloudEnabledForApp( ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; iface->SetCloudEnabledForApp( params->bEnabled ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEna NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->UGCDownload( params->hContent, params->unPriority ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetai NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead, params->cOffset, params->eAction ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead( vo NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetCachedUGCCount( ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishWorkshopFile( u_pchFile, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); @@ -260,7 +260,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWork NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); return 0; } @@ -268,7 +268,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, u_pchFile ); steamclient_free_path( u_pchFile ); @@ -278,7 +278,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, u_pchPreviewFile ); steamclient_free_path( u_pchPreviewFile ); @@ -288,7 +288,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); return 0; } @@ -312,7 +312,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); return 0; } @@ -320,7 +320,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); return 0; } @@ -328,7 +328,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId, params->unMaxSecondsOld ); return 0; } @@ -336,7 +336,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); return 0; } @@ -344,7 +344,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); return 0; } @@ -352,7 +352,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -360,7 +360,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); return 0; } @@ -368,7 +368,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -376,7 +376,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_Unsubscribe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); return 0; } @@ -384,7 +384,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -392,7 +392,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); return 0; } @@ -400,7 +400,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserP NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -408,7 +408,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); return 0; } @@ -416,7 +416,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishVideo( params->eVideoProvider, params->pchVideoAccount, params->pchVideoIdentifier, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); steamclient_free_path( u_pchPreviewFile ); @@ -426,7 +426,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVide NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); return 0; } @@ -434,7 +434,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); return 0; } @@ -442,7 +442,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->EnumeratePublishedWorkshopFiles( params->eEnumerationType, params->unStartIndex, params->unCount, params->unDays, params->pTags, params->pUserTags ); return 0; } @@ -450,7 +450,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 *)params->u_iface; char *u_pchLocation = steamclient_dos_to_unix_path( params->pchLocation, 0 ); params->_ret = iface->UGCDownloadToLocation( params->hContent, u_pchLocation, params->unPriority ); steamclient_free_path( u_pchLocation ); diff --git a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016.cpp b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016.cpp index 99e37e4c..68195d73 100644 --- a/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016.cpp +++ b/lsteamclient/cppISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->FileWrite( params->pchFile, params->pvData, params->cubData ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->FileRead( params->pchFile, params->pvData, params->cubDataToRead ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->FileWriteAsync( params->pchFile, params->pvData, params->cubData ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->FileReadAsync( params->pchFile, params->nOffset, params->cubToRead ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsy NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->FileReadAsyncComplete( params->hReadCall, params->pvBuffer, params->cubToRead ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsy NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->FileForget( params->pchFile ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->FileDelete( params->pchFile ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->FileShare( params->pchFile ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetSyncPlatforms( params->pchFile, params->eRemoteStoragePlatform ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->FileWriteStreamOpen( params->pchFile ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->FileWriteStreamWriteChunk( params->writeHandle, params->pvData, params->cubData ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->FileWriteStreamClose( params->writeHandle ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->FileWriteStreamCancel( params->writeHandle ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteSt NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->FileExists( params->pchFile ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists( NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->FilePersisted( params->pchFile ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersist NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetFileSize( params->pchFile ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetFileTimestamp( params->pchFile ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTime NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetSyncPlatforms( params->pchFile ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlat NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetFileCount( ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCoun NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetFileNameAndSize( params->iFile, params->pnFileSizeInBytes ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileName NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetQuota( params->pnTotalBytes, params->puAvailableBytes ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota( v NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->IsCloudEnabledForAccount( ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->IsCloudEnabledForApp( ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnab NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; iface->SetCloudEnabledForApp( params->bEnabled ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEna NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->UGCDownload( params->hContent, params->unPriority ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetUGCDownloadProgress( params->hContent, params->pnBytesDownloaded, params->pnBytesExpected ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetUGCDetails( params->hContent, params->pnAppID, params->ppchName, params->pnFileSizeInBytes, params->pSteamIDOwner ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetai NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->UGCRead( params->hContent, params->pvData, params->cubDataToRead, params->cOffset, params->eAction ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead( vo NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetCachedUGCCount( ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetCachedUGCHandle( params->iCachedContent ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUG NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishWorkshopFile( u_pchFile, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags, params->eWorkshopFileType ); @@ -260,7 +260,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWork NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->CreatePublishedFileUpdateRequest( params->unPublishedFileId ); return 0; } @@ -268,7 +268,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; char *u_pchFile = steamclient_dos_to_unix_path( params->pchFile, 0 ); params->_ret = iface->UpdatePublishedFileFile( params->updateHandle, u_pchFile ); steamclient_free_path( u_pchFile ); @@ -278,7 +278,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->UpdatePublishedFilePreviewFile( params->updateHandle, u_pchPreviewFile ); steamclient_free_path( u_pchPreviewFile ); @@ -288,7 +288,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTitle( params->updateHandle, params->pchTitle ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->UpdatePublishedFileDescription( params->updateHandle, params->pchDescription ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->UpdatePublishedFileVisibility( params->updateHandle, params->eVisibility ); return 0; } @@ -312,7 +312,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->UpdatePublishedFileTags( params->updateHandle, params->pTags ); return 0; } @@ -320,7 +320,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->CommitPublishedFileUpdate( params->updateHandle ); return 0; } @@ -328,7 +328,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetPublishedFileDetails( params->unPublishedFileId, params->unMaxSecondsOld ); return 0; } @@ -336,7 +336,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->DeletePublishedFile( params->unPublishedFileId ); return 0; } @@ -344,7 +344,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->EnumerateUserPublishedFiles( params->unStartIndex ); return 0; } @@ -352,7 +352,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -360,7 +360,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->EnumerateUserSubscribedFiles( params->unStartIndex ); return 0; } @@ -368,7 +368,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->UnsubscribePublishedFile( params->unPublishedFileId ); return 0; } @@ -376,7 +376,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_Unsubscribe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->UpdatePublishedFileSetChangeDescription( params->updateHandle, params->pchChangeDescription ); return 0; } @@ -384,7 +384,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePubli NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -392,7 +392,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishe NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->UpdateUserPublishedItemVote( params->unPublishedFileId, params->bVoteUp ); return 0; } @@ -400,7 +400,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserP NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetUserPublishedItemVoteDetails( params->unPublishedFileId ); return 0; } @@ -408,7 +408,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->EnumerateUserSharedWorkshopFiles( params->steamId, params->unStartIndex, params->pRequiredTags, params->pExcludedTags ); return 0; } @@ -416,7 +416,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUs NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; char *u_pchPreviewFile = steamclient_dos_to_unix_path( params->pchPreviewFile, 0 ); params->_ret = iface->PublishVideo( params->eVideoProvider, params->pchVideoAccount, params->pchVideoIdentifier, u_pchPreviewFile, params->nConsumerAppId, params->pchTitle, params->pchDescription, params->eVisibility, params->pTags ); steamclient_free_path( u_pchPreviewFile ); @@ -426,7 +426,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVide NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetUserPublishedFileAction( params->unPublishedFileId, params->eAction ); return 0; } @@ -434,7 +434,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPubl NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->EnumeratePublishedFilesByUserAction( params->eAction, params->unStartIndex ); return 0; } @@ -442,7 +442,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->EnumeratePublishedWorkshopFiles( params->eEnumerationType, params->unStartIndex, params->unCount, params->unDays, params->pTags, params->pUserTags ); return 0; } @@ -450,7 +450,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePu NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; char *u_pchLocation = steamclient_dos_to_unix_path( params->pchLocation, 0 ); params->_ret = iface->UGCDownloadToLocation( params->hContent, u_pchLocation, params->unPriority ); steamclient_free_path( u_pchLocation ); @@ -460,7 +460,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetLocalFileChangeCount( ); return 0; } @@ -468,7 +468,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFil NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetLocalFileChange( params->iFile, params->pEChangeType, params->pEFilePathType ); return 0; } @@ -476,7 +476,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFil NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->BeginFileWriteBatch( ); return 0; } @@ -484,7 +484,7 @@ NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWr NTSTATUS ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch( void *args ) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch_params *params = (struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch_params *)args; - struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *iface = (struct u_ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->EndFileWriteBatch( ); return 0; } diff --git a/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001.cpp index c7a39c12..a7c2f346 100644 --- a/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->WriteScreenshot( params->pubRGB, params->cubRGB, params->nWidth, params->nHeight ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *)params->u_iface; char *u_pchFilename = steamclient_dos_to_unix_path( params->pchFilename, 0 ); char *u_pchThumbnailFilename = steamclient_dos_to_unix_path( params->pchThumbnailFilename, 0 ); params->_ret = iface->AddScreenshotToLibrary( u_pchFilename, u_pchThumbnailFilename, params->nWidth, params->nHeight ); @@ -28,7 +28,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotTo NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *)params->u_iface; iface->TriggerScreenshot( ); return 0; } @@ -36,7 +36,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreensh NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *)params->u_iface; iface->HookScreenshots( params->bHook ); return 0; } @@ -44,7 +44,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetLocation( params->hScreenshot, params->pchLocation ); return 0; } @@ -52,7 +52,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation( vo NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->TagUser( params->hScreenshot, params->steamID ); return 0; } diff --git a/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002.cpp b/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002.cpp index a9045737..100192e3 100644 --- a/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002.cpp +++ b/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->WriteScreenshot( params->pubRGB, params->cubRGB, params->nWidth, params->nHeight ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *)params->u_iface; char *u_pchFilename = steamclient_dos_to_unix_path( params->pchFilename, 0 ); char *u_pchThumbnailFilename = steamclient_dos_to_unix_path( params->pchThumbnailFilename, 0 ); params->_ret = iface->AddScreenshotToLibrary( u_pchFilename, u_pchThumbnailFilename, params->nWidth, params->nHeight ); @@ -28,7 +28,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotTo NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *)params->u_iface; iface->TriggerScreenshot( ); return 0; } @@ -36,7 +36,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreensh NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *)params->u_iface; iface->HookScreenshots( params->bHook ); return 0; } @@ -44,7 +44,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetLocation( params->hScreenshot, params->pchLocation ); return 0; } @@ -52,7 +52,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation( vo NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->TagUser( params->hScreenshot, params->steamID ); return 0; } @@ -60,7 +60,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser( void * NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->TagPublishedFile( params->hScreenshot, params->unPublishedFileID ); return 0; } diff --git a/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003.cpp b/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003.cpp index 62102b34..ae5efbf8 100644 --- a/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003.cpp +++ b/lsteamclient/cppISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->WriteScreenshot( params->pubRGB, params->cubRGB, params->nWidth, params->nHeight ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *)params->u_iface; char *u_pchFilename = steamclient_dos_to_unix_path( params->pchFilename, 0 ); char *u_pchThumbnailFilename = steamclient_dos_to_unix_path( params->pchThumbnailFilename, 0 ); params->_ret = iface->AddScreenshotToLibrary( u_pchFilename, u_pchThumbnailFilename, params->nWidth, params->nHeight ); @@ -28,7 +28,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotTo NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *)params->u_iface; iface->TriggerScreenshot( ); return 0; } @@ -36,7 +36,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreensh NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *)params->u_iface; iface->HookScreenshots( params->bHook ); return 0; } @@ -44,7 +44,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetLocation( params->hScreenshot, params->pchLocation ); return 0; } @@ -52,7 +52,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation( vo NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->TagUser( params->hScreenshot, params->steamID ); return 0; } @@ -60,7 +60,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser( void * NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->TagPublishedFile( params->hScreenshot, params->unPublishedFileID ); return 0; } @@ -68,7 +68,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFil NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->IsScreenshotsHooked( ); return 0; } @@ -76,7 +76,7 @@ NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHo NTSTATUS ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary( void *args ) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary_params *params = (struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary_params *)args; - struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *iface = (struct u_ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003 *)params->u_iface; char *u_pchFilename = steamclient_dos_to_unix_path( params->pchFilename, 0 ); char *u_pchVRFilename = steamclient_dos_to_unix_path( params->pchVRFilename, 0 ); params->_ret = iface->AddVRScreenshotToLibrary( params->eType, u_pchFilename, u_pchVRFilename ); diff --git a/lsteamclient/cppISteamTimeline_STEAMTIMELINE_INTERFACE_V001.cpp b/lsteamclient/cppISteamTimeline_STEAMTIMELINE_INTERFACE_V001.cpp index 3fb0cfef..8525d06c 100644 --- a/lsteamclient/cppISteamTimeline_STEAMTIMELINE_INTERFACE_V001.cpp +++ b/lsteamclient/cppISteamTimeline_STEAMTIMELINE_INTERFACE_V001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineStateDescription( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineStateDescription_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineStateDescription_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V001 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V001 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V001 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V001 *)params->u_iface; iface->SetTimelineStateDescription( params->pchDescription, params->flTimeDelta ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineStateDescription NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_ClearTimelineStateDescription( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_ClearTimelineStateDescription_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_ClearTimelineStateDescription_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V001 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V001 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V001 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V001 *)params->u_iface; iface->ClearTimelineStateDescription( params->flTimeDelta ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_ClearTimelineStateDescripti NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_AddTimelineEvent( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_AddTimelineEvent_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_AddTimelineEvent_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V001 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V001 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V001 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V001 *)params->u_iface; iface->AddTimelineEvent( params->pchIcon, params->pchTitle, params->pchDescription, params->unPriority, params->flStartOffsetSeconds, params->flDurationSeconds, params->ePossibleClip ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_AddTimelineEvent( void *arg NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineGameMode( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineGameMode_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineGameMode_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V001 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V001 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V001 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V001 *)params->u_iface; iface->SetTimelineGameMode( params->eMode ); return 0; } diff --git a/lsteamclient/cppISteamTimeline_STEAMTIMELINE_INTERFACE_V004.cpp b/lsteamclient/cppISteamTimeline_STEAMTIMELINE_INTERFACE_V004.cpp index 08e63953..8a243976 100644 --- a/lsteamclient/cppISteamTimeline_STEAMTIMELINE_INTERFACE_V004.cpp +++ b/lsteamclient/cppISteamTimeline_STEAMTIMELINE_INTERFACE_V004.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineTooltip( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineTooltip_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineTooltip_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->u_iface; iface->SetTimelineTooltip( params->pchDescription, params->flTimeDelta ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineTooltip( void *a NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_ClearTimelineTooltip( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_ClearTimelineTooltip_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_ClearTimelineTooltip_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->u_iface; iface->ClearTimelineTooltip( params->flTimeDelta ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_ClearTimelineTooltip( void NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineGameMode( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineGameMode_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineGameMode_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->u_iface; iface->SetTimelineGameMode( params->eMode ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineGameMode( void * NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddInstantaneousTimelineEvent( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddInstantaneousTimelineEvent_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddInstantaneousTimelineEvent_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->u_iface; params->_ret = iface->AddInstantaneousTimelineEvent( params->pchTitle, params->pchDescription, params->pchIcon, params->unIconPriority, params->flStartOffsetSeconds, params->ePossibleClip ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddInstantaneousTimelineEve NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddRangeTimelineEvent( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddRangeTimelineEvent_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddRangeTimelineEvent_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->u_iface; params->_ret = iface->AddRangeTimelineEvent( params->pchTitle, params->pchDescription, params->pchIcon, params->unIconPriority, params->flStartOffsetSeconds, params->flDuration, params->ePossibleClip ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddRangeTimelineEvent( void NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartRangeTimelineEvent( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartRangeTimelineEvent_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartRangeTimelineEvent_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->u_iface; params->_ret = iface->StartRangeTimelineEvent( params->pchTitle, params->pchDescription, params->pchIcon, params->unPriority, params->flStartOffsetSeconds, params->ePossibleClip ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartRangeTimelineEvent( vo NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_UpdateRangeTimelineEvent( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_UpdateRangeTimelineEvent_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_UpdateRangeTimelineEvent_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->u_iface; iface->UpdateRangeTimelineEvent( params->ulEvent, params->pchTitle, params->pchDescription, params->pchIcon, params->unPriority, params->ePossibleClip ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_UpdateRangeTimelineEvent( v NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndRangeTimelineEvent( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndRangeTimelineEvent_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndRangeTimelineEvent_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->u_iface; iface->EndRangeTimelineEvent( params->ulEvent, params->flEndOffsetSeconds ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndRangeTimelineEvent( void NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_RemoveTimelineEvent( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_RemoveTimelineEvent_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_RemoveTimelineEvent_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->u_iface; iface->RemoveTimelineEvent( params->ulEvent ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_RemoveTimelineEvent( void * NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesEventRecordingExist( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesEventRecordingExist_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesEventRecordingExist_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->u_iface; params->_ret = iface->DoesEventRecordingExist( params->ulEvent ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesEventRecordingExist( vo NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartGamePhase( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartGamePhase_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartGamePhase_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->u_iface; iface->StartGamePhase( ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartGamePhase( void *args NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndGamePhase( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndGamePhase_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndGamePhase_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->u_iface; iface->EndGamePhase( ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndGamePhase( void *args ) NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseID( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseID_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseID_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->u_iface; iface->SetGamePhaseID( params->pchPhaseID ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseID( void *args NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesGamePhaseRecordingExist( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesGamePhaseRecordingExist_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesGamePhaseRecordingExist_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->u_iface; params->_ret = iface->DoesGamePhaseRecordingExist( params->pchPhaseID ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesGamePhaseRecordingExist NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddGamePhaseTag( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddGamePhaseTag_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddGamePhaseTag_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->u_iface; iface->AddGamePhaseTag( params->pchTagName, params->pchTagIcon, params->pchTagGroup, params->unPriority ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddGamePhaseTag( void *args NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseAttribute( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseAttribute_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseAttribute_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->u_iface; iface->SetGamePhaseAttribute( params->pchAttributeGroup, params->pchAttributeValue, params->unPriority ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseAttribute( void NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToGamePhase( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToGamePhase_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToGamePhase_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->u_iface; iface->OpenOverlayToGamePhase( params->pchPhaseID ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToGamePhase( voi NTSTATUS ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToTimelineEvent( void *args ) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToTimelineEvent_params *params = (struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToTimelineEvent_params *)args; - struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->linux_side; + struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *iface = (struct u_ISteamTimeline_STEAMTIMELINE_INTERFACE_V004 *)params->u_iface; iface->OpenOverlayToTimelineEvent( params->ulEvent ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION001.cpp index fbabb4c1..f091cab7 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->u_iface; u_SteamUGCDetails_t_126 u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -42,7 +42,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -50,7 +50,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -106,7 +106,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -114,7 +114,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION002.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION002.cpp index bd1da001..19ae8827 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION002.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -42,7 +42,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -50,7 +50,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -106,7 +106,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -114,7 +114,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -122,7 +122,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); return 0; } @@ -130,7 +130,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); return 0; } @@ -138,7 +138,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); return 0; } @@ -146,7 +146,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); return 0; } @@ -154,7 +154,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); return 0; } @@ -162,7 +162,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); return 0; } @@ -170,7 +170,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); return 0; } @@ -178,7 +178,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; char *u_pszContentFolder = steamclient_dos_to_unix_path( params->pszContentFolder, 0 ); params->_ret = iface->SetItemContent( params->handle, u_pszContentFolder ); steamclient_free_path( u_pszContentFolder ); @@ -188,7 +188,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->SetItemPreview( params->handle, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -198,7 +198,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); return 0; } @@ -206,7 +206,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); return 0; } @@ -214,7 +214,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); return 0; } @@ -222,7 +222,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); return 0; } @@ -230,7 +230,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetNumSubscribedItems( ); return 0; } @@ -238,7 +238,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -246,7 +246,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize ); steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderSize, 0 ); return 0; @@ -255,7 +255,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetItemUpdateInfo( params->nPublishedFileID, params->pbNeedsUpdate, params->pbIsDownloading, params->punBytesDownloaded, params->punBytesTotal ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION003.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION003.cpp index 72ec6223..80bdacc6 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION003.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION003.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -42,7 +42,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -50,7 +50,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -106,7 +106,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -114,7 +114,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -122,7 +122,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); return 0; } @@ -130,7 +130,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); return 0; } @@ -138,7 +138,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); return 0; } @@ -146,7 +146,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); return 0; } @@ -154,7 +154,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); return 0; } @@ -162,7 +162,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); return 0; } @@ -170,7 +170,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); return 0; } @@ -178,7 +178,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; char *u_pszContentFolder = steamclient_dos_to_unix_path( params->pszContentFolder, 0 ); params->_ret = iface->SetItemContent( params->handle, u_pszContentFolder ); steamclient_free_path( u_pszContentFolder ); @@ -188,7 +188,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->SetItemPreview( params->handle, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -198,7 +198,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); return 0; } @@ -206,7 +206,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); return 0; } @@ -214,7 +214,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); return 0; } @@ -222,7 +222,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); return 0; } @@ -230,7 +230,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetNumSubscribedItems( ); return 0; } @@ -238,7 +238,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -246,7 +246,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->pbLegacyItem ); steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderSize, 0 ); return 0; @@ -255,7 +255,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetItemUpdateInfo( params->nPublishedFileID, params->pbNeedsUpdate, params->pbIsDownloading, params->punBytesDownloaded, params->punBytesTotal ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION004.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION004.cpp index f618b1b7..044160bf 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION004.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION004.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -42,7 +42,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -50,7 +50,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -106,7 +106,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -114,7 +114,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -122,7 +122,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); return 0; } @@ -130,7 +130,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); return 0; } @@ -138,7 +138,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); return 0; } @@ -146,7 +146,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); return 0; } @@ -154,7 +154,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); return 0; } @@ -162,7 +162,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); return 0; } @@ -170,7 +170,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); return 0; } @@ -178,7 +178,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; char *u_pszContentFolder = steamclient_dos_to_unix_path( params->pszContentFolder, 0 ); params->_ret = iface->SetItemContent( params->handle, u_pszContentFolder ); steamclient_free_path( u_pszContentFolder ); @@ -188,7 +188,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->SetItemPreview( params->handle, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -198,7 +198,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); return 0; } @@ -206,7 +206,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); return 0; } @@ -214,7 +214,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); return 0; } @@ -222,7 +222,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); return 0; } @@ -230,7 +230,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetNumSubscribedItems( ); return 0; } @@ -238,7 +238,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -246,7 +246,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetItemState( params->nPublishedFileID ); return 0; } @@ -254,7 +254,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderSize, 0 ); return 0; @@ -263,7 +263,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); return 0; } @@ -271,7 +271,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION005.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION005.cpp index f39b39fe..aa199dac 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION005.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION005.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -50,7 +50,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); return 0; } @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreview NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pbIsImage ); steamclient_unix_path_to_dos_path( params->_ret, params->pchURLOrVideoID, params->pchURLOrVideoID, params->cchURLSize, 1 ); return 0; @@ -99,7 +99,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -107,7 +107,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -115,7 +115,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -123,7 +123,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -131,7 +131,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); return 0; } @@ -139,7 +139,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); return 0; } @@ -147,7 +147,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); return 0; } @@ -155,7 +155,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -163,7 +163,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); return 0; } @@ -211,7 +211,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); return 0; } @@ -219,7 +219,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); return 0; } @@ -227,7 +227,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); return 0; } @@ -235,7 +235,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); return 0; } @@ -243,7 +243,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); return 0; } @@ -251,7 +251,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); return 0; } @@ -259,7 +259,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); return 0; } @@ -267,7 +267,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; char *u_pszContentFolder = steamclient_dos_to_unix_path( params->pszContentFolder, 0 ); params->_ret = iface->SetItemContent( params->handle, u_pszContentFolder ); steamclient_free_path( u_pszContentFolder ); @@ -277,7 +277,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->SetItemPreview( params->handle, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -287,7 +287,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); return 0; } @@ -295,7 +295,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); return 0; } @@ -303,7 +303,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -311,7 +311,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -319,7 +319,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); return 0; } @@ -327,7 +327,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); return 0; } @@ -335,7 +335,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetNumSubscribedItems( ); return 0; } @@ -343,7 +343,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -351,7 +351,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetItemState( params->nPublishedFileID ); return 0; } @@ -359,7 +359,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderSize, 0 ); return 0; @@ -368,7 +368,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); return 0; } @@ -376,7 +376,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION006.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION006.cpp index 3fcee639..d2e4fab1 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION006.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION006.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -50,7 +50,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); return 0; } @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreview NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pbIsImage ); steamclient_unix_path_to_dos_path( params->_ret, params->pchURLOrVideoID, params->pchURLOrVideoID, params->cchURLSize, 1 ); return 0; @@ -99,7 +99,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -107,7 +107,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -115,7 +115,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -123,7 +123,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -131,7 +131,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); return 0; } @@ -139,7 +139,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); return 0; } @@ -147,7 +147,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); return 0; } @@ -155,7 +155,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -163,7 +163,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -211,7 +211,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); return 0; } @@ -219,7 +219,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); return 0; } @@ -227,7 +227,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); return 0; } @@ -235,7 +235,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); return 0; } @@ -243,7 +243,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); return 0; } @@ -251,7 +251,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); return 0; } @@ -259,7 +259,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); return 0; } @@ -267,7 +267,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); return 0; } @@ -275,7 +275,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); return 0; } @@ -283,7 +283,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; char *u_pszContentFolder = steamclient_dos_to_unix_path( params->pszContentFolder, 0 ); params->_ret = iface->SetItemContent( params->handle, u_pszContentFolder ); steamclient_free_path( u_pszContentFolder ); @@ -293,7 +293,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->SetItemPreview( params->handle, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -303,7 +303,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); return 0; } @@ -311,7 +311,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); return 0; } @@ -319,7 +319,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); return 0; } @@ -327,7 +327,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); return 0; } @@ -335,7 +335,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -343,7 +343,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -351,7 +351,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); return 0; } @@ -359,7 +359,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); return 0; } @@ -367,7 +367,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetNumSubscribedItems( ); return 0; } @@ -375,7 +375,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -383,7 +383,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetItemState( params->nPublishedFileID ); return 0; } @@ -391,7 +391,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderSize, 0 ); return 0; @@ -400,7 +400,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); return 0; } @@ -408,7 +408,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION007.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION007.cpp index 6332bced..f124b7e1 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION007.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION007.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -50,7 +50,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); return 0; } @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreview NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pbIsImage ); steamclient_unix_path_to_dos_path( params->_ret, params->pchURLOrVideoID, params->pchURLOrVideoID, params->cchURLSize, 1 ); return 0; @@ -99,7 +99,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); return 0; } @@ -107,7 +107,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); return 0; } @@ -115,7 +115,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -123,7 +123,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -131,7 +131,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -139,7 +139,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); return 0; } @@ -147,7 +147,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -155,7 +155,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); return 0; } @@ -163,7 +163,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -211,7 +211,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -219,7 +219,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -227,7 +227,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -235,7 +235,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); return 0; } @@ -243,7 +243,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); return 0; } @@ -251,7 +251,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); return 0; } @@ -259,7 +259,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); return 0; } @@ -267,7 +267,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); return 0; } @@ -275,7 +275,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); return 0; } @@ -283,7 +283,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); return 0; } @@ -291,7 +291,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); return 0; } @@ -299,7 +299,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); return 0; } @@ -307,7 +307,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); return 0; } @@ -315,7 +315,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; char *u_pszContentFolder = steamclient_dos_to_unix_path( params->pszContentFolder, 0 ); params->_ret = iface->SetItemContent( params->handle, u_pszContentFolder ); steamclient_free_path( u_pszContentFolder ); @@ -325,7 +325,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->SetItemPreview( params->handle, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -335,7 +335,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); return 0; } @@ -343,7 +343,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); return 0; } @@ -351,7 +351,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); return 0; } @@ -359,7 +359,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); return 0; } @@ -367,7 +367,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); return 0; } @@ -375,7 +375,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); return 0; } @@ -383,7 +383,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -391,7 +391,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -399,7 +399,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); return 0; } @@ -407,7 +407,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); return 0; } @@ -415,7 +415,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetNumSubscribedItems( ); return 0; } @@ -423,7 +423,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -431,7 +431,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetItemState( params->nPublishedFileID ); return 0; } @@ -439,7 +439,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderSize, 0 ); return 0; @@ -448,7 +448,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); return 0; } @@ -456,7 +456,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); return 0; } @@ -464,7 +464,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; char *u_pszFolder = steamclient_dos_to_unix_path( params->pszFolder, 0 ); params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, u_pszFolder ); steamclient_free_path( u_pszFolder ); @@ -474,7 +474,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION007 *)params->u_iface; iface->SuspendDownloads( params->bSuspend ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION008.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION008.cpp index 8a741573..b93f6a48 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION008.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION008.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -50,7 +50,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); return 0; } @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreview NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); steamclient_unix_path_to_dos_path( params->_ret, params->pchURLOrVideoID, params->pchURLOrVideoID, params->cchURLSize, 1 ); return 0; @@ -99,7 +99,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); return 0; } @@ -107,7 +107,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); return 0; } @@ -115,7 +115,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -123,7 +123,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -131,7 +131,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -139,7 +139,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); return 0; } @@ -147,7 +147,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -155,7 +155,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); return 0; } @@ -163,7 +163,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -211,7 +211,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -219,7 +219,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -227,7 +227,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -235,7 +235,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); return 0; } @@ -243,7 +243,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); return 0; } @@ -251,7 +251,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); return 0; } @@ -259,7 +259,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); return 0; } @@ -267,7 +267,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); return 0; } @@ -275,7 +275,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); return 0; } @@ -283,7 +283,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); return 0; } @@ -291,7 +291,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); return 0; } @@ -299,7 +299,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); return 0; } @@ -307,7 +307,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); return 0; } @@ -315,7 +315,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; char *u_pszContentFolder = steamclient_dos_to_unix_path( params->pszContentFolder, 0 ); params->_ret = iface->SetItemContent( params->handle, u_pszContentFolder ); steamclient_free_path( u_pszContentFolder ); @@ -325,7 +325,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->SetItemPreview( params->handle, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -335,7 +335,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); return 0; } @@ -343,7 +343,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); return 0; } @@ -351,7 +351,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->AddItemPreviewFile( params->handle, u_pszPreviewFile, params->type ); steamclient_free_path( u_pszPreviewFile ); @@ -361,7 +361,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); return 0; } @@ -369,7 +369,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -379,7 +379,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); return 0; } @@ -387,7 +387,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); return 0; } @@ -395,7 +395,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); return 0; } @@ -403,7 +403,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); return 0; } @@ -411,7 +411,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); return 0; } @@ -419,7 +419,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); return 0; } @@ -427,7 +427,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -435,7 +435,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -443,7 +443,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); return 0; } @@ -451,7 +451,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); return 0; } @@ -459,7 +459,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetNumSubscribedItems( ); return 0; } @@ -467,7 +467,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -475,7 +475,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetItemState( params->nPublishedFileID ); return 0; } @@ -483,7 +483,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderSize, 0 ); return 0; @@ -492,7 +492,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); return 0; } @@ -500,7 +500,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); return 0; } @@ -508,7 +508,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; char *u_pszFolder = steamclient_dos_to_unix_path( params->pszFolder, 0 ); params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, u_pszFolder ); steamclient_free_path( u_pszFolder ); @@ -518,7 +518,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION008 *)params->u_iface; iface->SuspendDownloads( params->bSuspend ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION009.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION009.cpp index dcf28a82..9d1be11e 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION009.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION009.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -50,7 +50,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); return 0; } @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreview NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); steamclient_unix_path_to_dos_path( params->_ret, params->pchURLOrVideoID, params->pchURLOrVideoID, params->cchURLSize, 1 ); return 0; @@ -99,7 +99,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); return 0; } @@ -107,7 +107,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); return 0; } @@ -115,7 +115,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -123,7 +123,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -131,7 +131,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -139,7 +139,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); return 0; } @@ -147,7 +147,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); return 0; } @@ -155,7 +155,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -163,7 +163,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); return 0; } @@ -211,7 +211,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -219,7 +219,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -227,7 +227,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -235,7 +235,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -243,7 +243,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); return 0; } @@ -251,7 +251,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); return 0; } @@ -259,7 +259,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); return 0; } @@ -267,7 +267,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); return 0; } @@ -275,7 +275,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); return 0; } @@ -283,7 +283,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); return 0; } @@ -291,7 +291,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); return 0; } @@ -299,7 +299,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); return 0; } @@ -307,7 +307,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); return 0; } @@ -315,7 +315,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); return 0; } @@ -323,7 +323,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; char *u_pszContentFolder = steamclient_dos_to_unix_path( params->pszContentFolder, 0 ); params->_ret = iface->SetItemContent( params->handle, u_pszContentFolder ); steamclient_free_path( u_pszContentFolder ); @@ -333,7 +333,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->SetItemPreview( params->handle, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -343,7 +343,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); return 0; } @@ -351,7 +351,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); return 0; } @@ -359,7 +359,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->AddItemPreviewFile( params->handle, u_pszPreviewFile, params->type ); steamclient_free_path( u_pszPreviewFile ); @@ -369,7 +369,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); return 0; } @@ -377,7 +377,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -387,7 +387,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); return 0; } @@ -395,7 +395,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); return 0; } @@ -403,7 +403,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); return 0; } @@ -411,7 +411,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); return 0; } @@ -419,7 +419,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); return 0; } @@ -427,7 +427,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); return 0; } @@ -435,7 +435,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -443,7 +443,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -451,7 +451,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); return 0; } @@ -459,7 +459,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); return 0; } @@ -467,7 +467,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetNumSubscribedItems( ); return 0; } @@ -475,7 +475,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -483,7 +483,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetItemState( params->nPublishedFileID ); return 0; } @@ -491,7 +491,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderSize, 0 ); return 0; @@ -500,7 +500,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); return 0; } @@ -508,7 +508,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); return 0; } @@ -516,7 +516,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; char *u_pszFolder = steamclient_dos_to_unix_path( params->pszFolder, 0 ); params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, u_pszFolder ); steamclient_free_path( u_pszFolder ); @@ -526,7 +526,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; iface->SuspendDownloads( params->bSuspend ); return 0; } @@ -534,7 +534,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -542,7 +542,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -550,7 +550,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION010.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION010.cpp index 8736e6e2..3c3d7f7b 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION010.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION010.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -50,7 +50,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); return 0; } @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreview NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); steamclient_unix_path_to_dos_path( params->_ret, params->pchURLOrVideoID, params->pchURLOrVideoID, params->cchURLSize, 1 ); return 0; @@ -99,7 +99,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); return 0; } @@ -107,7 +107,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); return 0; } @@ -115,7 +115,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -123,7 +123,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -131,7 +131,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -139,7 +139,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); return 0; } @@ -147,7 +147,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); return 0; } @@ -155,7 +155,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -163,7 +163,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetReturnPlaytimeStats( params->handle, params->unDays ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); return 0; } @@ -211,7 +211,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); return 0; } @@ -219,7 +219,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -227,7 +227,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -235,7 +235,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -243,7 +243,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -251,7 +251,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); return 0; } @@ -259,7 +259,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); return 0; } @@ -267,7 +267,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); return 0; } @@ -275,7 +275,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); return 0; } @@ -283,7 +283,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); return 0; } @@ -291,7 +291,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); return 0; } @@ -299,7 +299,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); return 0; } @@ -307,7 +307,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); return 0; } @@ -315,7 +315,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); return 0; } @@ -323,7 +323,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); return 0; } @@ -331,7 +331,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; char *u_pszContentFolder = steamclient_dos_to_unix_path( params->pszContentFolder, 0 ); params->_ret = iface->SetItemContent( params->handle, u_pszContentFolder ); steamclient_free_path( u_pszContentFolder ); @@ -341,7 +341,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->SetItemPreview( params->handle, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -351,7 +351,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); return 0; } @@ -359,7 +359,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); return 0; } @@ -367,7 +367,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->AddItemPreviewFile( params->handle, u_pszPreviewFile, params->type ); steamclient_free_path( u_pszPreviewFile ); @@ -377,7 +377,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); return 0; } @@ -385,7 +385,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -395,7 +395,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); return 0; } @@ -403,7 +403,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); return 0; } @@ -411,7 +411,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); return 0; } @@ -419,7 +419,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); return 0; } @@ -427,7 +427,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); return 0; } @@ -435,7 +435,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); return 0; } @@ -443,7 +443,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -451,7 +451,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -459,7 +459,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); return 0; } @@ -467,7 +467,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); return 0; } @@ -475,7 +475,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetNumSubscribedItems( ); return 0; } @@ -483,7 +483,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -491,7 +491,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetItemState( params->nPublishedFileID ); return 0; } @@ -499,7 +499,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderSize, 0 ); return 0; @@ -508,7 +508,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); return 0; } @@ -516,7 +516,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); return 0; } @@ -524,7 +524,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; char *u_pszFolder = steamclient_dos_to_unix_path( params->pszFolder, 0 ); params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, u_pszFolder ); steamclient_free_path( u_pszFolder ); @@ -534,7 +534,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; iface->SuspendDownloads( params->bSuspend ); return 0; } @@ -542,7 +542,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -550,7 +550,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -558,7 +558,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); return 0; } @@ -566,7 +566,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->AddDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -574,7 +574,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->RemoveDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -582,7 +582,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->AddAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -590,7 +590,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->RemoveAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -598,7 +598,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetAppDependencies( params->nPublishedFileID ); return 0; } @@ -606,7 +606,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->DeleteItem( params->nPublishedFileID ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION012.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION012.cpp index 0a438011..49e3923c 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION012.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION012.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->pchCursor ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreview NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); steamclient_unix_path_to_dos_path( params->_ret, params->pchURLOrVideoID, params->pchURLOrVideoID, params->cchURLSize, 1 ); return 0; @@ -107,7 +107,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); return 0; } @@ -115,7 +115,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); return 0; } @@ -123,7 +123,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -131,7 +131,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -139,7 +139,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -147,7 +147,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); return 0; } @@ -155,7 +155,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); return 0; } @@ -163,7 +163,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetReturnPlaytimeStats( params->handle, params->unDays ); return 0; } @@ -211,7 +211,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); return 0; } @@ -219,7 +219,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); return 0; } @@ -227,7 +227,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -235,7 +235,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -243,7 +243,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -251,7 +251,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -259,7 +259,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); return 0; } @@ -267,7 +267,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); return 0; } @@ -275,7 +275,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); return 0; } @@ -283,7 +283,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); return 0; } @@ -291,7 +291,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); return 0; } @@ -299,7 +299,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); return 0; } @@ -307,7 +307,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); return 0; } @@ -315,7 +315,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); return 0; } @@ -323,7 +323,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); return 0; } @@ -331,7 +331,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); return 0; } @@ -339,7 +339,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; char *u_pszContentFolder = steamclient_dos_to_unix_path( params->pszContentFolder, 0 ); params->_ret = iface->SetItemContent( params->handle, u_pszContentFolder ); steamclient_free_path( u_pszContentFolder ); @@ -349,7 +349,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->SetItemPreview( params->handle, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -359,7 +359,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetAllowLegacyUpload( params->handle, params->bAllowLegacyUpload ); return 0; } @@ -367,7 +367,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); return 0; } @@ -375,7 +375,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); return 0; } @@ -383,7 +383,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->AddItemPreviewFile( params->handle, u_pszPreviewFile, params->type ); steamclient_free_path( u_pszPreviewFile ); @@ -393,7 +393,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); return 0; } @@ -401,7 +401,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -411,7 +411,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); return 0; } @@ -419,7 +419,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); return 0; } @@ -427,7 +427,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); return 0; } @@ -435,7 +435,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); return 0; } @@ -443,7 +443,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); return 0; } @@ -451,7 +451,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); return 0; } @@ -459,7 +459,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -467,7 +467,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -475,7 +475,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); return 0; } @@ -483,7 +483,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); return 0; } @@ -491,7 +491,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetNumSubscribedItems( ); return 0; } @@ -499,7 +499,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -507,7 +507,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetItemState( params->nPublishedFileID ); return 0; } @@ -515,7 +515,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderSize, 0 ); return 0; @@ -524,7 +524,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); return 0; } @@ -532,7 +532,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); return 0; } @@ -540,7 +540,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; char *u_pszFolder = steamclient_dos_to_unix_path( params->pszFolder, 0 ); params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, u_pszFolder ); steamclient_free_path( u_pszFolder ); @@ -550,7 +550,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; iface->SuspendDownloads( params->bSuspend ); return 0; } @@ -558,7 +558,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -566,7 +566,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -574,7 +574,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); return 0; } @@ -582,7 +582,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->AddDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -590,7 +590,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->RemoveDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -598,7 +598,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->AddAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -606,7 +606,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->RemoveAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -614,7 +614,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetAppDependencies( params->nPublishedFileID ); return 0; } @@ -622,7 +622,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->DeleteItem( params->nPublishedFileID ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION013.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION013.cpp index b9f9f6e5..0ee8cc8c 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION013.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION013.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->pchCursor ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreview NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); steamclient_unix_path_to_dos_path( params->_ret, params->pchURLOrVideoID, params->pchURLOrVideoID, params->cchURLSize, 1 ); return 0; @@ -107,7 +107,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); return 0; } @@ -115,7 +115,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); return 0; } @@ -123,7 +123,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->pchKey, params->pchValue, params->cchValueSize ); return 0; } @@ -131,7 +131,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -139,7 +139,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -147,7 +147,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -155,7 +155,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); return 0; } @@ -163,7 +163,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -211,7 +211,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetReturnPlaytimeStats( params->handle, params->unDays ); return 0; } @@ -219,7 +219,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); return 0; } @@ -227,7 +227,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); return 0; } @@ -235,7 +235,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -243,7 +243,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -251,7 +251,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -259,7 +259,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -267,7 +267,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); return 0; } @@ -275,7 +275,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); return 0; } @@ -283,7 +283,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); return 0; } @@ -291,7 +291,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); return 0; } @@ -299,7 +299,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); return 0; } @@ -307,7 +307,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); return 0; } @@ -315,7 +315,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); return 0; } @@ -323,7 +323,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); return 0; } @@ -331,7 +331,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); return 0; } @@ -339,7 +339,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); return 0; } @@ -347,7 +347,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; char *u_pszContentFolder = steamclient_dos_to_unix_path( params->pszContentFolder, 0 ); params->_ret = iface->SetItemContent( params->handle, u_pszContentFolder ); steamclient_free_path( u_pszContentFolder ); @@ -357,7 +357,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->SetItemPreview( params->handle, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -367,7 +367,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetAllowLegacyUpload( params->handle, params->bAllowLegacyUpload ); return 0; } @@ -375,7 +375,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->RemoveAllItemKeyValueTags( params->handle ); return 0; } @@ -383,7 +383,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); return 0; } @@ -391,7 +391,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); return 0; } @@ -399,7 +399,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->AddItemPreviewFile( params->handle, u_pszPreviewFile, params->type ); steamclient_free_path( u_pszPreviewFile ); @@ -409,7 +409,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); return 0; } @@ -417,7 +417,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -427,7 +427,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); return 0; } @@ -435,7 +435,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); return 0; } @@ -443,7 +443,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); return 0; } @@ -451,7 +451,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); return 0; } @@ -459,7 +459,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); return 0; } @@ -467,7 +467,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); return 0; } @@ -475,7 +475,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -483,7 +483,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -491,7 +491,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); return 0; } @@ -499,7 +499,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); return 0; } @@ -507,7 +507,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetNumSubscribedItems( ); return 0; } @@ -515,7 +515,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -523,7 +523,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetItemState( params->nPublishedFileID ); return 0; } @@ -531,7 +531,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderSize, 0 ); return 0; @@ -540,7 +540,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); return 0; } @@ -548,7 +548,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); return 0; } @@ -556,7 +556,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; char *u_pszFolder = steamclient_dos_to_unix_path( params->pszFolder, 0 ); params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, u_pszFolder ); steamclient_free_path( u_pszFolder ); @@ -566,7 +566,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; iface->SuspendDownloads( params->bSuspend ); return 0; } @@ -574,7 +574,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -582,7 +582,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -590,7 +590,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); return 0; } @@ -598,7 +598,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->AddDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -606,7 +606,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->RemoveDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -614,7 +614,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->AddAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -622,7 +622,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->RemoveAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -630,7 +630,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetAppDependencies( params->nPublishedFileID ); return 0; } @@ -638,7 +638,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->DeleteItem( params->nPublishedFileID ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION014.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION014.cpp index f5e0d500..e5c73068 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION014.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION014.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->pchCursor ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreview NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); steamclient_unix_path_to_dos_path( params->_ret, params->pchURLOrVideoID, params->pchURLOrVideoID, params->cchURLSize, 1 ); return 0; @@ -107,7 +107,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); return 0; } @@ -115,7 +115,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); return 0; } @@ -123,7 +123,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->pchKey, params->pchValue, params->cchValueSize ); return 0; } @@ -131,7 +131,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -139,7 +139,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -147,7 +147,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->AddRequiredTagGroup( params->handle, params->pTagGroups ); return 0; } @@ -155,7 +155,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -163,7 +163,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); return 0; } @@ -211,7 +211,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -219,7 +219,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetReturnPlaytimeStats( params->handle, params->unDays ); return 0; } @@ -227,7 +227,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); return 0; } @@ -235,7 +235,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); return 0; } @@ -243,7 +243,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -251,7 +251,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -259,7 +259,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -267,7 +267,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -275,7 +275,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); return 0; } @@ -283,7 +283,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); return 0; } @@ -291,7 +291,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); return 0; } @@ -299,7 +299,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); return 0; } @@ -307,7 +307,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); return 0; } @@ -315,7 +315,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); return 0; } @@ -323,7 +323,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); return 0; } @@ -331,7 +331,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); return 0; } @@ -339,7 +339,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); return 0; } @@ -347,7 +347,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); return 0; } @@ -355,7 +355,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; char *u_pszContentFolder = steamclient_dos_to_unix_path( params->pszContentFolder, 0 ); params->_ret = iface->SetItemContent( params->handle, u_pszContentFolder ); steamclient_free_path( u_pszContentFolder ); @@ -365,7 +365,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->SetItemPreview( params->handle, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -375,7 +375,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetAllowLegacyUpload( params->handle, params->bAllowLegacyUpload ); return 0; } @@ -383,7 +383,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->RemoveAllItemKeyValueTags( params->handle ); return 0; } @@ -391,7 +391,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); return 0; } @@ -399,7 +399,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); return 0; } @@ -407,7 +407,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->AddItemPreviewFile( params->handle, u_pszPreviewFile, params->type ); steamclient_free_path( u_pszPreviewFile ); @@ -417,7 +417,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); return 0; } @@ -425,7 +425,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -435,7 +435,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); return 0; } @@ -443,7 +443,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); return 0; } @@ -451,7 +451,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); return 0; } @@ -459,7 +459,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); return 0; } @@ -467,7 +467,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); return 0; } @@ -475,7 +475,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); return 0; } @@ -483,7 +483,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -491,7 +491,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -499,7 +499,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); return 0; } @@ -507,7 +507,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); return 0; } @@ -515,7 +515,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetNumSubscribedItems( ); return 0; } @@ -523,7 +523,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -531,7 +531,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetItemState( params->nPublishedFileID ); return 0; } @@ -539,7 +539,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderSize, 0 ); return 0; @@ -548,7 +548,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); return 0; } @@ -556,7 +556,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); return 0; } @@ -564,7 +564,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; char *u_pszFolder = steamclient_dos_to_unix_path( params->pszFolder, 0 ); params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, u_pszFolder ); steamclient_free_path( u_pszFolder ); @@ -574,7 +574,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; iface->SuspendDownloads( params->bSuspend ); return 0; } @@ -582,7 +582,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -590,7 +590,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -598,7 +598,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); return 0; } @@ -606,7 +606,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->AddDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -614,7 +614,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->RemoveDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -622,7 +622,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->AddAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -630,7 +630,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->RemoveAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -638,7 +638,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->GetAppDependencies( params->nPublishedFileID ); return 0; } @@ -646,7 +646,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION014 *)params->u_iface; params->_ret = iface->DeleteItem( params->nPublishedFileID ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION015.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION015.cpp index a73fbaee..616c6eec 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION015.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION015.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->pchCursor ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetQueryUGCNumTags( params->handle, params->index ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetQueryUGCTag( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetQueryUGCTagDisplayName( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -106,7 +106,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); return 0; } @@ -114,7 +114,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); return 0; } @@ -122,7 +122,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreview NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); steamclient_unix_path_to_dos_path( params->_ret, params->pchURLOrVideoID, params->pchURLOrVideoID, params->cchURLSize, 1 ); return 0; @@ -131,7 +131,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); return 0; } @@ -139,7 +139,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); return 0; } @@ -147,7 +147,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->pchKey, params->pchValue, params->cchValueSize ); return 0; } @@ -155,7 +155,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -163,7 +163,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->AddRequiredTagGroup( params->handle, params->pTagGroups ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -211,7 +211,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); return 0; } @@ -219,7 +219,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); return 0; } @@ -227,7 +227,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); return 0; } @@ -235,7 +235,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -243,7 +243,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetReturnPlaytimeStats( params->handle, params->unDays ); return 0; } @@ -251,7 +251,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); return 0; } @@ -259,7 +259,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); return 0; } @@ -267,7 +267,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -275,7 +275,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -283,7 +283,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -291,7 +291,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -299,7 +299,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); return 0; } @@ -307,7 +307,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); return 0; } @@ -315,7 +315,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); return 0; } @@ -323,7 +323,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); return 0; } @@ -331,7 +331,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); return 0; } @@ -339,7 +339,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); return 0; } @@ -347,7 +347,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); return 0; } @@ -355,7 +355,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); return 0; } @@ -363,7 +363,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); return 0; } @@ -371,7 +371,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); return 0; } @@ -379,7 +379,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; char *u_pszContentFolder = steamclient_dos_to_unix_path( params->pszContentFolder, 0 ); params->_ret = iface->SetItemContent( params->handle, u_pszContentFolder ); steamclient_free_path( u_pszContentFolder ); @@ -389,7 +389,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->SetItemPreview( params->handle, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -399,7 +399,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetAllowLegacyUpload( params->handle, params->bAllowLegacyUpload ); return 0; } @@ -407,7 +407,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->RemoveAllItemKeyValueTags( params->handle ); return 0; } @@ -415,7 +415,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); return 0; } @@ -423,7 +423,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); return 0; } @@ -431,7 +431,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->AddItemPreviewFile( params->handle, u_pszPreviewFile, params->type ); steamclient_free_path( u_pszPreviewFile ); @@ -441,7 +441,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); return 0; } @@ -449,7 +449,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -459,7 +459,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); return 0; } @@ -467,7 +467,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); return 0; } @@ -475,7 +475,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); return 0; } @@ -483,7 +483,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); return 0; } @@ -491,7 +491,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); return 0; } @@ -499,7 +499,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); return 0; } @@ -507,7 +507,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -515,7 +515,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -523,7 +523,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); return 0; } @@ -531,7 +531,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); return 0; } @@ -539,7 +539,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetNumSubscribedItems( ); return 0; } @@ -547,7 +547,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -555,7 +555,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetItemState( params->nPublishedFileID ); return 0; } @@ -563,7 +563,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderSize, 0 ); return 0; @@ -572,7 +572,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); return 0; } @@ -580,7 +580,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); return 0; } @@ -588,7 +588,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; char *u_pszFolder = steamclient_dos_to_unix_path( params->pszFolder, 0 ); params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, u_pszFolder ); steamclient_free_path( u_pszFolder ); @@ -598,7 +598,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; iface->SuspendDownloads( params->bSuspend ); return 0; } @@ -606,7 +606,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -614,7 +614,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -622,7 +622,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); return 0; } @@ -630,7 +630,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->AddDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -638,7 +638,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->RemoveDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -646,7 +646,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->AddAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -654,7 +654,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->RemoveAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -662,7 +662,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetAppDependencies( params->nPublishedFileID ); return 0; } @@ -670,7 +670,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->DeleteItem( params->nPublishedFileID ); return 0; } @@ -678,7 +678,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->ShowWorkshopEULA( ); return 0; } @@ -686,7 +686,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION015 *)params->u_iface; params->_ret = iface->GetWorkshopEULAStatus( ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION016.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION016.cpp index 5a83557a..577e78cd 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION016.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION016.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->pchCursor ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetQueryUGCNumTags( params->handle, params->index ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetQueryUGCTag( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetQueryUGCTagDisplayName( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -106,7 +106,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); return 0; } @@ -114,7 +114,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); return 0; } @@ -122,7 +122,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreview NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); steamclient_unix_path_to_dos_path( params->_ret, params->pchURLOrVideoID, params->pchURLOrVideoID, params->cchURLSize, 1 ); return 0; @@ -131,7 +131,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); return 0; } @@ -139,7 +139,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); return 0; } @@ -147,7 +147,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->pchKey, params->pchValue, params->cchValueSize ); return 0; } @@ -155,7 +155,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -163,7 +163,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->AddRequiredTagGroup( params->handle, params->pTagGroups ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -211,7 +211,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); return 0; } @@ -219,7 +219,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); return 0; } @@ -227,7 +227,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); return 0; } @@ -235,7 +235,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -243,7 +243,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetReturnPlaytimeStats( params->handle, params->unDays ); return 0; } @@ -251,7 +251,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); return 0; } @@ -259,7 +259,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); return 0; } @@ -267,7 +267,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -275,7 +275,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -283,7 +283,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -291,7 +291,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -299,7 +299,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetTimeCreatedDateRange( params->handle, params->rtStart, params->rtEnd ); return 0; } @@ -307,7 +307,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetTimeUpdatedDateRange( params->handle, params->rtStart, params->rtEnd ); return 0; } @@ -315,7 +315,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); return 0; } @@ -323,7 +323,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); return 0; } @@ -331,7 +331,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); return 0; } @@ -339,7 +339,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); return 0; } @@ -347,7 +347,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); return 0; } @@ -355,7 +355,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); return 0; } @@ -363,7 +363,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); return 0; } @@ -371,7 +371,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); return 0; } @@ -379,7 +379,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); return 0; } @@ -387,7 +387,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); return 0; } @@ -395,7 +395,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; char *u_pszContentFolder = steamclient_dos_to_unix_path( params->pszContentFolder, 0 ); params->_ret = iface->SetItemContent( params->handle, u_pszContentFolder ); steamclient_free_path( u_pszContentFolder ); @@ -405,7 +405,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->SetItemPreview( params->handle, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -415,7 +415,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetAllowLegacyUpload( params->handle, params->bAllowLegacyUpload ); return 0; } @@ -423,7 +423,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->RemoveAllItemKeyValueTags( params->handle ); return 0; } @@ -431,7 +431,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); return 0; } @@ -439,7 +439,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); return 0; } @@ -447,7 +447,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->AddItemPreviewFile( params->handle, u_pszPreviewFile, params->type ); steamclient_free_path( u_pszPreviewFile ); @@ -457,7 +457,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); return 0; } @@ -465,7 +465,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -475,7 +475,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); return 0; } @@ -483,7 +483,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); return 0; } @@ -491,7 +491,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); return 0; } @@ -499,7 +499,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); return 0; } @@ -507,7 +507,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); return 0; } @@ -515,7 +515,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); return 0; } @@ -523,7 +523,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -531,7 +531,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -539,7 +539,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); return 0; } @@ -547,7 +547,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); return 0; } @@ -555,7 +555,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetNumSubscribedItems( ); return 0; } @@ -563,7 +563,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -571,7 +571,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetItemState( params->nPublishedFileID ); return 0; } @@ -579,7 +579,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderSize, 0 ); return 0; @@ -588,7 +588,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); return 0; } @@ -596,7 +596,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); return 0; } @@ -604,7 +604,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; char *u_pszFolder = steamclient_dos_to_unix_path( params->pszFolder, 0 ); params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, u_pszFolder ); steamclient_free_path( u_pszFolder ); @@ -614,7 +614,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; iface->SuspendDownloads( params->bSuspend ); return 0; } @@ -622,7 +622,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -630,7 +630,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -638,7 +638,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); return 0; } @@ -646,7 +646,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->AddDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -654,7 +654,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->RemoveDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -662,7 +662,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->AddAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -670,7 +670,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->RemoveAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -678,7 +678,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetAppDependencies( params->nPublishedFileID ); return 0; } @@ -686,7 +686,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->DeleteItem( params->nPublishedFileID ); return 0; } @@ -694,7 +694,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->ShowWorkshopEULA( ); return 0; } @@ -702,7 +702,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION016 *)params->u_iface; params->_ret = iface->GetWorkshopEULAStatus( ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION017.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION017.cpp index 6dccf4d7..e2f1369a 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION017.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION017.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->pchCursor ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetQueryUGCNumTags( params->handle, params->index ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetQueryUGCTag( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetQueryUGCTagDisplayName( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -106,7 +106,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); return 0; } @@ -114,7 +114,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); return 0; } @@ -122,7 +122,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreview NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); steamclient_unix_path_to_dos_path( params->_ret, params->pchURLOrVideoID, params->pchURLOrVideoID, params->cchURLSize, 1 ); return 0; @@ -131,7 +131,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); return 0; } @@ -139,7 +139,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); return 0; } @@ -147,7 +147,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->pchKey, params->pchValue, params->cchValueSize ); return 0; } @@ -155,7 +155,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetQueryUGCContentDescriptors( params->handle, params->index, params->pvecDescriptors, params->cMaxEntries ); return 0; } @@ -163,7 +163,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors( NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->AddRequiredTagGroup( params->handle, params->pTagGroups ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); return 0; } @@ -211,7 +211,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -219,7 +219,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); return 0; } @@ -227,7 +227,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); return 0; } @@ -235,7 +235,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); return 0; } @@ -243,7 +243,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -251,7 +251,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetReturnPlaytimeStats( params->handle, params->unDays ); return 0; } @@ -259,7 +259,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); return 0; } @@ -267,7 +267,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); return 0; } @@ -275,7 +275,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -283,7 +283,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -291,7 +291,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -299,7 +299,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -307,7 +307,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetTimeCreatedDateRange( params->handle, params->rtStart, params->rtEnd ); return 0; } @@ -315,7 +315,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetTimeUpdatedDateRange( params->handle, params->rtStart, params->rtEnd ); return 0; } @@ -323,7 +323,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); return 0; } @@ -331,7 +331,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); return 0; } @@ -339,7 +339,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); return 0; } @@ -347,7 +347,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); return 0; } @@ -355,7 +355,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); return 0; } @@ -363,7 +363,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); return 0; } @@ -371,7 +371,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); return 0; } @@ -379,7 +379,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); return 0; } @@ -387,7 +387,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); return 0; } @@ -395,7 +395,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags ); return 0; } @@ -403,7 +403,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; char *u_pszContentFolder = steamclient_dos_to_unix_path( params->pszContentFolder, 0 ); params->_ret = iface->SetItemContent( params->handle, u_pszContentFolder ); steamclient_free_path( u_pszContentFolder ); @@ -413,7 +413,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->SetItemPreview( params->handle, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -423,7 +423,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetAllowLegacyUpload( params->handle, params->bAllowLegacyUpload ); return 0; } @@ -431,7 +431,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->RemoveAllItemKeyValueTags( params->handle ); return 0; } @@ -439,7 +439,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); return 0; } @@ -447,7 +447,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); return 0; } @@ -455,7 +455,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->AddItemPreviewFile( params->handle, u_pszPreviewFile, params->type ); steamclient_free_path( u_pszPreviewFile ); @@ -465,7 +465,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); return 0; } @@ -473,7 +473,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -483,7 +483,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); return 0; } @@ -491,7 +491,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); return 0; } @@ -499,7 +499,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->AddContentDescriptor( params->handle, params->descid ); return 0; } @@ -507,7 +507,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->RemoveContentDescriptor( params->handle, params->descid ); return 0; } @@ -515,7 +515,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); return 0; } @@ -523,7 +523,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); return 0; } @@ -531,7 +531,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); return 0; } @@ -539,7 +539,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); return 0; } @@ -547,7 +547,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -555,7 +555,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -563,7 +563,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); return 0; } @@ -571,7 +571,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); return 0; } @@ -579,7 +579,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetNumSubscribedItems( ); return 0; } @@ -587,7 +587,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -595,7 +595,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetItemState( params->nPublishedFileID ); return 0; } @@ -603,7 +603,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderSize, 0 ); return 0; @@ -612,7 +612,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); return 0; } @@ -620,7 +620,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); return 0; } @@ -628,7 +628,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; char *u_pszFolder = steamclient_dos_to_unix_path( params->pszFolder, 0 ); params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, u_pszFolder ); steamclient_free_path( u_pszFolder ); @@ -638,7 +638,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; iface->SuspendDownloads( params->bSuspend ); return 0; } @@ -646,7 +646,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -654,7 +654,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -662,7 +662,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); return 0; } @@ -670,7 +670,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->AddDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -678,7 +678,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->RemoveDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -686,7 +686,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->AddAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -694,7 +694,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->RemoveAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -702,7 +702,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetAppDependencies( params->nPublishedFileID ); return 0; } @@ -710,7 +710,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->DeleteItem( params->nPublishedFileID ); return 0; } @@ -718,7 +718,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->ShowWorkshopEULA( ); return 0; } @@ -726,7 +726,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION017 *)params->u_iface; params->_ret = iface->GetWorkshopEULAStatus( ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION018.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION018.cpp index 165b39d8..cee7fa6c 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION018.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION018.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->pchCursor ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; u_SteamUGCDetails_t_128x u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetQueryUGCNumTags( params->handle, params->index ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetQueryUGCTag( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetQueryUGCTagDisplayName( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -106,7 +106,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); return 0; } @@ -114,7 +114,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); return 0; } @@ -122,7 +122,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreview NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); steamclient_unix_path_to_dos_path( params->_ret, params->pchURLOrVideoID, params->pchURLOrVideoID, params->cchURLSize, 1 ); return 0; @@ -131,7 +131,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); return 0; } @@ -139,7 +139,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); return 0; } @@ -147,7 +147,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->pchKey, params->pchValue, params->cchValueSize ); return 0; } @@ -155,7 +155,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetQueryUGCContentDescriptors( params->handle, params->index, params->pvecDescriptors, params->cMaxEntries ); return 0; } @@ -163,7 +163,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors( NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->AddRequiredTagGroup( params->handle, params->pTagGroups ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); return 0; } @@ -211,7 +211,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -219,7 +219,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); return 0; } @@ -227,7 +227,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); return 0; } @@ -235,7 +235,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); return 0; } @@ -243,7 +243,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -251,7 +251,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetReturnPlaytimeStats( params->handle, params->unDays ); return 0; } @@ -259,7 +259,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); return 0; } @@ -267,7 +267,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); return 0; } @@ -275,7 +275,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -283,7 +283,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -291,7 +291,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -299,7 +299,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -307,7 +307,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetTimeCreatedDateRange( params->handle, params->rtStart, params->rtEnd ); return 0; } @@ -315,7 +315,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetTimeUpdatedDateRange( params->handle, params->rtStart, params->rtEnd ); return 0; } @@ -323,7 +323,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); return 0; } @@ -331,7 +331,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); return 0; } @@ -339,7 +339,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); return 0; } @@ -347,7 +347,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); return 0; } @@ -355,7 +355,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); return 0; } @@ -363,7 +363,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); return 0; } @@ -371,7 +371,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); return 0; } @@ -379,7 +379,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); return 0; } @@ -387,7 +387,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); return 0; } @@ -395,7 +395,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags, params->bAllowAdminTags ); return 0; } @@ -403,7 +403,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; char *u_pszContentFolder = steamclient_dos_to_unix_path( params->pszContentFolder, 0 ); params->_ret = iface->SetItemContent( params->handle, u_pszContentFolder ); steamclient_free_path( u_pszContentFolder ); @@ -413,7 +413,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->SetItemPreview( params->handle, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -423,7 +423,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetAllowLegacyUpload( params->handle, params->bAllowLegacyUpload ); return 0; } @@ -431,7 +431,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->RemoveAllItemKeyValueTags( params->handle ); return 0; } @@ -439,7 +439,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); return 0; } @@ -447,7 +447,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); return 0; } @@ -455,7 +455,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->AddItemPreviewFile( params->handle, u_pszPreviewFile, params->type ); steamclient_free_path( u_pszPreviewFile ); @@ -465,7 +465,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); return 0; } @@ -473,7 +473,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -483,7 +483,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); return 0; } @@ -491,7 +491,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); return 0; } @@ -499,7 +499,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->AddContentDescriptor( params->handle, params->descid ); return 0; } @@ -507,7 +507,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->RemoveContentDescriptor( params->handle, params->descid ); return 0; } @@ -515,7 +515,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); return 0; } @@ -523,7 +523,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); return 0; } @@ -531,7 +531,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); return 0; } @@ -539,7 +539,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); return 0; } @@ -547,7 +547,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -555,7 +555,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -563,7 +563,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); return 0; } @@ -571,7 +571,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); return 0; } @@ -579,7 +579,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetNumSubscribedItems( ); return 0; } @@ -587,7 +587,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -595,7 +595,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetItemState( params->nPublishedFileID ); return 0; } @@ -603,7 +603,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderSize, 0 ); return 0; @@ -612,7 +612,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); return 0; } @@ -620,7 +620,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); return 0; } @@ -628,7 +628,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; char *u_pszFolder = steamclient_dos_to_unix_path( params->pszFolder, 0 ); params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, u_pszFolder ); steamclient_free_path( u_pszFolder ); @@ -638,7 +638,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; iface->SuspendDownloads( params->bSuspend ); return 0; } @@ -646,7 +646,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -654,7 +654,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -662,7 +662,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); return 0; } @@ -670,7 +670,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->AddDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -678,7 +678,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->RemoveDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -686,7 +686,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->AddAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -694,7 +694,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->RemoveAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -702,7 +702,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetAppDependencies( params->nPublishedFileID ); return 0; } @@ -710,7 +710,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->DeleteItem( params->nPublishedFileID ); return 0; } @@ -718,7 +718,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->ShowWorkshopEULA( ); return 0; } @@ -726,7 +726,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetWorkshopEULAStatus( ); return 0; } @@ -734,7 +734,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION018 *)params->u_iface; params->_ret = iface->GetUserContentDescriptorPreferences( params->pvecDescriptors, params->cMaxEntries ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION020.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION020.cpp index 27512a64..adceaaa5 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION020.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION020.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest_2( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest_2_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest_2_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->pchCursor ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest_2( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUGCDetailsRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUGCDetailsRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUGCDetailsRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUGCDetailsRequest( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; u_SteamUGCDetails_t_160 u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetQueryUGCNumTags( params->handle, params->index ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumTags( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetQueryUGCTag( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTagDisplayName( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTagDisplayName_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTagDisplayName_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetQueryUGCTagDisplayName( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTagDisplayName( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCPreviewURL( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCPreviewURL_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCPreviewURL_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCPreviewURL( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCMetadata( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -106,7 +106,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCChildren( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCStatistic( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCStatistic_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCStatistic_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); return 0; } @@ -114,7 +114,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCStatistic( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); return 0; } @@ -122,7 +122,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumAdditionalPreview NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCAdditionalPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCAdditionalPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCAdditionalPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); steamclient_unix_path_to_dos_path( params->_ret, params->pchURLOrVideoID, params->pchURLOrVideoID, params->cchURLSize, 1 ); return 0; @@ -131,7 +131,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCAdditionalPreview( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); return 0; } @@ -139,7 +139,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumKeyValueTags( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); return 0; } @@ -147,7 +147,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag_2( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag_2_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag_2_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->pchKey, params->pchValue, params->cchValueSize ); return 0; } @@ -155,7 +155,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag_2( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSupportedGameVersions( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSupportedGameVersions_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSupportedGameVersions_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetNumSupportedGameVersions( params->handle, params->index ); return 0; } @@ -163,7 +163,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSupportedGameVersions( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSupportedGameVersionData( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSupportedGameVersionData_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSupportedGameVersionData_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetSupportedGameVersionData( params->handle, params->index, params->versionIndex, params->pchGameBranchMin, params->pchGameBranchMax, params->cchGameBranchSize ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSupportedGameVersionData( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCContentDescriptors( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCContentDescriptors_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCContentDescriptors_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetQueryUGCContentDescriptors( params->handle, params->index, params->pvecDescriptors, params->cMaxEntries ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCContentDescriptors( NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTagGroup( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTagGroup_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTagGroup_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->AddRequiredTagGroup( params->handle, params->pTagGroups ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTagGroup( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -211,7 +211,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnOnlyIDs( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnOnlyIDs_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnOnlyIDs_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); return 0; } @@ -219,7 +219,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnOnlyIDs( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); return 0; } @@ -227,7 +227,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnKeyValueTags( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -235,7 +235,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); return 0; } @@ -243,7 +243,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); return 0; } @@ -251,7 +251,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnChildren( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); return 0; } @@ -259,7 +259,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnAdditionalPreviews( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -267,7 +267,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnPlaytimeStats( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnPlaytimeStats_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnPlaytimeStats_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetReturnPlaytimeStats( params->handle, params->unDays ); return 0; } @@ -275,7 +275,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnPlaytimeStats( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); return 0; } @@ -283,7 +283,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetLanguage( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowCachedResponse( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowCachedResponse_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowCachedResponse_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); return 0; } @@ -291,7 +291,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowCachedResponse( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAdminQuery( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAdminQuery_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAdminQuery_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetAdminQuery( params->handle, params->bAdminQuery ); return 0; } @@ -299,7 +299,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAdminQuery( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -307,7 +307,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -315,7 +315,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -323,7 +323,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -331,7 +331,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeCreatedDateRange( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeCreatedDateRange_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeCreatedDateRange_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetTimeCreatedDateRange( params->handle, params->rtStart, params->rtEnd ); return 0; } @@ -339,7 +339,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeCreatedDateRange( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeUpdatedDateRange( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeUpdatedDateRange_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeUpdatedDateRange_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetTimeUpdatedDateRange( params->handle, params->rtStart, params->rtEnd ); return 0; } @@ -347,7 +347,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeUpdatedDateRange( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); return 0; } @@ -355,7 +355,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); return 0; } @@ -363,7 +363,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RequestUGCDetails( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); return 0; } @@ -371,7 +371,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); return 0; } @@ -379,7 +379,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTitle( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTitle_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTitle_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); return 0; } @@ -387,7 +387,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTitle( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); return 0; } @@ -395,7 +395,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemDescription( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemUpdateLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemUpdateLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemUpdateLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); return 0; } @@ -403,7 +403,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemUpdateLanguage( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); return 0; } @@ -411,7 +411,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemVisibility( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemVisibility_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemVisibility_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); return 0; } @@ -419,7 +419,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemVisibility( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags, params->bAllowAdminTags ); return 0; } @@ -427,7 +427,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTags( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemContent( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemContent_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemContent_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; char *u_pszContentFolder = steamclient_dos_to_unix_path( params->pszContentFolder, 0 ); params->_ret = iface->SetItemContent( params->handle, u_pszContentFolder ); steamclient_free_path( u_pszContentFolder ); @@ -437,7 +437,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemContent( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->SetItemPreview( params->handle, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -447,7 +447,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowLegacyUpload( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowLegacyUpload_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowLegacyUpload_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetAllowLegacyUpload( params->handle, params->bAllowLegacyUpload ); return 0; } @@ -455,7 +455,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowLegacyUpload( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAllItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAllItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAllItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->RemoveAllItemKeyValueTags( params->handle ); return 0; } @@ -463,7 +463,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAllItemKeyValueTags( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); return 0; } @@ -471,7 +471,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemKeyValueTags( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); return 0; } @@ -479,7 +479,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemKeyValueTag( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->AddItemPreviewFile( params->handle, u_pszPreviewFile, params->type ); steamclient_free_path( u_pszPreviewFile ); @@ -489,7 +489,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewFile( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); return 0; } @@ -497,7 +497,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewVideo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -507,7 +507,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewFile( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); return 0; } @@ -515,7 +515,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewVideo( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); return 0; } @@ -523,7 +523,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddContentDescriptor( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddContentDescriptor_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddContentDescriptor_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->AddContentDescriptor( params->handle, params->descid ); return 0; } @@ -531,7 +531,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddContentDescriptor( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveContentDescriptor( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveContentDescriptor_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveContentDescriptor_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->RemoveContentDescriptor( params->handle, params->descid ); return 0; } @@ -539,7 +539,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveContentDescriptor( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRequiredGameVersions( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRequiredGameVersions_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRequiredGameVersions_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetRequiredGameVersions( params->handle, params->pszGameBranchMin, params->pszGameBranchMax ); return 0; } @@ -547,7 +547,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRequiredGameVersions( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubmitItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubmitItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubmitItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); return 0; } @@ -555,7 +555,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubmitItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemUpdateProgress( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemUpdateProgress_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemUpdateProgress_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); return 0; } @@ -563,7 +563,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemUpdateProgress( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); return 0; } @@ -571,7 +571,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); return 0; } @@ -579,7 +579,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemToFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemToFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemToFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -587,7 +587,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemToFavorites( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemFromFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemFromFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemFromFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -595,7 +595,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemFromFavorites( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); return 0; } @@ -603,7 +603,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UnsubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UnsubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UnsubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); return 0; } @@ -611,7 +611,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UnsubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetNumSubscribedItems( ); return 0; } @@ -619,7 +619,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSubscribedItems( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -627,7 +627,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSubscribedItems( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemState( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemState_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemState_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetItemState( params->nPublishedFileID ); return 0; } @@ -635,7 +635,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemState( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemInstallInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemInstallInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemInstallInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderSize, 0 ); return 0; @@ -644,7 +644,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemInstallInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemDownloadInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemDownloadInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemDownloadInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); return 0; } @@ -652,7 +652,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemDownloadInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_DownloadItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_DownloadItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_DownloadItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); return 0; } @@ -660,7 +660,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_DownloadItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_BInitWorkshopForGameServer( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_BInitWorkshopForGameServer_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_BInitWorkshopForGameServer_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; char *u_pszFolder = steamclient_dos_to_unix_path( params->pszFolder, 0 ); params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, u_pszFolder ); steamclient_free_path( u_pszFolder ); @@ -670,7 +670,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_BInitWorkshopForGameServer( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SuspendDownloads( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SuspendDownloads_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SuspendDownloads_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; iface->SuspendDownloads( params->bSuspend ); return 0; } @@ -678,7 +678,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SuspendDownloads( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -686,7 +686,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartPlaytimeTracking( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -694,7 +694,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTracking( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTrackingForAllItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTrackingForAllItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTrackingForAllItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); return 0; } @@ -702,7 +702,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTrackingForAllItems NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->AddDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -710,7 +710,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->RemoveDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -718,7 +718,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->AddAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -726,7 +726,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddAppDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->RemoveAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -734,7 +734,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAppDependency( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetAppDependencies( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetAppDependencies_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetAppDependencies_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetAppDependencies( params->nPublishedFileID ); return 0; } @@ -742,7 +742,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetAppDependencies( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_DeleteItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_DeleteItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_DeleteItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->DeleteItem( params->nPublishedFileID ); return 0; } @@ -750,7 +750,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_DeleteItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_ShowWorkshopEULA( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_ShowWorkshopEULA_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_ShowWorkshopEULA_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->ShowWorkshopEULA( ); return 0; } @@ -758,7 +758,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_ShowWorkshopEULA( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetWorkshopEULAStatus( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetWorkshopEULAStatus_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetWorkshopEULAStatus_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetWorkshopEULAStatus( ); return 0; } @@ -766,7 +766,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetWorkshopEULAStatus( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserContentDescriptorPreferences( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserContentDescriptorPreferences_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserContentDescriptorPreferences_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION020 *)params->u_iface; params->_ret = iface->GetUserContentDescriptorPreferences( params->pvecDescriptors, params->cMaxEntries ); return 0; } diff --git a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION021.cpp b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION021.cpp index 8b1a5e45..256cbd58 100644 --- a/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION021.cpp +++ b/lsteamclient/cppISteamUGC_STEAMUGC_INTERFACE_VERSION021.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUserUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUserUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUserUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUserUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest_2( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest_2_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest_2_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->pchCursor ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest_2( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUGCDetailsRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUGCDetailsRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUGCDetailsRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->CreateQueryUGCDetailsRequest( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUGCDetailsRequest( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SendQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SendQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SendQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SendQueryUGCRequest( params->handle ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SendQueryUGCRequest( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCResult( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCResult_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCResult_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; u_SteamUGCDetails_t_160 u_pDetails = *params->pDetails; params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &u_pDetails ); *params->pDetails = u_pDetails; @@ -58,7 +58,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCResult( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetQueryUGCNumTags( params->handle, params->index ); return 0; } @@ -66,7 +66,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumTags( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetQueryUGCTag( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); return 0; } @@ -74,7 +74,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTagDisplayName( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTagDisplayName_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTagDisplayName_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetQueryUGCTagDisplayName( params->handle, params->index, params->indexTag, params->pchValue, params->cchValueSize ); return 0; } @@ -82,7 +82,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTagDisplayName( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCPreviewURL( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCPreviewURL_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCPreviewURL_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetQueryUGCPreviewURL( params->handle, params->index, params->pchURL, params->cchURLSize ); return 0; } @@ -90,7 +90,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCPreviewURL( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetQueryUGCMetadata( params->handle, params->index, params->pchMetadata, params->cchMetadatasize ); return 0; } @@ -98,7 +98,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCMetadata( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetQueryUGCChildren( params->handle, params->index, params->pvecPublishedFileID, params->cMaxEntries ); return 0; } @@ -106,7 +106,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCChildren( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCStatistic( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCStatistic_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCStatistic_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetQueryUGCStatistic( params->handle, params->index, params->eStatType, params->pStatValue ); return 0; } @@ -114,7 +114,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCStatistic( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetQueryUGCNumAdditionalPreviews( params->handle, params->index ); return 0; } @@ -122,7 +122,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumAdditionalPreview NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCAdditionalPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCAdditionalPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCAdditionalPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetQueryUGCAdditionalPreview( params->handle, params->index, params->previewIndex, params->pchURLOrVideoID, params->cchURLSize, params->pchOriginalFileName, params->cchOriginalFileNameSize, params->pPreviewType ); steamclient_unix_path_to_dos_path( params->_ret, params->pchURLOrVideoID, params->pchURLOrVideoID, params->cchURLSize, 1 ); return 0; @@ -131,7 +131,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCAdditionalPreview( v NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetQueryUGCNumKeyValueTags( params->handle, params->index ); return 0; } @@ -139,7 +139,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumKeyValueTags( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->keyValueTagIndex, params->pchKey, params->cchKeySize, params->pchValue, params->cchValueSize ); return 0; } @@ -147,7 +147,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag_2( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag_2_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag_2_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetQueryUGCKeyValueTag( params->handle, params->index, params->pchKey, params->pchValue, params->cchValueSize ); return 0; } @@ -155,7 +155,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag_2( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSupportedGameVersions( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSupportedGameVersions_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSupportedGameVersions_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetNumSupportedGameVersions( params->handle, params->index ); return 0; } @@ -163,7 +163,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSupportedGameVersions( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSupportedGameVersionData( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSupportedGameVersionData_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSupportedGameVersionData_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetSupportedGameVersionData( params->handle, params->index, params->versionIndex, params->pchGameBranchMin, params->pchGameBranchMax, params->cchGameBranchSize ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSupportedGameVersionData( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCContentDescriptors( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCContentDescriptors_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCContentDescriptors_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetQueryUGCContentDescriptors( params->handle, params->index, params->pvecDescriptors, params->cMaxEntries ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCContentDescriptors( NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_ReleaseQueryUGCRequest( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_ReleaseQueryUGCRequest_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_ReleaseQueryUGCRequest_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->ReleaseQueryUGCRequest( params->handle ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_ReleaseQueryUGCRequest( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->AddRequiredTag( params->handle, params->pTagName ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTagGroup( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTagGroup_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTagGroup_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->AddRequiredTagGroup( params->handle, params->pTagGroups ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTagGroup( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddExcludedTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddExcludedTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddExcludedTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->AddExcludedTag( params->handle, params->pTagName ); return 0; } @@ -211,7 +211,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddExcludedTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnOnlyIDs( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnOnlyIDs_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnOnlyIDs_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetReturnOnlyIDs( params->handle, params->bReturnOnlyIDs ); return 0; } @@ -219,7 +219,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnOnlyIDs( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetReturnKeyValueTags( params->handle, params->bReturnKeyValueTags ); return 0; } @@ -227,7 +227,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnKeyValueTags( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnLongDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnLongDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnLongDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription ); return 0; } @@ -235,7 +235,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnLongDescription( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetReturnMetadata( params->handle, params->bReturnMetadata ); return 0; } @@ -243,7 +243,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnChildren( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnChildren_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnChildren_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetReturnChildren( params->handle, params->bReturnChildren ); return 0; } @@ -251,7 +251,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnChildren( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnAdditionalPreviews( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnAdditionalPreviews_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnAdditionalPreviews_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetReturnAdditionalPreviews( params->handle, params->bReturnAdditionalPreviews ); return 0; } @@ -259,7 +259,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnAdditionalPreviews( vo NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnTotalOnly( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnTotalOnly_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnTotalOnly_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly ); return 0; } @@ -267,7 +267,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnTotalOnly( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnPlaytimeStats( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnPlaytimeStats_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnPlaytimeStats_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetReturnPlaytimeStats( params->handle, params->unDays ); return 0; } @@ -275,7 +275,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnPlaytimeStats( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetLanguage( params->handle, params->pchLanguage ); return 0; } @@ -283,7 +283,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetLanguage( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowCachedResponse( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowCachedResponse_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowCachedResponse_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds ); return 0; } @@ -291,7 +291,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowCachedResponse( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAdminQuery( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAdminQuery_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAdminQuery_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetAdminQuery( params->handle, params->bAdminQuery ); return 0; } @@ -299,7 +299,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAdminQuery( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetCloudFileNameFilter( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetCloudFileNameFilter_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetCloudFileNameFilter_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName ); return 0; } @@ -307,7 +307,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetCloudFileNameFilter( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetMatchAnyTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetMatchAnyTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetMatchAnyTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag ); return 0; } @@ -315,7 +315,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetMatchAnyTag( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSearchText( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSearchText_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSearchText_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetSearchText( params->handle, params->pSearchText ); return 0; } @@ -323,7 +323,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSearchText( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRankedByTrendDays( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRankedByTrendDays_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRankedByTrendDays_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays ); return 0; } @@ -331,7 +331,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRankedByTrendDays( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeCreatedDateRange( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeCreatedDateRange_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeCreatedDateRange_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetTimeCreatedDateRange( params->handle, params->rtStart, params->rtEnd ); return 0; } @@ -339,7 +339,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeCreatedDateRange( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeUpdatedDateRange( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeUpdatedDateRange_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeUpdatedDateRange_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetTimeUpdatedDateRange( params->handle, params->rtStart, params->rtEnd ); return 0; } @@ -347,7 +347,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeUpdatedDateRange( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->AddRequiredKeyValueTag( params->handle, params->pKey, params->pValue ); return 0; } @@ -355,7 +355,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredKeyValueTag( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RequestUGCDetails( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RequestUGCDetails_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RequestUGCDetails_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds ); return 0; } @@ -363,7 +363,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RequestUGCDetails( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType ); return 0; } @@ -371,7 +371,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID ); return 0; } @@ -379,7 +379,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTitle( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTitle_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTitle_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetItemTitle( params->handle, params->pchTitle ); return 0; } @@ -387,7 +387,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTitle( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemDescription( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemDescription_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemDescription_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetItemDescription( params->handle, params->pchDescription ); return 0; } @@ -395,7 +395,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemDescription( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemUpdateLanguage( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemUpdateLanguage_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemUpdateLanguage_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetItemUpdateLanguage( params->handle, params->pchLanguage ); return 0; } @@ -403,7 +403,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemUpdateLanguage( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemMetadata( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemMetadata_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemMetadata_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetItemMetadata( params->handle, params->pchMetaData ); return 0; } @@ -411,7 +411,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemMetadata( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemVisibility( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemVisibility_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemVisibility_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility ); return 0; } @@ -419,7 +419,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemVisibility( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetItemTags( params->updateHandle, params->pTags, params->bAllowAdminTags ); return 0; } @@ -427,7 +427,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTags( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemContent( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemContent_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemContent_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; char *u_pszContentFolder = steamclient_dos_to_unix_path( params->pszContentFolder, 0 ); params->_ret = iface->SetItemContent( params->handle, u_pszContentFolder ); steamclient_free_path( u_pszContentFolder ); @@ -437,7 +437,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemContent( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->SetItemPreview( params->handle, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -447,7 +447,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowLegacyUpload( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowLegacyUpload_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowLegacyUpload_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetAllowLegacyUpload( params->handle, params->bAllowLegacyUpload ); return 0; } @@ -455,7 +455,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowLegacyUpload( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAllItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAllItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAllItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->RemoveAllItemKeyValueTags( params->handle ); return 0; } @@ -463,7 +463,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAllItemKeyValueTags( void NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemKeyValueTags( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemKeyValueTags_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemKeyValueTags_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->RemoveItemKeyValueTags( params->handle, params->pchKey ); return 0; } @@ -471,7 +471,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemKeyValueTags( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemKeyValueTag( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemKeyValueTag_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemKeyValueTag_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->AddItemKeyValueTag( params->handle, params->pchKey, params->pchValue ); return 0; } @@ -479,7 +479,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemKeyValueTag( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->AddItemPreviewFile( params->handle, u_pszPreviewFile, params->type ); steamclient_free_path( u_pszPreviewFile ); @@ -489,7 +489,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewFile( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->AddItemPreviewVideo( params->handle, params->pszVideoID ); return 0; } @@ -497,7 +497,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewVideo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewFile( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewFile_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewFile_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; char *u_pszPreviewFile = steamclient_dos_to_unix_path( params->pszPreviewFile, 0 ); params->_ret = iface->UpdateItemPreviewFile( params->handle, params->index, u_pszPreviewFile ); steamclient_free_path( u_pszPreviewFile ); @@ -507,7 +507,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewFile( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewVideo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewVideo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewVideo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->UpdateItemPreviewVideo( params->handle, params->index, params->pszVideoID ); return 0; } @@ -515,7 +515,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewVideo( void *a NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemPreview( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemPreview_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemPreview_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->RemoveItemPreview( params->handle, params->index ); return 0; } @@ -523,7 +523,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemPreview( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddContentDescriptor( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddContentDescriptor_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddContentDescriptor_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->AddContentDescriptor( params->handle, params->descid ); return 0; } @@ -531,7 +531,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddContentDescriptor( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveContentDescriptor( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveContentDescriptor_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveContentDescriptor_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->RemoveContentDescriptor( params->handle, params->descid ); return 0; } @@ -539,7 +539,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveContentDescriptor( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRequiredGameVersions( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRequiredGameVersions_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRequiredGameVersions_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetRequiredGameVersions( params->handle, params->pszGameBranchMin, params->pszGameBranchMax ); return 0; } @@ -547,7 +547,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRequiredGameVersions( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubmitItemUpdate( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubmitItemUpdate_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubmitItemUpdate_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote ); return 0; } @@ -555,7 +555,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubmitItemUpdate( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemUpdateProgress( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemUpdateProgress_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemUpdateProgress_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal ); return 0; } @@ -563,7 +563,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemUpdateProgress( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetUserItemVote( params->nPublishedFileID, params->bVoteUp ); return 0; } @@ -571,7 +571,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserItemVote( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserItemVote_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserItemVote_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetUserItemVote( params->nPublishedFileID ); return 0; } @@ -579,7 +579,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserItemVote( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemToFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemToFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemToFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->AddItemToFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -587,7 +587,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemToFavorites( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemFromFavorites( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemFromFavorites_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemFromFavorites_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->RemoveItemFromFavorites( params->nAppId, params->nPublishedFileID ); return 0; } @@ -595,7 +595,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemFromFavorites( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SubscribeItem( params->nPublishedFileID ); return 0; } @@ -603,7 +603,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UnsubscribeItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UnsubscribeItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UnsubscribeItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->UnsubscribeItem( params->nPublishedFileID ); return 0; } @@ -611,7 +611,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UnsubscribeItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetNumSubscribedItems( params->bIncludeLocallyDisabled ); return 0; } @@ -619,7 +619,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSubscribedItems( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSubscribedItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSubscribedItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSubscribedItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries, params->bIncludeLocallyDisabled ); return 0; } @@ -627,7 +627,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSubscribedItems( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemState( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemState_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemState_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetItemState( params->nPublishedFileID ); return 0; } @@ -635,7 +635,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemState( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemInstallInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemInstallInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemInstallInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->punTimeStamp ); steamclient_unix_path_to_dos_path( params->_ret, params->pchFolder, params->pchFolder, params->cchFolderSize, 0 ); return 0; @@ -644,7 +644,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemInstallInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemDownloadInfo( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemDownloadInfo_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemDownloadInfo_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetItemDownloadInfo( params->nPublishedFileID, params->punBytesDownloaded, params->punBytesTotal ); return 0; } @@ -652,7 +652,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemDownloadInfo( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_DownloadItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_DownloadItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_DownloadItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->DownloadItem( params->nPublishedFileID, params->bHighPriority ); return 0; } @@ -660,7 +660,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_DownloadItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_BInitWorkshopForGameServer( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_BInitWorkshopForGameServer_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_BInitWorkshopForGameServer_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; char *u_pszFolder = steamclient_dos_to_unix_path( params->pszFolder, 0 ); params->_ret = iface->BInitWorkshopForGameServer( params->unWorkshopDepotID, u_pszFolder ); steamclient_free_path( u_pszFolder ); @@ -670,7 +670,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_BInitWorkshopForGameServer( voi NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SuspendDownloads( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SuspendDownloads_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SuspendDownloads_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; iface->SuspendDownloads( params->bSuspend ); return 0; } @@ -678,7 +678,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SuspendDownloads( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->StartPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -686,7 +686,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartPlaytimeTracking( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTracking( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTracking_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTracking_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->StopPlaytimeTracking( params->pvecPublishedFileID, params->unNumPublishedFileIDs ); return 0; } @@ -694,7 +694,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTracking( void *arg NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTrackingForAllItems( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTrackingForAllItems_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTrackingForAllItems_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->StopPlaytimeTrackingForAllItems( ); return 0; } @@ -702,7 +702,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTrackingForAllItems NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->AddDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -710,7 +710,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->RemoveDependency( params->nParentPublishedFileID, params->nChildPublishedFileID ); return 0; } @@ -718,7 +718,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->AddAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -726,7 +726,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddAppDependency( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAppDependency( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAppDependency_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAppDependency_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->RemoveAppDependency( params->nPublishedFileID, params->nAppID ); return 0; } @@ -734,7 +734,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAppDependency( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetAppDependencies( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetAppDependencies_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetAppDependencies_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetAppDependencies( params->nPublishedFileID ); return 0; } @@ -742,7 +742,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetAppDependencies( void *args NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_DeleteItem( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_DeleteItem_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_DeleteItem_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->DeleteItem( params->nPublishedFileID ); return 0; } @@ -750,7 +750,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_DeleteItem( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_ShowWorkshopEULA( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_ShowWorkshopEULA_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_ShowWorkshopEULA_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->ShowWorkshopEULA( ); return 0; } @@ -758,7 +758,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_ShowWorkshopEULA( void *args ) NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetWorkshopEULAStatus( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetWorkshopEULAStatus_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetWorkshopEULAStatus_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetWorkshopEULAStatus( ); return 0; } @@ -766,7 +766,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetWorkshopEULAStatus( void *ar NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserContentDescriptorPreferences( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserContentDescriptorPreferences_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserContentDescriptorPreferences_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->GetUserContentDescriptorPreferences( params->pvecDescriptors, params->cMaxEntries ); return 0; } @@ -774,7 +774,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserContentDescriptorPrefere NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemsDisabledLocally( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemsDisabledLocally_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemsDisabledLocally_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetItemsDisabledLocally( params->pvecPublishedFileIDs, params->unNumPublishedFileIDs, params->bDisabledLocally ); return 0; } @@ -782,7 +782,7 @@ NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemsDisabledLocally( void * NTSTATUS ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSubscriptionsLoadOrder( void *args ) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSubscriptionsLoadOrder_params *params = (struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSubscriptionsLoadOrder_params *)args; - struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->linux_side; + struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *iface = (struct u_ISteamUGC_STEAMUGC_INTERFACE_VERSION021 *)params->u_iface; params->_ret = iface->SetSubscriptionsLoadOrder( params->pvecPublishedFileIDs, params->unNumPublishedFileIDs ); return 0; } diff --git a/lsteamclient/cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001.cpp index ee64a264..8b37a413 100644 --- a/lsteamclient/cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod( void *args ) { struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod_params *params = (struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod_params *)args; - struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *iface = (struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *iface = (struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SendMethod( params->pchServiceMethod, params->pRequestBuffer, params->unRequestBufferSize, params->unContext ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMet NTSTATUS ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo( void *args ) { struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo_params *params = (struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo_params *)args; - struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *iface = (struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *iface = (struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetMethodResponseInfo( params->hHandle, params->punResponseSize, params->peResult ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMeth NTSTATUS ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData( void *args ) { struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData_params *params = (struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData_params *)args; - struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *iface = (struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *iface = (struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetMethodResponseData( params->hHandle, params->pResponseBuffer, params->unResponseBufferSize, params->bAutoRelease ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMeth NTSTATUS ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod( void *args ) { struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod_params *params = (struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod_params *)args; - struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *iface = (struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *iface = (struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->ReleaseMethod( params->hHandle ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_Release NTSTATUS ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification( void *args ) { struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification_params *params = (struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification_params *)args; - struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *iface = (struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *iface = (struct u_ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SendNotification( params->pchServiceNotification, params->pNotificationBuffer, params->unNotificationBufferSize ); return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001.cpp index b8b84783..6ff9f3e6 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetNumStats( params->nGameID ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats( void * NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetStatName( params->nGameID, params->iStat ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName( void * NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetStatType( params->nGameID, params->pchName ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType( void * NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetNumAchievements( params->nGameID ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetAchievementName( params->nGameID, params->iAchievement ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetNumGroupAchievements( params->nGameID ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievem NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetGroupAchievementName( params->nGameID, params->iAchievement ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->RequestCurrentStats( params->nGameID ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetStat( params->nGameID, params->pchName, params->pData ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetStat( params->nGameID, params->pchName, params->pData ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetStat( params->nGameID, params->pchName, params->nData ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetStat( params->nGameID, params->pchName, params->fData ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->UpdateAvgRateStat( params->nGameID, params->pchName, params->flCountThisSession, params->dSessionLength ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetAchievement( params->nGameID, params->pchName, params->pbAchieved ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetGroupAchievement( params->nGameID, params->pchName, params->pbAchieved ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetAchievement( params->nGameID, params->pchName ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->SetGroupAchievement( params->nGameID, params->pchName ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->StoreStats( params->nGameID ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats( void *a NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->ClearAchievement( params->nGameID, params->pchName ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->ClearGroupAchievement( params->nGameID, params->pchName ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchieveme NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetAchievementIcon( params->nGameID, params->pchName ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001 *)params->u_iface; params->_ret = iface->GetAchievementDisplayAttribute( params->nGameID, params->pchName, params->pchKey ); return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002.cpp index c565e8ff..89c26526 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetNumStats( params->nGameID ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats( void * NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetStatName( params->nGameID, params->iStat ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName( void * NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetStatType( params->nGameID, params->pchName ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType( void * NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetNumAchievements( params->nGameID ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetAchievementName( params->nGameID, params->iAchievement ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->RequestCurrentStats( params->nGameID ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetStat( params->nGameID, params->pchName, params->pData ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetStat( params->nGameID, params->pchName, params->pData ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetStat( params->nGameID, params->pchName, params->nData ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetStat( params->nGameID, params->pchName, params->fData ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->UpdateAvgRateStat( params->nGameID, params->pchName, params->flCountThisSession, params->dSessionLength ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetAchievement( params->nGameID, params->pchName, params->pbAchieved ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->SetAchievement( params->nGameID, params->pchName ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->ClearAchievement( params->nGameID, params->pchName ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->StoreStats( params->nGameID ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats( void *a NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetAchievementIcon( params->nGameID, params->pchName ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->GetAchievementDisplayAttribute( params->nGameID, params->pchName, params->pchKey ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002 *)params->u_iface; params->_ret = iface->IndicateAchievementProgress( params->nGameID, params->pchName, params->nCurProgress, params->nMaxProgress ); return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003.cpp index b419ced9..d1d7866e 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->RequestCurrentStats( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->nData ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->fData ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->SetAchievement( params->pchName ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->ClearAchievement( params->pchName ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->StoreStats( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats( void *a NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetAchievementIcon( params->pchName ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003 *)params->u_iface; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004.cpp index 32438a49..34a5fd67 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->RequestCurrentStats( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->nData ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->fData ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->SetAchievement( params->pchName ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->ClearAchievement( params->pchName ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->StoreStats( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats( void *a NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetAchievementIcon( params->pchName ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievement NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->RequestUserStats( params->steamIDUser ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat( void * NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004 *)params->u_iface; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005.cpp index 4ce2e234..e996af6f 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->RequestCurrentStats( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->nData ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->fData ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->SetAchievement( params->pchName ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->ClearAchievement( params->pchName ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->StoreStats( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats( void *a NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetAchievementIcon( params->pchName ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievement NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->RequestUserStats( params->steamIDUser ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat( void * NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->ResetAllStats( params->bAchievementsToo ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->FindOrCreateLeaderboard( params->pchLeaderboardName, params->eLeaderboardSortMethod, params->eLeaderboardDisplayType ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderb NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->FindLeaderboard( params->pchLeaderboardName ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard( vo NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetLeaderboardName( params->hSteamLeaderboard ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetLeaderboardEntryCount( params->hSteamLeaderboard ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntry NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetLeaderboardSortMethod( params->hSteamLeaderboard ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortM NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetLeaderboardDisplayType( params->hSteamLeaderboard ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->DownloadLeaderboardEntries( params->hSteamLeaderboard, params->eLeaderboardDataRequest, params->nRangeStart, params->nRangeEnd ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboard NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->GetDownloadedLeaderboardEntry( params->hSteamLeaderboardEntries, params->index, params->pLeaderboardEntry, params->pDetails, params->cDetailsMax ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeader NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005 *)params->u_iface; params->_ret = iface->UploadLeaderboardScore( params->hSteamLeaderboard, params->nScore, params->pScoreDetails, params->cScoreDetailsCount ); return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006.cpp index 8600c670..da7fa76f 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->RequestCurrentStats( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->nData ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->fData ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->SetAchievement( params->pchName ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->ClearAchievement( params->pchName ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->StoreStats( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats( void *a NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetAchievementIcon( params->pchName ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievement NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->RequestUserStats( params->steamIDUser ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat( void * NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->ResetAllStats( params->bAchievementsToo ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->FindOrCreateLeaderboard( params->pchLeaderboardName, params->eLeaderboardSortMethod, params->eLeaderboardDisplayType ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderb NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->FindLeaderboard( params->pchLeaderboardName ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard( vo NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetLeaderboardName( params->hSteamLeaderboard ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetLeaderboardEntryCount( params->hSteamLeaderboard ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntry NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetLeaderboardSortMethod( params->hSteamLeaderboard ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortM NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetLeaderboardDisplayType( params->hSteamLeaderboard ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->DownloadLeaderboardEntries( params->hSteamLeaderboard, params->eLeaderboardDataRequest, params->nRangeStart, params->nRangeEnd ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboard NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetDownloadedLeaderboardEntry( params->hSteamLeaderboardEntries, params->index, params->pLeaderboardEntry, params->pDetails, params->cDetailsMax ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeader NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->UploadLeaderboardScore( params->hSteamLeaderboard, params->eLeaderboardUploadScoreMethod, params->nScore, params->pScoreDetails, params->cScoreDetailsCount ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardSc NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006 *)params->u_iface; params->_ret = iface->GetNumberOfCurrentPlayers( ); return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007.cpp index 20874082..c4a8e865 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->RequestCurrentStats( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->nData ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->fData ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->SetAchievement( params->pchName ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->ClearAchievement( params->pchName ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetAchievementAndUnlockTime( params->pchName, params->pbAchieved, params->punUnlockTime ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUn NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->StoreStats( ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats( void *a NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetAchievementIcon( params->pchName ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievement NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->RequestUserStats( params->steamIDUser ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat( void * NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetUserAchievementAndUnlockTime( params->steamIDUser, params->pchName, params->pbAchieved, params->punUnlockTime ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementA NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->ResetAllStats( params->bAchievementsToo ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->FindOrCreateLeaderboard( params->pchLeaderboardName, params->eLeaderboardSortMethod, params->eLeaderboardDisplayType ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderb NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->FindLeaderboard( params->pchLeaderboardName ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard( vo NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetLeaderboardName( params->hSteamLeaderboard ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetLeaderboardEntryCount( params->hSteamLeaderboard ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntry NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetLeaderboardSortMethod( params->hSteamLeaderboard ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortM NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetLeaderboardDisplayType( params->hSteamLeaderboard ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->DownloadLeaderboardEntries( params->hSteamLeaderboard, params->eLeaderboardDataRequest, params->nRangeStart, params->nRangeEnd ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboard NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetDownloadedLeaderboardEntry( params->hSteamLeaderboardEntries, params->index, params->pLeaderboardEntry, params->pDetails, params->cDetailsMax ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeader NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->UploadLeaderboardScore( params->hSteamLeaderboard, params->eLeaderboardUploadScoreMethod, params->nScore, params->pScoreDetails, params->cScoreDetailsCount ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardSc NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007 *)params->u_iface; params->_ret = iface->GetNumberOfCurrentPlayers( ); return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008.cpp index fcfe569f..5ce1c943 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->RequestCurrentStats( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->nData ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->fData ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->SetAchievement( params->pchName ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->ClearAchievement( params->pchName ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetAchievementAndUnlockTime( params->pchName, params->pbAchieved, params->punUnlockTime ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUn NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->StoreStats( ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats( void *a NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetAchievementIcon( params->pchName ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievement NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->RequestUserStats( params->steamIDUser ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat( void * NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetUserAchievementAndUnlockTime( params->steamIDUser, params->pchName, params->pbAchieved, params->punUnlockTime ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementA NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->ResetAllStats( params->bAchievementsToo ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->FindOrCreateLeaderboard( params->pchLeaderboardName, params->eLeaderboardSortMethod, params->eLeaderboardDisplayType ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderb NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->FindLeaderboard( params->pchLeaderboardName ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard( vo NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetLeaderboardName( params->hSteamLeaderboard ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetLeaderboardEntryCount( params->hSteamLeaderboard ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntry NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetLeaderboardSortMethod( params->hSteamLeaderboard ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortM NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetLeaderboardDisplayType( params->hSteamLeaderboard ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->DownloadLeaderboardEntries( params->hSteamLeaderboard, params->eLeaderboardDataRequest, params->nRangeStart, params->nRangeEnd ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboard NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; u_LeaderboardEntry_t_111x u_pLeaderboardEntry = *params->pLeaderboardEntry; params->_ret = iface->GetDownloadedLeaderboardEntry( params->hSteamLeaderboardEntries, params->index, &u_pLeaderboardEntry, params->pDetails, params->cDetailsMax ); *params->pLeaderboardEntry = u_pLeaderboardEntry; @@ -234,7 +234,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeader NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->UploadLeaderboardScore( params->hSteamLeaderboard, params->eLeaderboardUploadScoreMethod, params->nScore, params->pScoreDetails, params->cScoreDetailsCount ); return 0; } @@ -242,7 +242,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardSc NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->AttachLeaderboardUGC( params->hSteamLeaderboard, params->hUGC ); return 0; } @@ -250,7 +250,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUG NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008 *)params->u_iface; params->_ret = iface->GetNumberOfCurrentPlayers( ); return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009.cpp index 0bb5de17..4c510d27 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->RequestCurrentStats( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->nData ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->fData ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->SetAchievement( params->pchName ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->ClearAchievement( params->pchName ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetAchievementAndUnlockTime( params->pchName, params->pbAchieved, params->punUnlockTime ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUn NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->StoreStats( ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats( void *a NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetAchievementIcon( params->pchName ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievement NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->RequestUserStats( params->steamIDUser ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat( void * NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetUserAchievementAndUnlockTime( params->steamIDUser, params->pchName, params->pbAchieved, params->punUnlockTime ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementA NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->ResetAllStats( params->bAchievementsToo ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->FindOrCreateLeaderboard( params->pchLeaderboardName, params->eLeaderboardSortMethod, params->eLeaderboardDisplayType ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderb NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->FindLeaderboard( params->pchLeaderboardName ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard( vo NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetLeaderboardName( params->hSteamLeaderboard ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetLeaderboardEntryCount( params->hSteamLeaderboard ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntry NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetLeaderboardSortMethod( params->hSteamLeaderboard ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortM NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetLeaderboardDisplayType( params->hSteamLeaderboard ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->DownloadLeaderboardEntries( params->hSteamLeaderboard, params->eLeaderboardDataRequest, params->nRangeStart, params->nRangeEnd ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboard NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->DownloadLeaderboardEntriesForUsers( params->hSteamLeaderboard, params->prgUsers, params->cUsers ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboard NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; u_LeaderboardEntry_t_111x u_pLeaderboardEntry = *params->pLeaderboardEntry; params->_ret = iface->GetDownloadedLeaderboardEntry( params->hSteamLeaderboardEntries, params->index, &u_pLeaderboardEntry, params->pDetails, params->cDetailsMax ); *params->pLeaderboardEntry = u_pLeaderboardEntry; @@ -242,7 +242,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeader NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->UploadLeaderboardScore( params->hSteamLeaderboard, params->eLeaderboardUploadScoreMethod, params->nScore, params->pScoreDetails, params->cScoreDetailsCount ); return 0; } @@ -250,7 +250,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardSc NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->AttachLeaderboardUGC( params->hSteamLeaderboard, params->hUGC ); return 0; } @@ -258,7 +258,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUG NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009 *)params->u_iface; params->_ret = iface->GetNumberOfCurrentPlayers( ); return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010.cpp index b7ce2a7a..83a69b97 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->RequestCurrentStats( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->nData ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->fData ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->SetAchievement( params->pchName ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->ClearAchievement( params->pchName ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetAchievementAndUnlockTime( params->pchName, params->pbAchieved, params->punUnlockTime ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUn NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->StoreStats( ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats( void *a NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetAchievementIcon( params->pchName ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievement NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->RequestUserStats( params->steamIDUser ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat( void * NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetUserAchievementAndUnlockTime( params->steamIDUser, params->pchName, params->pbAchieved, params->punUnlockTime ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementA NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->ResetAllStats( params->bAchievementsToo ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->FindOrCreateLeaderboard( params->pchLeaderboardName, params->eLeaderboardSortMethod, params->eLeaderboardDisplayType ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderb NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->FindLeaderboard( params->pchLeaderboardName ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard( vo NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetLeaderboardName( params->hSteamLeaderboard ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetLeaderboardEntryCount( params->hSteamLeaderboard ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntry NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetLeaderboardSortMethod( params->hSteamLeaderboard ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortM NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetLeaderboardDisplayType( params->hSteamLeaderboard ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->DownloadLeaderboardEntries( params->hSteamLeaderboard, params->eLeaderboardDataRequest, params->nRangeStart, params->nRangeEnd ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboard NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->DownloadLeaderboardEntriesForUsers( params->hSteamLeaderboard, params->prgUsers, params->cUsers ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboard NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; u_LeaderboardEntry_t_111x u_pLeaderboardEntry = *params->pLeaderboardEntry; params->_ret = iface->GetDownloadedLeaderboardEntry( params->hSteamLeaderboardEntries, params->index, &u_pLeaderboardEntry, params->pDetails, params->cDetailsMax ); *params->pLeaderboardEntry = u_pLeaderboardEntry; @@ -242,7 +242,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeader NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->UploadLeaderboardScore( params->hSteamLeaderboard, params->eLeaderboardUploadScoreMethod, params->nScore, params->pScoreDetails, params->cScoreDetailsCount ); return 0; } @@ -250,7 +250,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardSc NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->AttachLeaderboardUGC( params->hSteamLeaderboard, params->hUGC ); return 0; } @@ -258,7 +258,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUG NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetNumberOfCurrentPlayers( ); return 0; } @@ -266,7 +266,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentP NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->RequestGlobalAchievementPercentages( ); return 0; } @@ -274,7 +274,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchiev NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetMostAchievedAchievementInfo( params->pchName, params->unNameBufLen, params->pflPercent, params->pbAchieved ); return 0; } @@ -282,7 +282,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetNextMostAchievedAchievementInfo( params->iIteratorPrevious, params->pchName, params->unNameBufLen, params->pflPercent, params->pbAchieved ); return 0; } @@ -290,7 +290,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchieved NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetAchievementAchievedPercent( params->pchName, params->pflPercent ); return 0; } @@ -298,7 +298,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchie NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->RequestGlobalStats( params->nHistoryDays ); return 0; } @@ -306,7 +306,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetGlobalStat( params->pchStatName, params->pData ); return 0; } @@ -314,7 +314,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetGlobalStat( params->pchStatName, params->pData ); return 0; } @@ -322,7 +322,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2( vo NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetGlobalStatHistory( params->pchStatName, params->pData, params->cubData ); return 0; } @@ -330,7 +330,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistor NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010 *)params->u_iface; params->_ret = iface->GetGlobalStatHistory( params->pchStatName, params->pData, params->cubData ); return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011.cpp index 0d725405..b0d40837 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->RequestCurrentStats( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->nData ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->fData ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->SetAchievement( params->pchName ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->ClearAchievement( params->pchName ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetAchievementAndUnlockTime( params->pchName, params->pbAchieved, params->punUnlockTime ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUn NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->StoreStats( ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats( void *a NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetAchievementIcon( params->pchName ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievement NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetNumAchievements( ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetAchievementName( params->iAchievement ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->RequestUserStats( params->steamIDUser ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat( void * NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetUserAchievementAndUnlockTime( params->steamIDUser, params->pchName, params->pbAchieved, params->punUnlockTime ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementA NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->ResetAllStats( params->bAchievementsToo ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->FindOrCreateLeaderboard( params->pchLeaderboardName, params->eLeaderboardSortMethod, params->eLeaderboardDisplayType ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderb NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->FindLeaderboard( params->pchLeaderboardName ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard( vo NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetLeaderboardName( params->hSteamLeaderboard ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetLeaderboardEntryCount( params->hSteamLeaderboard ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntry NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetLeaderboardSortMethod( params->hSteamLeaderboard ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortM NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetLeaderboardDisplayType( params->hSteamLeaderboard ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->DownloadLeaderboardEntries( params->hSteamLeaderboard, params->eLeaderboardDataRequest, params->nRangeStart, params->nRangeEnd ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboard NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->DownloadLeaderboardEntriesForUsers( params->hSteamLeaderboard, params->prgUsers, params->cUsers ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboard NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; u_LeaderboardEntry_t_123 u_pLeaderboardEntry = *params->pLeaderboardEntry; params->_ret = iface->GetDownloadedLeaderboardEntry( params->hSteamLeaderboardEntries, params->index, &u_pLeaderboardEntry, params->pDetails, params->cDetailsMax ); *params->pLeaderboardEntry = u_pLeaderboardEntry; @@ -258,7 +258,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeader NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->UploadLeaderboardScore( params->hSteamLeaderboard, params->eLeaderboardUploadScoreMethod, params->nScore, params->pScoreDetails, params->cScoreDetailsCount ); return 0; } @@ -266,7 +266,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardSc NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->AttachLeaderboardUGC( params->hSteamLeaderboard, params->hUGC ); return 0; } @@ -274,7 +274,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUG NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetNumberOfCurrentPlayers( ); return 0; } @@ -282,7 +282,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentP NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->RequestGlobalAchievementPercentages( ); return 0; } @@ -290,7 +290,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchiev NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetMostAchievedAchievementInfo( params->pchName, params->unNameBufLen, params->pflPercent, params->pbAchieved ); return 0; } @@ -298,7 +298,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetNextMostAchievedAchievementInfo( params->iIteratorPrevious, params->pchName, params->unNameBufLen, params->pflPercent, params->pbAchieved ); return 0; } @@ -306,7 +306,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchieved NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetAchievementAchievedPercent( params->pchName, params->pflPercent ); return 0; } @@ -314,7 +314,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchie NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->RequestGlobalStats( params->nHistoryDays ); return 0; } @@ -322,7 +322,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetGlobalStat( params->pchStatName, params->pData ); return 0; } @@ -330,7 +330,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetGlobalStat( params->pchStatName, params->pData ); return 0; } @@ -338,7 +338,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2( vo NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetGlobalStatHistory( params->pchStatName, params->pData, params->cubData ); return 0; } @@ -346,7 +346,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistor NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011 *)params->u_iface; params->_ret = iface->GetGlobalStatHistory( params->pchStatName, params->pData, params->cubData ); return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012.cpp index 7f79a4fe..9ee2a3f8 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->RequestCurrentStats( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->nData ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->fData ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->SetAchievement( params->pchName ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->ClearAchievement( params->pchName ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetAchievementAndUnlockTime( params->pchName, params->pbAchieved, params->punUnlockTime ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUn NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->StoreStats( ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats( void *a NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetAchievementIcon( params->pchName ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievement NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetNumAchievements( ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetAchievementName( params->iAchievement ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->RequestUserStats( params->steamIDUser ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat( void * NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetUserAchievementAndUnlockTime( params->steamIDUser, params->pchName, params->pbAchieved, params->punUnlockTime ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementA NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->ResetAllStats( params->bAchievementsToo ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->FindOrCreateLeaderboard( params->pchLeaderboardName, params->eLeaderboardSortMethod, params->eLeaderboardDisplayType ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderb NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->FindLeaderboard( params->pchLeaderboardName ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard( vo NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetLeaderboardName( params->hSteamLeaderboard ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetLeaderboardEntryCount( params->hSteamLeaderboard ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntry NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetLeaderboardSortMethod( params->hSteamLeaderboard ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortM NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetLeaderboardDisplayType( params->hSteamLeaderboard ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->DownloadLeaderboardEntries( params->hSteamLeaderboard, params->eLeaderboardDataRequest, params->nRangeStart, params->nRangeEnd ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboard NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->DownloadLeaderboardEntriesForUsers( params->hSteamLeaderboard, params->prgUsers, params->cUsers ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboard NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; u_LeaderboardEntry_t_123 u_pLeaderboardEntry = *params->pLeaderboardEntry; params->_ret = iface->GetDownloadedLeaderboardEntry( params->hSteamLeaderboardEntries, params->index, &u_pLeaderboardEntry, params->pDetails, params->cDetailsMax ); *params->pLeaderboardEntry = u_pLeaderboardEntry; @@ -258,7 +258,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeader NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->UploadLeaderboardScore( params->hSteamLeaderboard, params->eLeaderboardUploadScoreMethod, params->nScore, params->pScoreDetails, params->cScoreDetailsCount ); return 0; } @@ -266,7 +266,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardSc NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->AttachLeaderboardUGC( params->hSteamLeaderboard, params->hUGC ); return 0; } @@ -274,7 +274,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUG NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetNumberOfCurrentPlayers( ); return 0; } @@ -282,7 +282,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentP NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->RequestGlobalAchievementPercentages( ); return 0; } @@ -290,7 +290,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchiev NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetMostAchievedAchievementInfo( params->pchName, params->unNameBufLen, params->pflPercent, params->pbAchieved ); return 0; } @@ -298,7 +298,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetNextMostAchievedAchievementInfo( params->iIteratorPrevious, params->pchName, params->unNameBufLen, params->pflPercent, params->pbAchieved ); return 0; } @@ -306,7 +306,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchieved NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetAchievementAchievedPercent( params->pchName, params->pflPercent ); return 0; } @@ -314,7 +314,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchie NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->RequestGlobalStats( params->nHistoryDays ); return 0; } @@ -322,7 +322,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetGlobalStat( params->pchStatName, params->pData ); return 0; } @@ -330,7 +330,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetGlobalStat( params->pchStatName, params->pData ); return 0; } @@ -338,7 +338,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2( vo NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetGlobalStatHistory( params->pchStatName, params->pData, params->cubData ); return 0; } @@ -346,7 +346,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistor NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetGlobalStatHistory( params->pchStatName, params->pData, params->cubData ); return 0; } @@ -354,7 +354,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistor NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetAchievementProgressLimits( params->pchName, params->pnMinProgress, params->pnMaxProgress ); return 0; } @@ -362,7 +362,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgr NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012 *)params->u_iface; params->_ret = iface->GetAchievementProgressLimits( params->pchName, params->pfMinProgress, params->pfMaxProgress ); return 0; } diff --git a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013.cpp b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013.cpp index 6efd9d83..9317d9c1 100644 --- a/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013.cpp +++ b/lsteamclient/cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetStat( params->pchName, params->pData ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->nData ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat( void *args NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetStat( params->pchName, params->fData ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat_2( void *ar NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UpdateAvgRateStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UpdateAvgRateStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UpdateAvgRateStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->UpdateAvgRateStat( params->pchName, params->flCountThisSession, params->dSessionLength ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UpdateAvgRateStat( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetAchievement( params->pchName, params->pbAchieved ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->SetAchievement( params->pchName ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetAchievement( voi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ClearAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ClearAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ClearAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->ClearAchievement( params->pchName ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ClearAchievement( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAndUnlockTime( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAndUnlockTime_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAndUnlockTime_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetAchievementAndUnlockTime( params->pchName, params->pbAchieved, params->punUnlockTime ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAndUn NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_StoreStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_StoreStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_StoreStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->StoreStats( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_StoreStats( void *a NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementIcon( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementIcon_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementIcon_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetAchievementIcon( params->pchName ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementIcon( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementDisplayAttribute( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementDisplayAttribute_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementDisplayAttribute_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetAchievementDisplayAttribute( params->pchName, params->pchKey ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_IndicateAchievementProgress( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_IndicateAchievementProgress_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_IndicateAchievementProgress_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->IndicateAchievementProgress( params->pchName, params->nCurProgress, params->nMaxProgress ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_IndicateAchievement NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumAchievements( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumAchievements_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumAchievements_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetNumAchievements( ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumAchievements( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementName( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementName_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementName_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetAchievementName( params->iAchievement ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementName( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestUserStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestUserStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestUserStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->RequestUserStats( params->steamIDUser ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestUserStats( v NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat( void * NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetUserStat( params->steamIDUser, params->pchName, params->pData ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat_2( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievement( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievement_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievement_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetUserAchievement( params->steamIDUser, params->pchName, params->pbAchieved ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievement( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievementAndUnlockTime( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievementAndUnlockTime_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievementAndUnlockTime_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetUserAchievementAndUnlockTime( params->steamIDUser, params->pchName, params->pbAchieved, params->punUnlockTime ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievementA NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ResetAllStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ResetAllStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ResetAllStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->ResetAllStats( params->bAchievementsToo ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ResetAllStats( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindOrCreateLeaderboard( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindOrCreateLeaderboard_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindOrCreateLeaderboard_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->FindOrCreateLeaderboard( params->pchLeaderboardName, params->eLeaderboardSortMethod, params->eLeaderboardDisplayType ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindOrCreateLeaderb NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindLeaderboard( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindLeaderboard_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindLeaderboard_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->FindLeaderboard( params->pchLeaderboardName ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindLeaderboard( vo NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardName( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardName_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardName_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetLeaderboardName( params->hSteamLeaderboard ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardName( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardEntryCount( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardEntryCount_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardEntryCount_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetLeaderboardEntryCount( params->hSteamLeaderboard ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardEntry NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardSortMethod( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardSortMethod_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardSortMethod_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetLeaderboardSortMethod( params->hSteamLeaderboard ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardSortM NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardDisplayType( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardDisplayType_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardDisplayType_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetLeaderboardDisplayType( params->hSteamLeaderboard ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardDispl NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEntries( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEntries_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEntries_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->DownloadLeaderboardEntries( params->hSteamLeaderboard, params->eLeaderboardDataRequest, params->nRangeStart, params->nRangeEnd ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboard NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEntriesForUsers( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEntriesForUsers_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEntriesForUsers_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->DownloadLeaderboardEntriesForUsers( params->hSteamLeaderboard, params->prgUsers, params->cUsers ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboard NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetDownloadedLeaderboardEntry( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetDownloadedLeaderboardEntry_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetDownloadedLeaderboardEntry_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; u_LeaderboardEntry_t_123 u_pLeaderboardEntry = *params->pLeaderboardEntry; params->_ret = iface->GetDownloadedLeaderboardEntry( params->hSteamLeaderboardEntries, params->index, &u_pLeaderboardEntry, params->pDetails, params->cDetailsMax ); *params->pLeaderboardEntry = u_pLeaderboardEntry; @@ -250,7 +250,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetDownloadedLeader NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UploadLeaderboardScore( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UploadLeaderboardScore_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UploadLeaderboardScore_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->UploadLeaderboardScore( params->hSteamLeaderboard, params->eLeaderboardUploadScoreMethod, params->nScore, params->pScoreDetails, params->cScoreDetailsCount ); return 0; } @@ -258,7 +258,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UploadLeaderboardSc NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_AttachLeaderboardUGC( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_AttachLeaderboardUGC_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_AttachLeaderboardUGC_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->AttachLeaderboardUGC( params->hSteamLeaderboard, params->hUGC ); return 0; } @@ -266,7 +266,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_AttachLeaderboardUG NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumberOfCurrentPlayers( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumberOfCurrentPlayers_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumberOfCurrentPlayers_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetNumberOfCurrentPlayers( ); return 0; } @@ -274,7 +274,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumberOfCurrentP NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalAchievementPercentages( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalAchievementPercentages_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalAchievementPercentages_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->RequestGlobalAchievementPercentages( ); return 0; } @@ -282,7 +282,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalAchiev NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetMostAchievedAchievementInfo( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetMostAchievedAchievementInfo_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetMostAchievedAchievementInfo_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetMostAchievedAchievementInfo( params->pchName, params->unNameBufLen, params->pflPercent, params->pbAchieved ); return 0; } @@ -290,7 +290,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetMostAchievedAchi NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNextMostAchievedAchievementInfo( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNextMostAchievedAchievementInfo_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNextMostAchievedAchievementInfo_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetNextMostAchievedAchievementInfo( params->iIteratorPrevious, params->pchName, params->unNameBufLen, params->pflPercent, params->pbAchieved ); return 0; } @@ -298,7 +298,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNextMostAchieved NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAchievedPercent( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAchievedPercent_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAchievedPercent_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetAchievementAchievedPercent( params->pchName, params->pflPercent ); return 0; } @@ -306,7 +306,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAchie NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalStats( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalStats_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalStats_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->RequestGlobalStats( params->nHistoryDays ); return 0; } @@ -314,7 +314,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalStats( NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetGlobalStat( params->pchStatName, params->pData ); return 0; } @@ -322,7 +322,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat( void NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetGlobalStat( params->pchStatName, params->pData ); return 0; } @@ -330,7 +330,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat_2( vo NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetGlobalStatHistory( params->pchStatName, params->pData, params->cubData ); return 0; } @@ -338,7 +338,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistor NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetGlobalStatHistory( params->pchStatName, params->pData, params->cubData ); return 0; } @@ -346,7 +346,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistor NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgressLimits( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgressLimits_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgressLimits_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetAchievementProgressLimits( params->pchName, params->pnMinProgress, params->pnMaxProgress ); return 0; } @@ -354,7 +354,7 @@ NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgr NTSTATUS ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgressLimits_2( void *args ) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgressLimits_2_params *params = (struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgressLimits_2_params *)args; - struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->linux_side; + struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *iface = (struct u_ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013 *)params->u_iface; params->_ret = iface->GetAchievementProgressLimits( params->pchName, params->pfMinProgress, params->pfMaxProgress ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser004.cpp b/lsteamclient/cppISteamUser_SteamUser004.cpp index 524ecc15..19af77c9 100644 --- a/lsteamclient/cppISteamUser_SteamUser004.cpp +++ b/lsteamclient/cppISteamUser_SteamUser004.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser004_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser004_GetHSteamUser_params *params = (struct ISteamUser_SteamUser004_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser004_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser004_LogOn( void *args ) { struct ISteamUser_SteamUser004_LogOn_params *params = (struct ISteamUser_SteamUser004_LogOn_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; iface->LogOn( params->steamID ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser004_LogOn( void *args ) NTSTATUS ISteamUser_SteamUser004_LogOff( void *args ) { struct ISteamUser_SteamUser004_LogOff_params *params = (struct ISteamUser_SteamUser004_LogOff_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; iface->LogOff( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser004_LogOff( void *args ) NTSTATUS ISteamUser_SteamUser004_BLoggedOn( void *args ) { struct ISteamUser_SteamUser004_BLoggedOn_params *params = (struct ISteamUser_SteamUser004_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser004_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser004_GetLogonState( void *args ) { struct ISteamUser_SteamUser004_GetLogonState_params *params = (struct ISteamUser_SteamUser004_GetLogonState_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; params->_ret = iface->GetLogonState( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser004_GetLogonState( void *args ) NTSTATUS ISteamUser_SteamUser004_BConnected( void *args ) { struct ISteamUser_SteamUser004_BConnected_params *params = (struct ISteamUser_SteamUser004_BConnected_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; params->_ret = iface->BConnected( ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser004_BConnected( void *args ) NTSTATUS ISteamUser_SteamUser004_GetSteamID( void *args ) { struct ISteamUser_SteamUser004_GetSteamID_params *params = (struct ISteamUser_SteamUser004_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUser_SteamUser004_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser004_IsVACBanned( void *args ) { struct ISteamUser_SteamUser004_IsVACBanned_params *params = (struct ISteamUser_SteamUser004_IsVACBanned_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; params->_ret = iface->IsVACBanned( params->nGameID ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUser_SteamUser004_IsVACBanned( void *args ) NTSTATUS ISteamUser_SteamUser004_RequireShowVACBannedMessage( void *args ) { struct ISteamUser_SteamUser004_RequireShowVACBannedMessage_params *params = (struct ISteamUser_SteamUser004_RequireShowVACBannedMessage_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; params->_ret = iface->RequireShowVACBannedMessage( params->nGameID ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUser_SteamUser004_RequireShowVACBannedMessage( void *args ) NTSTATUS ISteamUser_SteamUser004_AcknowledgeVACBanning( void *args ) { struct ISteamUser_SteamUser004_AcknowledgeVACBanning_params *params = (struct ISteamUser_SteamUser004_AcknowledgeVACBanning_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; iface->AcknowledgeVACBanning( params->nGameID ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUser_SteamUser004_AcknowledgeVACBanning( void *args ) NTSTATUS ISteamUser_SteamUser004_NClientGameIDAdd( void *args ) { struct ISteamUser_SteamUser004_NClientGameIDAdd_params *params = (struct ISteamUser_SteamUser004_NClientGameIDAdd_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; params->_ret = iface->NClientGameIDAdd( params->nGameID ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUser_SteamUser004_NClientGameIDAdd( void *args ) NTSTATUS ISteamUser_SteamUser004_RemoveClientGame( void *args ) { struct ISteamUser_SteamUser004_RemoveClientGame_params *params = (struct ISteamUser_SteamUser004_RemoveClientGame_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; iface->RemoveClientGame( params->nClientGameID ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUser_SteamUser004_RemoveClientGame( void *args ) NTSTATUS ISteamUser_SteamUser004_SetClientGameServer( void *args ) { struct ISteamUser_SteamUser004_SetClientGameServer_params *params = (struct ISteamUser_SteamUser004_SetClientGameServer_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; iface->SetClientGameServer( params->nClientGameID, params->unIPServer, params->usPortServer ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUser_SteamUser004_SetClientGameServer( void *args ) NTSTATUS ISteamUser_SteamUser004_SetSteam2Ticket( void *args ) { struct ISteamUser_SteamUser004_SetSteam2Ticket_params *params = (struct ISteamUser_SteamUser004_SetSteam2Ticket_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; iface->SetSteam2Ticket( params->pubTicket, params->cubTicket ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUser_SteamUser004_SetSteam2Ticket( void *args ) NTSTATUS ISteamUser_SteamUser004_AddServerNetAddress( void *args ) { struct ISteamUser_SteamUser004_AddServerNetAddress_params *params = (struct ISteamUser_SteamUser004_AddServerNetAddress_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; iface->AddServerNetAddress( params->unIP, params->unPort ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUser_SteamUser004_AddServerNetAddress( void *args ) NTSTATUS ISteamUser_SteamUser004_SetEmail( void *args ) { struct ISteamUser_SteamUser004_SetEmail_params *params = (struct ISteamUser_SteamUser004_SetEmail_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; params->_ret = iface->SetEmail( params->pchEmail ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamUser_SteamUser004_SetEmail( void *args ) NTSTATUS ISteamUser_SteamUser004_GetSteamGameConnectToken( void *args ) { struct ISteamUser_SteamUser004_GetSteamGameConnectToken_params *params = (struct ISteamUser_SteamUser004_GetSteamGameConnectToken_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; params->_ret = iface->GetSteamGameConnectToken( params->pBlob, params->cbMaxBlob ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamUser_SteamUser004_GetSteamGameConnectToken( void *args ) NTSTATUS ISteamUser_SteamUser004_SetRegistryString( void *args ) { struct ISteamUser_SteamUser004_SetRegistryString_params *params = (struct ISteamUser_SteamUser004_SetRegistryString_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; params->_ret = iface->SetRegistryString( params->eRegistrySubTree, params->pchKey, params->pchValue ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamUser_SteamUser004_SetRegistryString( void *args ) NTSTATUS ISteamUser_SteamUser004_GetRegistryString( void *args ) { struct ISteamUser_SteamUser004_GetRegistryString_params *params = (struct ISteamUser_SteamUser004_GetRegistryString_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; params->_ret = iface->GetRegistryString( params->eRegistrySubTree, params->pchKey, params->pchValue, params->cbValue ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamUser_SteamUser004_GetRegistryString( void *args ) NTSTATUS ISteamUser_SteamUser004_SetRegistryInt( void *args ) { struct ISteamUser_SteamUser004_SetRegistryInt_params *params = (struct ISteamUser_SteamUser004_SetRegistryInt_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; params->_ret = iface->SetRegistryInt( params->eRegistrySubTree, params->pchKey, params->iValue ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamUser_SteamUser004_SetRegistryInt( void *args ) NTSTATUS ISteamUser_SteamUser004_GetRegistryInt( void *args ) { struct ISteamUser_SteamUser004_GetRegistryInt_params *params = (struct ISteamUser_SteamUser004_GetRegistryInt_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; params->_ret = iface->GetRegistryInt( params->eRegistrySubTree, params->pchKey, params->piValue ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamUser_SteamUser004_GetRegistryInt( void *args ) NTSTATUS ISteamUser_SteamUser004_InitiateGameConnection( void *args ) { struct ISteamUser_SteamUser004_InitiateGameConnection_params *params = (struct ISteamUser_SteamUser004_InitiateGameConnection_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; params->_ret = iface->InitiateGameConnection( params->pBlob, params->cbMaxBlob, params->steamID, params->nGameAppID, params->unIPServer, params->usPortServer, params->bSecure ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamUser_SteamUser004_InitiateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser004_TerminateGameConnection( void *args ) { struct ISteamUser_SteamUser004_TerminateGameConnection_params *params = (struct ISteamUser_SteamUser004_TerminateGameConnection_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamUser_SteamUser004_TerminateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination( void *args ) { struct ISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination_params *params = (struct ISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; iface->SetSelfAsPrimaryChatDestination( ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination( void *args ) NTSTATUS ISteamUser_SteamUser004_IsPrimaryChatDestination( void *args ) { struct ISteamUser_SteamUser004_IsPrimaryChatDestination_params *params = (struct ISteamUser_SteamUser004_IsPrimaryChatDestination_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; params->_ret = iface->IsPrimaryChatDestination( ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamUser_SteamUser004_IsPrimaryChatDestination( void *args ) NTSTATUS ISteamUser_SteamUser004_RequestLegacyCDKey( void *args ) { struct ISteamUser_SteamUser004_RequestLegacyCDKey_params *params = (struct ISteamUser_SteamUser004_RequestLegacyCDKey_params *)args; - struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->linux_side; + struct u_ISteamUser_SteamUser004 *iface = (struct u_ISteamUser_SteamUser004 *)params->u_iface; iface->RequestLegacyCDKey( params->iAppID ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser005.cpp b/lsteamclient/cppISteamUser_SteamUser005.cpp index b45c395a..f920d2df 100644 --- a/lsteamclient/cppISteamUser_SteamUser005.cpp +++ b/lsteamclient/cppISteamUser_SteamUser005.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser005_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser005_GetHSteamUser_params *params = (struct ISteamUser_SteamUser005_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser005_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser005_LogOn( void *args ) { struct ISteamUser_SteamUser005_LogOn_params *params = (struct ISteamUser_SteamUser005_LogOn_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; iface->LogOn( params->steamID ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser005_LogOn( void *args ) NTSTATUS ISteamUser_SteamUser005_LogOff( void *args ) { struct ISteamUser_SteamUser005_LogOff_params *params = (struct ISteamUser_SteamUser005_LogOff_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; iface->LogOff( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser005_LogOff( void *args ) NTSTATUS ISteamUser_SteamUser005_BLoggedOn( void *args ) { struct ISteamUser_SteamUser005_BLoggedOn_params *params = (struct ISteamUser_SteamUser005_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser005_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser005_GetLogonState( void *args ) { struct ISteamUser_SteamUser005_GetLogonState_params *params = (struct ISteamUser_SteamUser005_GetLogonState_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->GetLogonState( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser005_GetLogonState( void *args ) NTSTATUS ISteamUser_SteamUser005_BConnected( void *args ) { struct ISteamUser_SteamUser005_BConnected_params *params = (struct ISteamUser_SteamUser005_BConnected_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->BConnected( ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser005_BConnected( void *args ) NTSTATUS ISteamUser_SteamUser005_GetSteamID( void *args ) { struct ISteamUser_SteamUser005_GetSteamID_params *params = (struct ISteamUser_SteamUser005_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUser_SteamUser005_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser005_IsVACBanned( void *args ) { struct ISteamUser_SteamUser005_IsVACBanned_params *params = (struct ISteamUser_SteamUser005_IsVACBanned_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->IsVACBanned( params->nGameID ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUser_SteamUser005_IsVACBanned( void *args ) NTSTATUS ISteamUser_SteamUser005_RequireShowVACBannedMessage( void *args ) { struct ISteamUser_SteamUser005_RequireShowVACBannedMessage_params *params = (struct ISteamUser_SteamUser005_RequireShowVACBannedMessage_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->RequireShowVACBannedMessage( params->nAppID ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUser_SteamUser005_RequireShowVACBannedMessage( void *args ) NTSTATUS ISteamUser_SteamUser005_AcknowledgeVACBanning( void *args ) { struct ISteamUser_SteamUser005_AcknowledgeVACBanning_params *params = (struct ISteamUser_SteamUser005_AcknowledgeVACBanning_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; iface->AcknowledgeVACBanning( params->nAppID ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUser_SteamUser005_AcknowledgeVACBanning( void *args ) NTSTATUS ISteamUser_SteamUser005_SetSteam2Ticket( void *args ) { struct ISteamUser_SteamUser005_SetSteam2Ticket_params *params = (struct ISteamUser_SteamUser005_SetSteam2Ticket_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; iface->SetSteam2Ticket( params->pubTicket, params->cubTicket ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUser_SteamUser005_SetSteam2Ticket( void *args ) NTSTATUS ISteamUser_SteamUser005_AddServerNetAddress( void *args ) { struct ISteamUser_SteamUser005_AddServerNetAddress_params *params = (struct ISteamUser_SteamUser005_AddServerNetAddress_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; iface->AddServerNetAddress( params->unIP, params->unPort ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUser_SteamUser005_AddServerNetAddress( void *args ) NTSTATUS ISteamUser_SteamUser005_SetEmail( void *args ) { struct ISteamUser_SteamUser005_SetEmail_params *params = (struct ISteamUser_SteamUser005_SetEmail_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->SetEmail( params->pchEmail ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUser_SteamUser005_SetEmail( void *args ) NTSTATUS ISteamUser_SteamUser005_SetRegistryString( void *args ) { struct ISteamUser_SteamUser005_SetRegistryString_params *params = (struct ISteamUser_SteamUser005_SetRegistryString_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->SetRegistryString( params->eRegistrySubTree, params->pchKey, params->pchValue ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUser_SteamUser005_SetRegistryString( void *args ) NTSTATUS ISteamUser_SteamUser005_GetRegistryString( void *args ) { struct ISteamUser_SteamUser005_GetRegistryString_params *params = (struct ISteamUser_SteamUser005_GetRegistryString_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->GetRegistryString( params->eRegistrySubTree, params->pchKey, params->pchValue, params->cbValue ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUser_SteamUser005_GetRegistryString( void *args ) NTSTATUS ISteamUser_SteamUser005_SetRegistryInt( void *args ) { struct ISteamUser_SteamUser005_SetRegistryInt_params *params = (struct ISteamUser_SteamUser005_SetRegistryInt_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->SetRegistryInt( params->eRegistrySubTree, params->pchKey, params->iValue ); return 0; } @@ -136,7 +136,7 @@ NTSTATUS ISteamUser_SteamUser005_SetRegistryInt( void *args ) NTSTATUS ISteamUser_SteamUser005_GetRegistryInt( void *args ) { struct ISteamUser_SteamUser005_GetRegistryInt_params *params = (struct ISteamUser_SteamUser005_GetRegistryInt_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->GetRegistryInt( params->eRegistrySubTree, params->pchKey, params->piValue ); return 0; } @@ -144,7 +144,7 @@ NTSTATUS ISteamUser_SteamUser005_GetRegistryInt( void *args ) NTSTATUS ISteamUser_SteamUser005_InitiateGameConnection( void *args ) { struct ISteamUser_SteamUser005_InitiateGameConnection_params *params = (struct ISteamUser_SteamUser005_InitiateGameConnection_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->InitiateGameConnection( params->pBlob, params->cbMaxBlob, params->steamID, params->gameID, params->unIPServer, params->usPortServer, params->bSecure ); return 0; } @@ -152,7 +152,7 @@ NTSTATUS ISteamUser_SteamUser005_InitiateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser005_TerminateGameConnection( void *args ) { struct ISteamUser_SteamUser005_TerminateGameConnection_params *params = (struct ISteamUser_SteamUser005_TerminateGameConnection_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); return 0; } @@ -160,7 +160,7 @@ NTSTATUS ISteamUser_SteamUser005_TerminateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination( void *args ) { struct ISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination_params *params = (struct ISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; iface->SetSelfAsPrimaryChatDestination( ); return 0; } @@ -168,7 +168,7 @@ NTSTATUS ISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination( void *args ) NTSTATUS ISteamUser_SteamUser005_IsPrimaryChatDestination( void *args ) { struct ISteamUser_SteamUser005_IsPrimaryChatDestination_params *params = (struct ISteamUser_SteamUser005_IsPrimaryChatDestination_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->IsPrimaryChatDestination( ); return 0; } @@ -176,7 +176,7 @@ NTSTATUS ISteamUser_SteamUser005_IsPrimaryChatDestination( void *args ) NTSTATUS ISteamUser_SteamUser005_RequestLegacyCDKey( void *args ) { struct ISteamUser_SteamUser005_RequestLegacyCDKey_params *params = (struct ISteamUser_SteamUser005_RequestLegacyCDKey_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; iface->RequestLegacyCDKey( params->nAppID ); return 0; } @@ -184,7 +184,7 @@ NTSTATUS ISteamUser_SteamUser005_RequestLegacyCDKey( void *args ) NTSTATUS ISteamUser_SteamUser005_SendGuestPassByEmail( void *args ) { struct ISteamUser_SteamUser005_SendGuestPassByEmail_params *params = (struct ISteamUser_SteamUser005_SendGuestPassByEmail_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->SendGuestPassByEmail( params->pchEmailAccount, params->gidGuestPassID, params->bResending ); return 0; } @@ -192,7 +192,7 @@ NTSTATUS ISteamUser_SteamUser005_SendGuestPassByEmail( void *args ) NTSTATUS ISteamUser_SteamUser005_SendGuestPassByAccountID( void *args ) { struct ISteamUser_SteamUser005_SendGuestPassByAccountID_params *params = (struct ISteamUser_SteamUser005_SendGuestPassByAccountID_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->SendGuestPassByAccountID( params->uAccountID, params->gidGuestPassID, params->bResending ); return 0; } @@ -200,7 +200,7 @@ NTSTATUS ISteamUser_SteamUser005_SendGuestPassByAccountID( void *args ) NTSTATUS ISteamUser_SteamUser005_AckGuestPass( void *args ) { struct ISteamUser_SteamUser005_AckGuestPass_params *params = (struct ISteamUser_SteamUser005_AckGuestPass_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->AckGuestPass( params->pchGuestPassCode ); return 0; } @@ -208,7 +208,7 @@ NTSTATUS ISteamUser_SteamUser005_AckGuestPass( void *args ) NTSTATUS ISteamUser_SteamUser005_RedeemGuestPass( void *args ) { struct ISteamUser_SteamUser005_RedeemGuestPass_params *params = (struct ISteamUser_SteamUser005_RedeemGuestPass_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->RedeemGuestPass( params->pchGuestPassCode ); return 0; } @@ -216,7 +216,7 @@ NTSTATUS ISteamUser_SteamUser005_RedeemGuestPass( void *args ) NTSTATUS ISteamUser_SteamUser005_GetGuestPassToGiveCount( void *args ) { struct ISteamUser_SteamUser005_GetGuestPassToGiveCount_params *params = (struct ISteamUser_SteamUser005_GetGuestPassToGiveCount_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->GetGuestPassToGiveCount( ); return 0; } @@ -224,7 +224,7 @@ NTSTATUS ISteamUser_SteamUser005_GetGuestPassToGiveCount( void *args ) NTSTATUS ISteamUser_SteamUser005_GetGuestPassToRedeemCount( void *args ) { struct ISteamUser_SteamUser005_GetGuestPassToRedeemCount_params *params = (struct ISteamUser_SteamUser005_GetGuestPassToRedeemCount_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->GetGuestPassToRedeemCount( ); return 0; } @@ -232,7 +232,7 @@ NTSTATUS ISteamUser_SteamUser005_GetGuestPassToRedeemCount( void *args ) NTSTATUS ISteamUser_SteamUser005_GetGuestPassLastUpdateTime( void *args ) { struct ISteamUser_SteamUser005_GetGuestPassLastUpdateTime_params *params = (struct ISteamUser_SteamUser005_GetGuestPassLastUpdateTime_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->GetGuestPassLastUpdateTime( ); return 0; } @@ -240,7 +240,7 @@ NTSTATUS ISteamUser_SteamUser005_GetGuestPassLastUpdateTime( void *args ) NTSTATUS ISteamUser_SteamUser005_GetGuestPassToGiveInfo( void *args ) { struct ISteamUser_SteamUser005_GetGuestPassToGiveInfo_params *params = (struct ISteamUser_SteamUser005_GetGuestPassToGiveInfo_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->GetGuestPassToGiveInfo( params->nPassIndex, params->pgidGuestPassID, params->pnPackageID, params->pRTime32Created, params->pRTime32Expiration, params->pRTime32Sent, params->pRTime32Redeemed, params->pchRecipientAddress, params->cRecipientAddressSize ); return 0; } @@ -248,7 +248,7 @@ NTSTATUS ISteamUser_SteamUser005_GetGuestPassToGiveInfo( void *args ) NTSTATUS ISteamUser_SteamUser005_GetGuestPassToRedeemInfo( void *args ) { struct ISteamUser_SteamUser005_GetGuestPassToRedeemInfo_params *params = (struct ISteamUser_SteamUser005_GetGuestPassToRedeemInfo_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->GetGuestPassToRedeemInfo( params->nPassIndex, params->pgidGuestPassID, params->pnPackageID, params->pRTime32Created, params->pRTime32Expiration, params->pRTime32Sent, params->pRTime32Redeemed ); return 0; } @@ -256,7 +256,7 @@ NTSTATUS ISteamUser_SteamUser005_GetGuestPassToRedeemInfo( void *args ) NTSTATUS ISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress( void *args ) { struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress_params *params = (struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->GetGuestPassToRedeemSenderAddress( params->nPassIndex, params->pchSenderAddress, params->cSenderAddressSize ); return 0; } @@ -264,7 +264,7 @@ NTSTATUS ISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress( void *args ) NTSTATUS ISteamUser_SteamUser005_GetGuestPassToRedeemSenderName( void *args ) { struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderName_params *params = (struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderName_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->GetGuestPassToRedeemSenderName( params->nPassIndex, params->pchSenderName, params->cSenderNameSize ); return 0; } @@ -272,7 +272,7 @@ NTSTATUS ISteamUser_SteamUser005_GetGuestPassToRedeemSenderName( void *args ) NTSTATUS ISteamUser_SteamUser005_AcknowledgeMessageByGID( void *args ) { struct ISteamUser_SteamUser005_AcknowledgeMessageByGID_params *params = (struct ISteamUser_SteamUser005_AcknowledgeMessageByGID_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; iface->AcknowledgeMessageByGID( params->pchMessageGID ); return 0; } @@ -280,7 +280,7 @@ NTSTATUS ISteamUser_SteamUser005_AcknowledgeMessageByGID( void *args ) NTSTATUS ISteamUser_SteamUser005_SetLanguage( void *args ) { struct ISteamUser_SteamUser005_SetLanguage_params *params = (struct ISteamUser_SteamUser005_SetLanguage_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; params->_ret = iface->SetLanguage( params->pchLanguage ); return 0; } @@ -288,7 +288,7 @@ NTSTATUS ISteamUser_SteamUser005_SetLanguage( void *args ) NTSTATUS ISteamUser_SteamUser005_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser005_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser005_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } @@ -296,7 +296,7 @@ NTSTATUS ISteamUser_SteamUser005_TrackAppUsageEvent( void *args ) NTSTATUS ISteamUser_SteamUser005_SetAccountName( void *args ) { struct ISteamUser_SteamUser005_SetAccountName_params *params = (struct ISteamUser_SteamUser005_SetAccountName_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; iface->SetAccountName( params->pchAccountName ); return 0; } @@ -304,7 +304,7 @@ NTSTATUS ISteamUser_SteamUser005_SetAccountName( void *args ) NTSTATUS ISteamUser_SteamUser005_SetPassword( void *args ) { struct ISteamUser_SteamUser005_SetPassword_params *params = (struct ISteamUser_SteamUser005_SetPassword_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; iface->SetPassword( params->pchPassword ); return 0; } @@ -312,7 +312,7 @@ NTSTATUS ISteamUser_SteamUser005_SetPassword( void *args ) NTSTATUS ISteamUser_SteamUser005_SetAccountCreationTime( void *args ) { struct ISteamUser_SteamUser005_SetAccountCreationTime_params *params = (struct ISteamUser_SteamUser005_SetAccountCreationTime_params *)args; - struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->linux_side; + struct u_ISteamUser_SteamUser005 *iface = (struct u_ISteamUser_SteamUser005 *)params->u_iface; iface->SetAccountCreationTime( params->rt ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser006.cpp b/lsteamclient/cppISteamUser_SteamUser006.cpp index d97c10df..ce65c42b 100644 --- a/lsteamclient/cppISteamUser_SteamUser006.cpp +++ b/lsteamclient/cppISteamUser_SteamUser006.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser006_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser006_GetHSteamUser_params *params = (struct ISteamUser_SteamUser006_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->linux_side; + struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser006_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser006_LogOn( void *args ) { struct ISteamUser_SteamUser006_LogOn_params *params = (struct ISteamUser_SteamUser006_LogOn_params *)args; - struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->linux_side; + struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->u_iface; iface->LogOn( params->steamID ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser006_LogOn( void *args ) NTSTATUS ISteamUser_SteamUser006_LogOff( void *args ) { struct ISteamUser_SteamUser006_LogOff_params *params = (struct ISteamUser_SteamUser006_LogOff_params *)args; - struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->linux_side; + struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->u_iface; iface->LogOff( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser006_LogOff( void *args ) NTSTATUS ISteamUser_SteamUser006_BLoggedOn( void *args ) { struct ISteamUser_SteamUser006_BLoggedOn_params *params = (struct ISteamUser_SteamUser006_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->linux_side; + struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser006_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser006_GetSteamID( void *args ) { struct ISteamUser_SteamUser006_GetSteamID_params *params = (struct ISteamUser_SteamUser006_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->linux_side; + struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser006_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser006_SetRegistryString( void *args ) { struct ISteamUser_SteamUser006_SetRegistryString_params *params = (struct ISteamUser_SteamUser006_SetRegistryString_params *)args; - struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->linux_side; + struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->u_iface; params->_ret = iface->SetRegistryString( params->eRegistrySubTree, params->pchKey, params->pchValue ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser006_SetRegistryString( void *args ) NTSTATUS ISteamUser_SteamUser006_GetRegistryString( void *args ) { struct ISteamUser_SteamUser006_GetRegistryString_params *params = (struct ISteamUser_SteamUser006_GetRegistryString_params *)args; - struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->linux_side; + struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->u_iface; params->_ret = iface->GetRegistryString( params->eRegistrySubTree, params->pchKey, params->pchValue, params->cbValue ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUser_SteamUser006_GetRegistryString( void *args ) NTSTATUS ISteamUser_SteamUser006_SetRegistryInt( void *args ) { struct ISteamUser_SteamUser006_SetRegistryInt_params *params = (struct ISteamUser_SteamUser006_SetRegistryInt_params *)args; - struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->linux_side; + struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->u_iface; params->_ret = iface->SetRegistryInt( params->eRegistrySubTree, params->pchKey, params->iValue ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUser_SteamUser006_SetRegistryInt( void *args ) NTSTATUS ISteamUser_SteamUser006_GetRegistryInt( void *args ) { struct ISteamUser_SteamUser006_GetRegistryInt_params *params = (struct ISteamUser_SteamUser006_GetRegistryInt_params *)args; - struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->linux_side; + struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->u_iface; params->_ret = iface->GetRegistryInt( params->eRegistrySubTree, params->pchKey, params->piValue ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUser_SteamUser006_GetRegistryInt( void *args ) NTSTATUS ISteamUser_SteamUser006_InitiateGameConnection( void *args ) { struct ISteamUser_SteamUser006_InitiateGameConnection_params *params = (struct ISteamUser_SteamUser006_InitiateGameConnection_params *)args; - struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->linux_side; + struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->u_iface; params->_ret = iface->InitiateGameConnection( params->pBlob, params->cbMaxBlob, params->steamID, params->gameID, params->unIPServer, params->usPortServer, params->bSecure ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUser_SteamUser006_InitiateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser006_TerminateGameConnection( void *args ) { struct ISteamUser_SteamUser006_TerminateGameConnection_params *params = (struct ISteamUser_SteamUser006_TerminateGameConnection_params *)args; - struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->linux_side; + struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->u_iface; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUser_SteamUser006_TerminateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser006_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser006_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser006_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->linux_side; + struct u_ISteamUser_SteamUser006 *iface = (struct u_ISteamUser_SteamUser006 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser007.cpp b/lsteamclient/cppISteamUser_SteamUser007.cpp index 6988b481..f914baea 100644 --- a/lsteamclient/cppISteamUser_SteamUser007.cpp +++ b/lsteamclient/cppISteamUser_SteamUser007.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser007_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser007_GetHSteamUser_params *params = (struct ISteamUser_SteamUser007_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->linux_side; + struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser007_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser007_LogOn( void *args ) { struct ISteamUser_SteamUser007_LogOn_params *params = (struct ISteamUser_SteamUser007_LogOn_params *)args; - struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->linux_side; + struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->u_iface; iface->LogOn( params->steamID ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser007_LogOn( void *args ) NTSTATUS ISteamUser_SteamUser007_LogOff( void *args ) { struct ISteamUser_SteamUser007_LogOff_params *params = (struct ISteamUser_SteamUser007_LogOff_params *)args; - struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->linux_side; + struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->u_iface; iface->LogOff( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser007_LogOff( void *args ) NTSTATUS ISteamUser_SteamUser007_BLoggedOn( void *args ) { struct ISteamUser_SteamUser007_BLoggedOn_params *params = (struct ISteamUser_SteamUser007_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->linux_side; + struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser007_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser007_GetSteamID( void *args ) { struct ISteamUser_SteamUser007_GetSteamID_params *params = (struct ISteamUser_SteamUser007_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->linux_side; + struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser007_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser007_SetRegistryString( void *args ) { struct ISteamUser_SteamUser007_SetRegistryString_params *params = (struct ISteamUser_SteamUser007_SetRegistryString_params *)args; - struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->linux_side; + struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->u_iface; params->_ret = iface->SetRegistryString( params->eRegistrySubTree, params->pchKey, params->pchValue ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser007_SetRegistryString( void *args ) NTSTATUS ISteamUser_SteamUser007_GetRegistryString( void *args ) { struct ISteamUser_SteamUser007_GetRegistryString_params *params = (struct ISteamUser_SteamUser007_GetRegistryString_params *)args; - struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->linux_side; + struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->u_iface; params->_ret = iface->GetRegistryString( params->eRegistrySubTree, params->pchKey, params->pchValue, params->cbValue ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUser_SteamUser007_GetRegistryString( void *args ) NTSTATUS ISteamUser_SteamUser007_SetRegistryInt( void *args ) { struct ISteamUser_SteamUser007_SetRegistryInt_params *params = (struct ISteamUser_SteamUser007_SetRegistryInt_params *)args; - struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->linux_side; + struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->u_iface; params->_ret = iface->SetRegistryInt( params->eRegistrySubTree, params->pchKey, params->iValue ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUser_SteamUser007_SetRegistryInt( void *args ) NTSTATUS ISteamUser_SteamUser007_GetRegistryInt( void *args ) { struct ISteamUser_SteamUser007_GetRegistryInt_params *params = (struct ISteamUser_SteamUser007_GetRegistryInt_params *)args; - struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->linux_side; + struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->u_iface; params->_ret = iface->GetRegistryInt( params->eRegistrySubTree, params->pchKey, params->piValue ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUser_SteamUser007_GetRegistryInt( void *args ) NTSTATUS ISteamUser_SteamUser007_InitiateGameConnection( void *args ) { struct ISteamUser_SteamUser007_InitiateGameConnection_params *params = (struct ISteamUser_SteamUser007_InitiateGameConnection_params *)args; - struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->linux_side; + struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->u_iface; params->_ret = iface->InitiateGameConnection( params->pBlob, params->cbMaxBlob, params->steamID, params->gameID, params->unIPServer, params->usPortServer, params->bSecure, params->pvSteam2GetEncryptionKey, params->cbSteam2GetEncryptionKey ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUser_SteamUser007_InitiateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser007_TerminateGameConnection( void *args ) { struct ISteamUser_SteamUser007_TerminateGameConnection_params *params = (struct ISteamUser_SteamUser007_TerminateGameConnection_params *)args; - struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->linux_side; + struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->u_iface; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUser_SteamUser007_TerminateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser007_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser007_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser007_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->linux_side; + struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUser_SteamUser007_TrackAppUsageEvent( void *args ) NTSTATUS ISteamUser_SteamUser007_RefreshSteam2Login( void *args ) { struct ISteamUser_SteamUser007_RefreshSteam2Login_params *params = (struct ISteamUser_SteamUser007_RefreshSteam2Login_params *)args; - struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->linux_side; + struct u_ISteamUser_SteamUser007 *iface = (struct u_ISteamUser_SteamUser007 *)params->u_iface; iface->RefreshSteam2Login( ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser008.cpp b/lsteamclient/cppISteamUser_SteamUser008.cpp index ea0f9d40..e5048e9c 100644 --- a/lsteamclient/cppISteamUser_SteamUser008.cpp +++ b/lsteamclient/cppISteamUser_SteamUser008.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser008_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser008_GetHSteamUser_params *params = (struct ISteamUser_SteamUser008_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser008 *iface = (struct u_ISteamUser_SteamUser008 *)params->linux_side; + struct u_ISteamUser_SteamUser008 *iface = (struct u_ISteamUser_SteamUser008 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser008_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser008_BLoggedOn( void *args ) { struct ISteamUser_SteamUser008_BLoggedOn_params *params = (struct ISteamUser_SteamUser008_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser008 *iface = (struct u_ISteamUser_SteamUser008 *)params->linux_side; + struct u_ISteamUser_SteamUser008 *iface = (struct u_ISteamUser_SteamUser008 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser008_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser008_GetSteamID( void *args ) { struct ISteamUser_SteamUser008_GetSteamID_params *params = (struct ISteamUser_SteamUser008_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser008 *iface = (struct u_ISteamUser_SteamUser008 *)params->linux_side; + struct u_ISteamUser_SteamUser008 *iface = (struct u_ISteamUser_SteamUser008 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser008_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser008_InitiateGameConnection( void *args ) { struct ISteamUser_SteamUser008_InitiateGameConnection_params *params = (struct ISteamUser_SteamUser008_InitiateGameConnection_params *)args; - struct u_ISteamUser_SteamUser008 *iface = (struct u_ISteamUser_SteamUser008 *)params->linux_side; + struct u_ISteamUser_SteamUser008 *iface = (struct u_ISteamUser_SteamUser008 *)params->u_iface; params->_ret = iface->InitiateGameConnection( params->pBlob, params->cbMaxBlob, params->steamID, ¶ms->gameID, params->unIPServer, params->usPortServer, params->bSecure, params->pvSteam2GetEncryptionKey, params->cbSteam2GetEncryptionKey ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser008_InitiateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser008_TerminateGameConnection( void *args ) { struct ISteamUser_SteamUser008_TerminateGameConnection_params *params = (struct ISteamUser_SteamUser008_TerminateGameConnection_params *)args; - struct u_ISteamUser_SteamUser008 *iface = (struct u_ISteamUser_SteamUser008 *)params->linux_side; + struct u_ISteamUser_SteamUser008 *iface = (struct u_ISteamUser_SteamUser008 *)params->u_iface; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser008_TerminateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser008_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser008_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser008_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser008 *iface = (struct u_ISteamUser_SteamUser008 *)params->linux_side; + struct u_ISteamUser_SteamUser008 *iface = (struct u_ISteamUser_SteamUser008 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser008_TrackAppUsageEvent( void *args ) NTSTATUS ISteamUser_SteamUser008_RefreshSteam2Login( void *args ) { struct ISteamUser_SteamUser008_RefreshSteam2Login_params *params = (struct ISteamUser_SteamUser008_RefreshSteam2Login_params *)args; - struct u_ISteamUser_SteamUser008 *iface = (struct u_ISteamUser_SteamUser008 *)params->linux_side; + struct u_ISteamUser_SteamUser008 *iface = (struct u_ISteamUser_SteamUser008 *)params->u_iface; iface->RefreshSteam2Login( ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser009.cpp b/lsteamclient/cppISteamUser_SteamUser009.cpp index a6aee74b..a3f82440 100644 --- a/lsteamclient/cppISteamUser_SteamUser009.cpp +++ b/lsteamclient/cppISteamUser_SteamUser009.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser009_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser009_GetHSteamUser_params *params = (struct ISteamUser_SteamUser009_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser009 *iface = (struct u_ISteamUser_SteamUser009 *)params->linux_side; + struct u_ISteamUser_SteamUser009 *iface = (struct u_ISteamUser_SteamUser009 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser009_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser009_BLoggedOn( void *args ) { struct ISteamUser_SteamUser009_BLoggedOn_params *params = (struct ISteamUser_SteamUser009_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser009 *iface = (struct u_ISteamUser_SteamUser009 *)params->linux_side; + struct u_ISteamUser_SteamUser009 *iface = (struct u_ISteamUser_SteamUser009 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser009_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser009_GetSteamID( void *args ) { struct ISteamUser_SteamUser009_GetSteamID_params *params = (struct ISteamUser_SteamUser009_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser009 *iface = (struct u_ISteamUser_SteamUser009 *)params->linux_side; + struct u_ISteamUser_SteamUser009 *iface = (struct u_ISteamUser_SteamUser009 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser009_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser009_InitiateGameConnection( void *args ) { struct ISteamUser_SteamUser009_InitiateGameConnection_params *params = (struct ISteamUser_SteamUser009_InitiateGameConnection_params *)args; - struct u_ISteamUser_SteamUser009 *iface = (struct u_ISteamUser_SteamUser009 *)params->linux_side; + struct u_ISteamUser_SteamUser009 *iface = (struct u_ISteamUser_SteamUser009 *)params->u_iface; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->gameID, params->unIPServer, params->usPortServer, params->bSecure ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser009_InitiateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser009_TerminateGameConnection( void *args ) { struct ISteamUser_SteamUser009_TerminateGameConnection_params *params = (struct ISteamUser_SteamUser009_TerminateGameConnection_params *)args; - struct u_ISteamUser_SteamUser009 *iface = (struct u_ISteamUser_SteamUser009 *)params->linux_side; + struct u_ISteamUser_SteamUser009 *iface = (struct u_ISteamUser_SteamUser009 *)params->u_iface; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser009_TerminateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser009_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser009_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser009_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser009 *iface = (struct u_ISteamUser_SteamUser009 *)params->linux_side; + struct u_ISteamUser_SteamUser009 *iface = (struct u_ISteamUser_SteamUser009 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser009_TrackAppUsageEvent( void *args ) NTSTATUS ISteamUser_SteamUser009_RefreshSteam2Login( void *args ) { struct ISteamUser_SteamUser009_RefreshSteam2Login_params *params = (struct ISteamUser_SteamUser009_RefreshSteam2Login_params *)args; - struct u_ISteamUser_SteamUser009 *iface = (struct u_ISteamUser_SteamUser009 *)params->linux_side; + struct u_ISteamUser_SteamUser009 *iface = (struct u_ISteamUser_SteamUser009 *)params->u_iface; iface->RefreshSteam2Login( ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser010.cpp b/lsteamclient/cppISteamUser_SteamUser010.cpp index 6f9e7da9..979a7bd6 100644 --- a/lsteamclient/cppISteamUser_SteamUser010.cpp +++ b/lsteamclient/cppISteamUser_SteamUser010.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser010_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser010_GetHSteamUser_params *params = (struct ISteamUser_SteamUser010_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser010 *iface = (struct u_ISteamUser_SteamUser010 *)params->linux_side; + struct u_ISteamUser_SteamUser010 *iface = (struct u_ISteamUser_SteamUser010 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser010_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser010_BLoggedOn( void *args ) { struct ISteamUser_SteamUser010_BLoggedOn_params *params = (struct ISteamUser_SteamUser010_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser010 *iface = (struct u_ISteamUser_SteamUser010 *)params->linux_side; + struct u_ISteamUser_SteamUser010 *iface = (struct u_ISteamUser_SteamUser010 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser010_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser010_GetSteamID( void *args ) { struct ISteamUser_SteamUser010_GetSteamID_params *params = (struct ISteamUser_SteamUser010_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser010 *iface = (struct u_ISteamUser_SteamUser010 *)params->linux_side; + struct u_ISteamUser_SteamUser010 *iface = (struct u_ISteamUser_SteamUser010 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser010_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser010_InitiateGameConnection( void *args ) { struct ISteamUser_SteamUser010_InitiateGameConnection_params *params = (struct ISteamUser_SteamUser010_InitiateGameConnection_params *)args; - struct u_ISteamUser_SteamUser010 *iface = (struct u_ISteamUser_SteamUser010 *)params->linux_side; + struct u_ISteamUser_SteamUser010 *iface = (struct u_ISteamUser_SteamUser010 *)params->u_iface; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser010_InitiateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser010_TerminateGameConnection( void *args ) { struct ISteamUser_SteamUser010_TerminateGameConnection_params *params = (struct ISteamUser_SteamUser010_TerminateGameConnection_params *)args; - struct u_ISteamUser_SteamUser010 *iface = (struct u_ISteamUser_SteamUser010 *)params->linux_side; + struct u_ISteamUser_SteamUser010 *iface = (struct u_ISteamUser_SteamUser010 *)params->u_iface; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser010_TerminateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser010_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser010_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser010_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser010 *iface = (struct u_ISteamUser_SteamUser010 *)params->linux_side; + struct u_ISteamUser_SteamUser010 *iface = (struct u_ISteamUser_SteamUser010 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser011.cpp b/lsteamclient/cppISteamUser_SteamUser011.cpp index 2eb6a953..410f3c5d 100644 --- a/lsteamclient/cppISteamUser_SteamUser011.cpp +++ b/lsteamclient/cppISteamUser_SteamUser011.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser011_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser011_GetHSteamUser_params *params = (struct ISteamUser_SteamUser011_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->linux_side; + struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser011_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser011_BLoggedOn( void *args ) { struct ISteamUser_SteamUser011_BLoggedOn_params *params = (struct ISteamUser_SteamUser011_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->linux_side; + struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser011_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser011_GetSteamID( void *args ) { struct ISteamUser_SteamUser011_GetSteamID_params *params = (struct ISteamUser_SteamUser011_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->linux_side; + struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser011_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser011_InitiateGameConnection( void *args ) { struct ISteamUser_SteamUser011_InitiateGameConnection_params *params = (struct ISteamUser_SteamUser011_InitiateGameConnection_params *)args; - struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->linux_side; + struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->u_iface; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser011_InitiateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser011_TerminateGameConnection( void *args ) { struct ISteamUser_SteamUser011_TerminateGameConnection_params *params = (struct ISteamUser_SteamUser011_TerminateGameConnection_params *)args; - struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->linux_side; + struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->u_iface; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser011_TerminateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser011_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser011_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser011_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->linux_side; + struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser011_TrackAppUsageEvent( void *args ) NTSTATUS ISteamUser_SteamUser011_GetUserDataFolder( void *args ) { struct ISteamUser_SteamUser011_GetUserDataFolder_params *params = (struct ISteamUser_SteamUser011_GetUserDataFolder_params *)args; - struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->linux_side; + struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->u_iface; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); steamclient_unix_path_to_dos_path( params->_ret, params->pchBuffer, params->pchBuffer, params->cubBuffer, 0 ); return 0; @@ -65,7 +65,7 @@ NTSTATUS ISteamUser_SteamUser011_GetUserDataFolder( void *args ) NTSTATUS ISteamUser_SteamUser011_StartVoiceRecording( void *args ) { struct ISteamUser_SteamUser011_StartVoiceRecording_params *params = (struct ISteamUser_SteamUser011_StartVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->linux_side; + struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->u_iface; iface->StartVoiceRecording( ); return 0; } @@ -73,7 +73,7 @@ NTSTATUS ISteamUser_SteamUser011_StartVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser011_StopVoiceRecording( void *args ) { struct ISteamUser_SteamUser011_StopVoiceRecording_params *params = (struct ISteamUser_SteamUser011_StopVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->linux_side; + struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->u_iface; iface->StopVoiceRecording( ); return 0; } @@ -81,7 +81,7 @@ NTSTATUS ISteamUser_SteamUser011_StopVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser011_GetCompressedVoice( void *args ) { struct ISteamUser_SteamUser011_GetCompressedVoice_params *params = (struct ISteamUser_SteamUser011_GetCompressedVoice_params *)args; - struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->linux_side; + struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->u_iface; params->_ret = iface->GetCompressedVoice( params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten ); return 0; } @@ -89,7 +89,7 @@ NTSTATUS ISteamUser_SteamUser011_GetCompressedVoice( void *args ) NTSTATUS ISteamUser_SteamUser011_DecompressVoice( void *args ) { struct ISteamUser_SteamUser011_DecompressVoice_params *params = (struct ISteamUser_SteamUser011_DecompressVoice_params *)args; - struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->linux_side; + struct u_ISteamUser_SteamUser011 *iface = (struct u_ISteamUser_SteamUser011 *)params->u_iface; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser012.cpp b/lsteamclient/cppISteamUser_SteamUser012.cpp index ad9e3d9a..59779a02 100644 --- a/lsteamclient/cppISteamUser_SteamUser012.cpp +++ b/lsteamclient/cppISteamUser_SteamUser012.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser012_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser012_GetHSteamUser_params *params = (struct ISteamUser_SteamUser012_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->linux_side; + struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser012_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser012_BLoggedOn( void *args ) { struct ISteamUser_SteamUser012_BLoggedOn_params *params = (struct ISteamUser_SteamUser012_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->linux_side; + struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser012_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser012_GetSteamID( void *args ) { struct ISteamUser_SteamUser012_GetSteamID_params *params = (struct ISteamUser_SteamUser012_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->linux_side; + struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser012_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser012_InitiateGameConnection( void *args ) { struct ISteamUser_SteamUser012_InitiateGameConnection_params *params = (struct ISteamUser_SteamUser012_InitiateGameConnection_params *)args; - struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->linux_side; + struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->u_iface; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser012_InitiateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser012_TerminateGameConnection( void *args ) { struct ISteamUser_SteamUser012_TerminateGameConnection_params *params = (struct ISteamUser_SteamUser012_TerminateGameConnection_params *)args; - struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->linux_side; + struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->u_iface; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser012_TerminateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser012_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser012_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser012_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->linux_side; + struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser012_TrackAppUsageEvent( void *args ) NTSTATUS ISteamUser_SteamUser012_GetUserDataFolder( void *args ) { struct ISteamUser_SteamUser012_GetUserDataFolder_params *params = (struct ISteamUser_SteamUser012_GetUserDataFolder_params *)args; - struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->linux_side; + struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->u_iface; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); steamclient_unix_path_to_dos_path( params->_ret, params->pchBuffer, params->pchBuffer, params->cubBuffer, 0 ); return 0; @@ -65,7 +65,7 @@ NTSTATUS ISteamUser_SteamUser012_GetUserDataFolder( void *args ) NTSTATUS ISteamUser_SteamUser012_StartVoiceRecording( void *args ) { struct ISteamUser_SteamUser012_StartVoiceRecording_params *params = (struct ISteamUser_SteamUser012_StartVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->linux_side; + struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->u_iface; iface->StartVoiceRecording( ); return 0; } @@ -73,7 +73,7 @@ NTSTATUS ISteamUser_SteamUser012_StartVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser012_StopVoiceRecording( void *args ) { struct ISteamUser_SteamUser012_StopVoiceRecording_params *params = (struct ISteamUser_SteamUser012_StopVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->linux_side; + struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->u_iface; iface->StopVoiceRecording( ); return 0; } @@ -81,7 +81,7 @@ NTSTATUS ISteamUser_SteamUser012_StopVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser012_GetCompressedVoice( void *args ) { struct ISteamUser_SteamUser012_GetCompressedVoice_params *params = (struct ISteamUser_SteamUser012_GetCompressedVoice_params *)args; - struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->linux_side; + struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->u_iface; params->_ret = iface->GetCompressedVoice( params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten ); return 0; } @@ -89,7 +89,7 @@ NTSTATUS ISteamUser_SteamUser012_GetCompressedVoice( void *args ) NTSTATUS ISteamUser_SteamUser012_DecompressVoice( void *args ) { struct ISteamUser_SteamUser012_DecompressVoice_params *params = (struct ISteamUser_SteamUser012_DecompressVoice_params *)args; - struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->linux_side; + struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->u_iface; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten ); return 0; } @@ -97,7 +97,7 @@ NTSTATUS ISteamUser_SteamUser012_DecompressVoice( void *args ) NTSTATUS ISteamUser_SteamUser012_GetAuthSessionTicket( void *args ) { struct ISteamUser_SteamUser012_GetAuthSessionTicket_params *params = (struct ISteamUser_SteamUser012_GetAuthSessionTicket_params *)args; - struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->linux_side; + struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->u_iface; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -105,7 +105,7 @@ NTSTATUS ISteamUser_SteamUser012_GetAuthSessionTicket( void *args ) NTSTATUS ISteamUser_SteamUser012_BeginAuthSession( void *args ) { struct ISteamUser_SteamUser012_BeginAuthSession_params *params = (struct ISteamUser_SteamUser012_BeginAuthSession_params *)args; - struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->linux_side; + struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->u_iface; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); return 0; } @@ -113,7 +113,7 @@ NTSTATUS ISteamUser_SteamUser012_BeginAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser012_EndAuthSession( void *args ) { struct ISteamUser_SteamUser012_EndAuthSession_params *params = (struct ISteamUser_SteamUser012_EndAuthSession_params *)args; - struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->linux_side; + struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->u_iface; iface->EndAuthSession( params->steamID ); return 0; } @@ -121,7 +121,7 @@ NTSTATUS ISteamUser_SteamUser012_EndAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser012_CancelAuthTicket( void *args ) { struct ISteamUser_SteamUser012_CancelAuthTicket_params *params = (struct ISteamUser_SteamUser012_CancelAuthTicket_params *)args; - struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->linux_side; + struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->u_iface; iface->CancelAuthTicket( params->hAuthTicket ); return 0; } @@ -129,7 +129,7 @@ NTSTATUS ISteamUser_SteamUser012_CancelAuthTicket( void *args ) NTSTATUS ISteamUser_SteamUser012_UserHasLicenseForApp( void *args ) { struct ISteamUser_SteamUser012_UserHasLicenseForApp_params *params = (struct ISteamUser_SteamUser012_UserHasLicenseForApp_params *)args; - struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->linux_side; + struct u_ISteamUser_SteamUser012 *iface = (struct u_ISteamUser_SteamUser012 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser013.cpp b/lsteamclient/cppISteamUser_SteamUser013.cpp index 34c5eaec..44d69b52 100644 --- a/lsteamclient/cppISteamUser_SteamUser013.cpp +++ b/lsteamclient/cppISteamUser_SteamUser013.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser013_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser013_GetHSteamUser_params *params = (struct ISteamUser_SteamUser013_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->linux_side; + struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser013_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser013_BLoggedOn( void *args ) { struct ISteamUser_SteamUser013_BLoggedOn_params *params = (struct ISteamUser_SteamUser013_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->linux_side; + struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser013_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser013_GetSteamID( void *args ) { struct ISteamUser_SteamUser013_GetSteamID_params *params = (struct ISteamUser_SteamUser013_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->linux_side; + struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser013_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser013_InitiateGameConnection( void *args ) { struct ISteamUser_SteamUser013_InitiateGameConnection_params *params = (struct ISteamUser_SteamUser013_InitiateGameConnection_params *)args; - struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->linux_side; + struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->u_iface; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser013_InitiateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser013_TerminateGameConnection( void *args ) { struct ISteamUser_SteamUser013_TerminateGameConnection_params *params = (struct ISteamUser_SteamUser013_TerminateGameConnection_params *)args; - struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->linux_side; + struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->u_iface; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser013_TerminateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser013_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser013_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser013_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->linux_side; + struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser013_TrackAppUsageEvent( void *args ) NTSTATUS ISteamUser_SteamUser013_GetUserDataFolder( void *args ) { struct ISteamUser_SteamUser013_GetUserDataFolder_params *params = (struct ISteamUser_SteamUser013_GetUserDataFolder_params *)args; - struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->linux_side; + struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->u_iface; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); steamclient_unix_path_to_dos_path( params->_ret, params->pchBuffer, params->pchBuffer, params->cubBuffer, 0 ); return 0; @@ -65,7 +65,7 @@ NTSTATUS ISteamUser_SteamUser013_GetUserDataFolder( void *args ) NTSTATUS ISteamUser_SteamUser013_StartVoiceRecording( void *args ) { struct ISteamUser_SteamUser013_StartVoiceRecording_params *params = (struct ISteamUser_SteamUser013_StartVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->linux_side; + struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->u_iface; iface->StartVoiceRecording( ); return 0; } @@ -73,7 +73,7 @@ NTSTATUS ISteamUser_SteamUser013_StartVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser013_StopVoiceRecording( void *args ) { struct ISteamUser_SteamUser013_StopVoiceRecording_params *params = (struct ISteamUser_SteamUser013_StopVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->linux_side; + struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->u_iface; iface->StopVoiceRecording( ); return 0; } @@ -81,7 +81,7 @@ NTSTATUS ISteamUser_SteamUser013_StopVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser013_GetAvailableVoice( void *args ) { struct ISteamUser_SteamUser013_GetAvailableVoice_params *params = (struct ISteamUser_SteamUser013_GetAvailableVoice_params *)args; - struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->linux_side; + struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->u_iface; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed ); return 0; } @@ -89,7 +89,7 @@ NTSTATUS ISteamUser_SteamUser013_GetAvailableVoice( void *args ) NTSTATUS ISteamUser_SteamUser013_GetVoice( void *args ) { struct ISteamUser_SteamUser013_GetVoice_params *params = (struct ISteamUser_SteamUser013_GetVoice_params *)args; - struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->linux_side; + struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->u_iface; params->_ret = iface->GetVoice( params->bWantCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->bWantUncompressed, params->pUncompressedDestBuffer, params->cbUncompressedDestBufferSize, params->nUncompressBytesWritten ); return 0; } @@ -97,7 +97,7 @@ NTSTATUS ISteamUser_SteamUser013_GetVoice( void *args ) NTSTATUS ISteamUser_SteamUser013_DecompressVoice( void *args ) { struct ISteamUser_SteamUser013_DecompressVoice_params *params = (struct ISteamUser_SteamUser013_DecompressVoice_params *)args; - struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->linux_side; + struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->u_iface; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten ); return 0; } @@ -105,7 +105,7 @@ NTSTATUS ISteamUser_SteamUser013_DecompressVoice( void *args ) NTSTATUS ISteamUser_SteamUser013_GetAuthSessionTicket( void *args ) { struct ISteamUser_SteamUser013_GetAuthSessionTicket_params *params = (struct ISteamUser_SteamUser013_GetAuthSessionTicket_params *)args; - struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->linux_side; + struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->u_iface; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -113,7 +113,7 @@ NTSTATUS ISteamUser_SteamUser013_GetAuthSessionTicket( void *args ) NTSTATUS ISteamUser_SteamUser013_BeginAuthSession( void *args ) { struct ISteamUser_SteamUser013_BeginAuthSession_params *params = (struct ISteamUser_SteamUser013_BeginAuthSession_params *)args; - struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->linux_side; + struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->u_iface; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); return 0; } @@ -121,7 +121,7 @@ NTSTATUS ISteamUser_SteamUser013_BeginAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser013_EndAuthSession( void *args ) { struct ISteamUser_SteamUser013_EndAuthSession_params *params = (struct ISteamUser_SteamUser013_EndAuthSession_params *)args; - struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->linux_side; + struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->u_iface; iface->EndAuthSession( params->steamID ); return 0; } @@ -129,7 +129,7 @@ NTSTATUS ISteamUser_SteamUser013_EndAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser013_CancelAuthTicket( void *args ) { struct ISteamUser_SteamUser013_CancelAuthTicket_params *params = (struct ISteamUser_SteamUser013_CancelAuthTicket_params *)args; - struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->linux_side; + struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->u_iface; iface->CancelAuthTicket( params->hAuthTicket ); return 0; } @@ -137,7 +137,7 @@ NTSTATUS ISteamUser_SteamUser013_CancelAuthTicket( void *args ) NTSTATUS ISteamUser_SteamUser013_UserHasLicenseForApp( void *args ) { struct ISteamUser_SteamUser013_UserHasLicenseForApp_params *params = (struct ISteamUser_SteamUser013_UserHasLicenseForApp_params *)args; - struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->linux_side; + struct u_ISteamUser_SteamUser013 *iface = (struct u_ISteamUser_SteamUser013 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser014.cpp b/lsteamclient/cppISteamUser_SteamUser014.cpp index 08382ad7..500bad36 100644 --- a/lsteamclient/cppISteamUser_SteamUser014.cpp +++ b/lsteamclient/cppISteamUser_SteamUser014.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser014_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser014_GetHSteamUser_params *params = (struct ISteamUser_SteamUser014_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser014_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser014_BLoggedOn( void *args ) { struct ISteamUser_SteamUser014_BLoggedOn_params *params = (struct ISteamUser_SteamUser014_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser014_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser014_GetSteamID( void *args ) { struct ISteamUser_SteamUser014_GetSteamID_params *params = (struct ISteamUser_SteamUser014_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser014_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser014_InitiateGameConnection( void *args ) { struct ISteamUser_SteamUser014_InitiateGameConnection_params *params = (struct ISteamUser_SteamUser014_InitiateGameConnection_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser014_InitiateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser014_TerminateGameConnection( void *args ) { struct ISteamUser_SteamUser014_TerminateGameConnection_params *params = (struct ISteamUser_SteamUser014_TerminateGameConnection_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser014_TerminateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser014_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser014_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser014_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser014_TrackAppUsageEvent( void *args ) NTSTATUS ISteamUser_SteamUser014_GetUserDataFolder( void *args ) { struct ISteamUser_SteamUser014_GetUserDataFolder_params *params = (struct ISteamUser_SteamUser014_GetUserDataFolder_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); steamclient_unix_path_to_dos_path( params->_ret, params->pchBuffer, params->pchBuffer, params->cubBuffer, 0 ); return 0; @@ -65,7 +65,7 @@ NTSTATUS ISteamUser_SteamUser014_GetUserDataFolder( void *args ) NTSTATUS ISteamUser_SteamUser014_StartVoiceRecording( void *args ) { struct ISteamUser_SteamUser014_StartVoiceRecording_params *params = (struct ISteamUser_SteamUser014_StartVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; iface->StartVoiceRecording( ); return 0; } @@ -73,7 +73,7 @@ NTSTATUS ISteamUser_SteamUser014_StartVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser014_StopVoiceRecording( void *args ) { struct ISteamUser_SteamUser014_StopVoiceRecording_params *params = (struct ISteamUser_SteamUser014_StopVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; iface->StopVoiceRecording( ); return 0; } @@ -81,7 +81,7 @@ NTSTATUS ISteamUser_SteamUser014_StopVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser014_GetAvailableVoice( void *args ) { struct ISteamUser_SteamUser014_GetAvailableVoice_params *params = (struct ISteamUser_SteamUser014_GetAvailableVoice_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed ); return 0; } @@ -89,7 +89,7 @@ NTSTATUS ISteamUser_SteamUser014_GetAvailableVoice( void *args ) NTSTATUS ISteamUser_SteamUser014_GetVoice( void *args ) { struct ISteamUser_SteamUser014_GetVoice_params *params = (struct ISteamUser_SteamUser014_GetVoice_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; params->_ret = iface->GetVoice( params->bWantCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->bWantUncompressed, params->pUncompressedDestBuffer, params->cbUncompressedDestBufferSize, params->nUncompressBytesWritten ); return 0; } @@ -97,7 +97,7 @@ NTSTATUS ISteamUser_SteamUser014_GetVoice( void *args ) NTSTATUS ISteamUser_SteamUser014_DecompressVoice( void *args ) { struct ISteamUser_SteamUser014_DecompressVoice_params *params = (struct ISteamUser_SteamUser014_DecompressVoice_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten ); return 0; } @@ -105,7 +105,7 @@ NTSTATUS ISteamUser_SteamUser014_DecompressVoice( void *args ) NTSTATUS ISteamUser_SteamUser014_GetAuthSessionTicket( void *args ) { struct ISteamUser_SteamUser014_GetAuthSessionTicket_params *params = (struct ISteamUser_SteamUser014_GetAuthSessionTicket_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -113,7 +113,7 @@ NTSTATUS ISteamUser_SteamUser014_GetAuthSessionTicket( void *args ) NTSTATUS ISteamUser_SteamUser014_BeginAuthSession( void *args ) { struct ISteamUser_SteamUser014_BeginAuthSession_params *params = (struct ISteamUser_SteamUser014_BeginAuthSession_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); return 0; } @@ -121,7 +121,7 @@ NTSTATUS ISteamUser_SteamUser014_BeginAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser014_EndAuthSession( void *args ) { struct ISteamUser_SteamUser014_EndAuthSession_params *params = (struct ISteamUser_SteamUser014_EndAuthSession_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; iface->EndAuthSession( params->steamID ); return 0; } @@ -129,7 +129,7 @@ NTSTATUS ISteamUser_SteamUser014_EndAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser014_CancelAuthTicket( void *args ) { struct ISteamUser_SteamUser014_CancelAuthTicket_params *params = (struct ISteamUser_SteamUser014_CancelAuthTicket_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; iface->CancelAuthTicket( params->hAuthTicket ); return 0; } @@ -137,7 +137,7 @@ NTSTATUS ISteamUser_SteamUser014_CancelAuthTicket( void *args ) NTSTATUS ISteamUser_SteamUser014_UserHasLicenseForApp( void *args ) { struct ISteamUser_SteamUser014_UserHasLicenseForApp_params *params = (struct ISteamUser_SteamUser014_UserHasLicenseForApp_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamUser_SteamUser014_UserHasLicenseForApp( void *args ) NTSTATUS ISteamUser_SteamUser014_BIsBehindNAT( void *args ) { struct ISteamUser_SteamUser014_BIsBehindNAT_params *params = (struct ISteamUser_SteamUser014_BIsBehindNAT_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; params->_ret = iface->BIsBehindNAT( ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamUser_SteamUser014_BIsBehindNAT( void *args ) NTSTATUS ISteamUser_SteamUser014_AdvertiseGame( void *args ) { struct ISteamUser_SteamUser014_AdvertiseGame_params *params = (struct ISteamUser_SteamUser014_AdvertiseGame_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); return 0; } @@ -161,7 +161,7 @@ NTSTATUS ISteamUser_SteamUser014_AdvertiseGame( void *args ) NTSTATUS ISteamUser_SteamUser014_RequestEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser014_RequestEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser014_RequestEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); return 0; } @@ -169,7 +169,7 @@ NTSTATUS ISteamUser_SteamUser014_RequestEncryptedAppTicket( void *args ) NTSTATUS ISteamUser_SteamUser014_GetEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser014_GetEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser014_GetEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->linux_side; + struct u_ISteamUser_SteamUser014 *iface = (struct u_ISteamUser_SteamUser014 *)params->u_iface; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser015.cpp b/lsteamclient/cppISteamUser_SteamUser015.cpp index 9db3db6d..f5b13e6c 100644 --- a/lsteamclient/cppISteamUser_SteamUser015.cpp +++ b/lsteamclient/cppISteamUser_SteamUser015.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser015_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser015_GetHSteamUser_params *params = (struct ISteamUser_SteamUser015_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser015_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser015_BLoggedOn( void *args ) { struct ISteamUser_SteamUser015_BLoggedOn_params *params = (struct ISteamUser_SteamUser015_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser015_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser015_GetSteamID( void *args ) { struct ISteamUser_SteamUser015_GetSteamID_params *params = (struct ISteamUser_SteamUser015_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser015_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser015_InitiateGameConnection( void *args ) { struct ISteamUser_SteamUser015_InitiateGameConnection_params *params = (struct ISteamUser_SteamUser015_InitiateGameConnection_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser015_InitiateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser015_TerminateGameConnection( void *args ) { struct ISteamUser_SteamUser015_TerminateGameConnection_params *params = (struct ISteamUser_SteamUser015_TerminateGameConnection_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser015_TerminateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser015_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser015_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser015_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser015_TrackAppUsageEvent( void *args ) NTSTATUS ISteamUser_SteamUser015_GetUserDataFolder( void *args ) { struct ISteamUser_SteamUser015_GetUserDataFolder_params *params = (struct ISteamUser_SteamUser015_GetUserDataFolder_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); steamclient_unix_path_to_dos_path( params->_ret, params->pchBuffer, params->pchBuffer, params->cubBuffer, 0 ); return 0; @@ -65,7 +65,7 @@ NTSTATUS ISteamUser_SteamUser015_GetUserDataFolder( void *args ) NTSTATUS ISteamUser_SteamUser015_StartVoiceRecording( void *args ) { struct ISteamUser_SteamUser015_StartVoiceRecording_params *params = (struct ISteamUser_SteamUser015_StartVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; iface->StartVoiceRecording( ); return 0; } @@ -73,7 +73,7 @@ NTSTATUS ISteamUser_SteamUser015_StartVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser015_StopVoiceRecording( void *args ) { struct ISteamUser_SteamUser015_StopVoiceRecording_params *params = (struct ISteamUser_SteamUser015_StopVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; iface->StopVoiceRecording( ); return 0; } @@ -81,7 +81,7 @@ NTSTATUS ISteamUser_SteamUser015_StopVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser015_GetAvailableVoice( void *args ) { struct ISteamUser_SteamUser015_GetAvailableVoice_params *params = (struct ISteamUser_SteamUser015_GetAvailableVoice_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed ); return 0; } @@ -89,7 +89,7 @@ NTSTATUS ISteamUser_SteamUser015_GetAvailableVoice( void *args ) NTSTATUS ISteamUser_SteamUser015_GetVoice( void *args ) { struct ISteamUser_SteamUser015_GetVoice_params *params = (struct ISteamUser_SteamUser015_GetVoice_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; params->_ret = iface->GetVoice( params->bWantCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->bWantUncompressed, params->pUncompressedDestBuffer, params->cbUncompressedDestBufferSize, params->nUncompressBytesWritten ); return 0; } @@ -97,7 +97,7 @@ NTSTATUS ISteamUser_SteamUser015_GetVoice( void *args ) NTSTATUS ISteamUser_SteamUser015_DecompressVoice( void *args ) { struct ISteamUser_SteamUser015_DecompressVoice_params *params = (struct ISteamUser_SteamUser015_DecompressVoice_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->nDesiredSampleRate ); return 0; } @@ -105,7 +105,7 @@ NTSTATUS ISteamUser_SteamUser015_DecompressVoice( void *args ) NTSTATUS ISteamUser_SteamUser015_GetVoiceOptimalSampleRate( void *args ) { struct ISteamUser_SteamUser015_GetVoiceOptimalSampleRate_params *params = (struct ISteamUser_SteamUser015_GetVoiceOptimalSampleRate_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; params->_ret = iface->GetVoiceOptimalSampleRate( ); return 0; } @@ -113,7 +113,7 @@ NTSTATUS ISteamUser_SteamUser015_GetVoiceOptimalSampleRate( void *args ) NTSTATUS ISteamUser_SteamUser015_GetAuthSessionTicket( void *args ) { struct ISteamUser_SteamUser015_GetAuthSessionTicket_params *params = (struct ISteamUser_SteamUser015_GetAuthSessionTicket_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -121,7 +121,7 @@ NTSTATUS ISteamUser_SteamUser015_GetAuthSessionTicket( void *args ) NTSTATUS ISteamUser_SteamUser015_BeginAuthSession( void *args ) { struct ISteamUser_SteamUser015_BeginAuthSession_params *params = (struct ISteamUser_SteamUser015_BeginAuthSession_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); return 0; } @@ -129,7 +129,7 @@ NTSTATUS ISteamUser_SteamUser015_BeginAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser015_EndAuthSession( void *args ) { struct ISteamUser_SteamUser015_EndAuthSession_params *params = (struct ISteamUser_SteamUser015_EndAuthSession_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; iface->EndAuthSession( params->steamID ); return 0; } @@ -137,7 +137,7 @@ NTSTATUS ISteamUser_SteamUser015_EndAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser015_CancelAuthTicket( void *args ) { struct ISteamUser_SteamUser015_CancelAuthTicket_params *params = (struct ISteamUser_SteamUser015_CancelAuthTicket_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; iface->CancelAuthTicket( params->hAuthTicket ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamUser_SteamUser015_CancelAuthTicket( void *args ) NTSTATUS ISteamUser_SteamUser015_UserHasLicenseForApp( void *args ) { struct ISteamUser_SteamUser015_UserHasLicenseForApp_params *params = (struct ISteamUser_SteamUser015_UserHasLicenseForApp_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamUser_SteamUser015_UserHasLicenseForApp( void *args ) NTSTATUS ISteamUser_SteamUser015_BIsBehindNAT( void *args ) { struct ISteamUser_SteamUser015_BIsBehindNAT_params *params = (struct ISteamUser_SteamUser015_BIsBehindNAT_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; params->_ret = iface->BIsBehindNAT( ); return 0; } @@ -161,7 +161,7 @@ NTSTATUS ISteamUser_SteamUser015_BIsBehindNAT( void *args ) NTSTATUS ISteamUser_SteamUser015_AdvertiseGame( void *args ) { struct ISteamUser_SteamUser015_AdvertiseGame_params *params = (struct ISteamUser_SteamUser015_AdvertiseGame_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); return 0; } @@ -169,7 +169,7 @@ NTSTATUS ISteamUser_SteamUser015_AdvertiseGame( void *args ) NTSTATUS ISteamUser_SteamUser015_RequestEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser015_RequestEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser015_RequestEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); return 0; } @@ -177,7 +177,7 @@ NTSTATUS ISteamUser_SteamUser015_RequestEncryptedAppTicket( void *args ) NTSTATUS ISteamUser_SteamUser015_GetEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser015_GetEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser015_GetEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->linux_side; + struct u_ISteamUser_SteamUser015 *iface = (struct u_ISteamUser_SteamUser015 *)params->u_iface; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser016.cpp b/lsteamclient/cppISteamUser_SteamUser016.cpp index 4474cf63..5f6eeba8 100644 --- a/lsteamclient/cppISteamUser_SteamUser016.cpp +++ b/lsteamclient/cppISteamUser_SteamUser016.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser016_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser016_GetHSteamUser_params *params = (struct ISteamUser_SteamUser016_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser016_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser016_BLoggedOn( void *args ) { struct ISteamUser_SteamUser016_BLoggedOn_params *params = (struct ISteamUser_SteamUser016_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser016_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser016_GetSteamID( void *args ) { struct ISteamUser_SteamUser016_GetSteamID_params *params = (struct ISteamUser_SteamUser016_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser016_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser016_InitiateGameConnection( void *args ) { struct ISteamUser_SteamUser016_InitiateGameConnection_params *params = (struct ISteamUser_SteamUser016_InitiateGameConnection_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser016_InitiateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser016_TerminateGameConnection( void *args ) { struct ISteamUser_SteamUser016_TerminateGameConnection_params *params = (struct ISteamUser_SteamUser016_TerminateGameConnection_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser016_TerminateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser016_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser016_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser016_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser016_TrackAppUsageEvent( void *args ) NTSTATUS ISteamUser_SteamUser016_GetUserDataFolder( void *args ) { struct ISteamUser_SteamUser016_GetUserDataFolder_params *params = (struct ISteamUser_SteamUser016_GetUserDataFolder_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); steamclient_unix_path_to_dos_path( params->_ret, params->pchBuffer, params->pchBuffer, params->cubBuffer, 0 ); return 0; @@ -65,7 +65,7 @@ NTSTATUS ISteamUser_SteamUser016_GetUserDataFolder( void *args ) NTSTATUS ISteamUser_SteamUser016_StartVoiceRecording( void *args ) { struct ISteamUser_SteamUser016_StartVoiceRecording_params *params = (struct ISteamUser_SteamUser016_StartVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; iface->StartVoiceRecording( ); return 0; } @@ -73,7 +73,7 @@ NTSTATUS ISteamUser_SteamUser016_StartVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser016_StopVoiceRecording( void *args ) { struct ISteamUser_SteamUser016_StopVoiceRecording_params *params = (struct ISteamUser_SteamUser016_StopVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; iface->StopVoiceRecording( ); return 0; } @@ -81,7 +81,7 @@ NTSTATUS ISteamUser_SteamUser016_StopVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser016_GetAvailableVoice( void *args ) { struct ISteamUser_SteamUser016_GetAvailableVoice_params *params = (struct ISteamUser_SteamUser016_GetAvailableVoice_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed, params->nUncompressedVoiceDesiredSampleRate ); return 0; } @@ -89,7 +89,7 @@ NTSTATUS ISteamUser_SteamUser016_GetAvailableVoice( void *args ) NTSTATUS ISteamUser_SteamUser016_GetVoice( void *args ) { struct ISteamUser_SteamUser016_GetVoice_params *params = (struct ISteamUser_SteamUser016_GetVoice_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; params->_ret = iface->GetVoice( params->bWantCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->bWantUncompressed, params->pUncompressedDestBuffer, params->cbUncompressedDestBufferSize, params->nUncompressBytesWritten, params->nUncompressedVoiceDesiredSampleRate ); return 0; } @@ -97,7 +97,7 @@ NTSTATUS ISteamUser_SteamUser016_GetVoice( void *args ) NTSTATUS ISteamUser_SteamUser016_DecompressVoice( void *args ) { struct ISteamUser_SteamUser016_DecompressVoice_params *params = (struct ISteamUser_SteamUser016_DecompressVoice_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->nDesiredSampleRate ); return 0; } @@ -105,7 +105,7 @@ NTSTATUS ISteamUser_SteamUser016_DecompressVoice( void *args ) NTSTATUS ISteamUser_SteamUser016_GetVoiceOptimalSampleRate( void *args ) { struct ISteamUser_SteamUser016_GetVoiceOptimalSampleRate_params *params = (struct ISteamUser_SteamUser016_GetVoiceOptimalSampleRate_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; params->_ret = iface->GetVoiceOptimalSampleRate( ); return 0; } @@ -113,7 +113,7 @@ NTSTATUS ISteamUser_SteamUser016_GetVoiceOptimalSampleRate( void *args ) NTSTATUS ISteamUser_SteamUser016_GetAuthSessionTicket( void *args ) { struct ISteamUser_SteamUser016_GetAuthSessionTicket_params *params = (struct ISteamUser_SteamUser016_GetAuthSessionTicket_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -121,7 +121,7 @@ NTSTATUS ISteamUser_SteamUser016_GetAuthSessionTicket( void *args ) NTSTATUS ISteamUser_SteamUser016_BeginAuthSession( void *args ) { struct ISteamUser_SteamUser016_BeginAuthSession_params *params = (struct ISteamUser_SteamUser016_BeginAuthSession_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); return 0; } @@ -129,7 +129,7 @@ NTSTATUS ISteamUser_SteamUser016_BeginAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser016_EndAuthSession( void *args ) { struct ISteamUser_SteamUser016_EndAuthSession_params *params = (struct ISteamUser_SteamUser016_EndAuthSession_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; iface->EndAuthSession( params->steamID ); return 0; } @@ -137,7 +137,7 @@ NTSTATUS ISteamUser_SteamUser016_EndAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser016_CancelAuthTicket( void *args ) { struct ISteamUser_SteamUser016_CancelAuthTicket_params *params = (struct ISteamUser_SteamUser016_CancelAuthTicket_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; iface->CancelAuthTicket( params->hAuthTicket ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamUser_SteamUser016_CancelAuthTicket( void *args ) NTSTATUS ISteamUser_SteamUser016_UserHasLicenseForApp( void *args ) { struct ISteamUser_SteamUser016_UserHasLicenseForApp_params *params = (struct ISteamUser_SteamUser016_UserHasLicenseForApp_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamUser_SteamUser016_UserHasLicenseForApp( void *args ) NTSTATUS ISteamUser_SteamUser016_BIsBehindNAT( void *args ) { struct ISteamUser_SteamUser016_BIsBehindNAT_params *params = (struct ISteamUser_SteamUser016_BIsBehindNAT_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; params->_ret = iface->BIsBehindNAT( ); return 0; } @@ -161,7 +161,7 @@ NTSTATUS ISteamUser_SteamUser016_BIsBehindNAT( void *args ) NTSTATUS ISteamUser_SteamUser016_AdvertiseGame( void *args ) { struct ISteamUser_SteamUser016_AdvertiseGame_params *params = (struct ISteamUser_SteamUser016_AdvertiseGame_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); return 0; } @@ -169,7 +169,7 @@ NTSTATUS ISteamUser_SteamUser016_AdvertiseGame( void *args ) NTSTATUS ISteamUser_SteamUser016_RequestEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser016_RequestEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser016_RequestEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); return 0; } @@ -177,7 +177,7 @@ NTSTATUS ISteamUser_SteamUser016_RequestEncryptedAppTicket( void *args ) NTSTATUS ISteamUser_SteamUser016_GetEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser016_GetEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser016_GetEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->linux_side; + struct u_ISteamUser_SteamUser016 *iface = (struct u_ISteamUser_SteamUser016 *)params->u_iface; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser017.cpp b/lsteamclient/cppISteamUser_SteamUser017.cpp index c720d5ee..c2f98330 100644 --- a/lsteamclient/cppISteamUser_SteamUser017.cpp +++ b/lsteamclient/cppISteamUser_SteamUser017.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser017_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser017_GetHSteamUser_params *params = (struct ISteamUser_SteamUser017_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser017_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser017_BLoggedOn( void *args ) { struct ISteamUser_SteamUser017_BLoggedOn_params *params = (struct ISteamUser_SteamUser017_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser017_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser017_GetSteamID( void *args ) { struct ISteamUser_SteamUser017_GetSteamID_params *params = (struct ISteamUser_SteamUser017_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser017_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser017_InitiateGameConnection( void *args ) { struct ISteamUser_SteamUser017_InitiateGameConnection_params *params = (struct ISteamUser_SteamUser017_InitiateGameConnection_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser017_InitiateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser017_TerminateGameConnection( void *args ) { struct ISteamUser_SteamUser017_TerminateGameConnection_params *params = (struct ISteamUser_SteamUser017_TerminateGameConnection_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser017_TerminateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser017_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser017_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser017_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser017_TrackAppUsageEvent( void *args ) NTSTATUS ISteamUser_SteamUser017_GetUserDataFolder( void *args ) { struct ISteamUser_SteamUser017_GetUserDataFolder_params *params = (struct ISteamUser_SteamUser017_GetUserDataFolder_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); steamclient_unix_path_to_dos_path( params->_ret, params->pchBuffer, params->pchBuffer, params->cubBuffer, 0 ); return 0; @@ -65,7 +65,7 @@ NTSTATUS ISteamUser_SteamUser017_GetUserDataFolder( void *args ) NTSTATUS ISteamUser_SteamUser017_StartVoiceRecording( void *args ) { struct ISteamUser_SteamUser017_StartVoiceRecording_params *params = (struct ISteamUser_SteamUser017_StartVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; iface->StartVoiceRecording( ); return 0; } @@ -73,7 +73,7 @@ NTSTATUS ISteamUser_SteamUser017_StartVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser017_StopVoiceRecording( void *args ) { struct ISteamUser_SteamUser017_StopVoiceRecording_params *params = (struct ISteamUser_SteamUser017_StopVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; iface->StopVoiceRecording( ); return 0; } @@ -81,7 +81,7 @@ NTSTATUS ISteamUser_SteamUser017_StopVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser017_GetAvailableVoice( void *args ) { struct ISteamUser_SteamUser017_GetAvailableVoice_params *params = (struct ISteamUser_SteamUser017_GetAvailableVoice_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed, params->nUncompressedVoiceDesiredSampleRate ); return 0; } @@ -89,7 +89,7 @@ NTSTATUS ISteamUser_SteamUser017_GetAvailableVoice( void *args ) NTSTATUS ISteamUser_SteamUser017_GetVoice( void *args ) { struct ISteamUser_SteamUser017_GetVoice_params *params = (struct ISteamUser_SteamUser017_GetVoice_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; params->_ret = iface->GetVoice( params->bWantCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->bWantUncompressed, params->pUncompressedDestBuffer, params->cbUncompressedDestBufferSize, params->nUncompressBytesWritten, params->nUncompressedVoiceDesiredSampleRate ); return 0; } @@ -97,7 +97,7 @@ NTSTATUS ISteamUser_SteamUser017_GetVoice( void *args ) NTSTATUS ISteamUser_SteamUser017_DecompressVoice( void *args ) { struct ISteamUser_SteamUser017_DecompressVoice_params *params = (struct ISteamUser_SteamUser017_DecompressVoice_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->nDesiredSampleRate ); return 0; } @@ -105,7 +105,7 @@ NTSTATUS ISteamUser_SteamUser017_DecompressVoice( void *args ) NTSTATUS ISteamUser_SteamUser017_GetVoiceOptimalSampleRate( void *args ) { struct ISteamUser_SteamUser017_GetVoiceOptimalSampleRate_params *params = (struct ISteamUser_SteamUser017_GetVoiceOptimalSampleRate_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; params->_ret = iface->GetVoiceOptimalSampleRate( ); return 0; } @@ -113,7 +113,7 @@ NTSTATUS ISteamUser_SteamUser017_GetVoiceOptimalSampleRate( void *args ) NTSTATUS ISteamUser_SteamUser017_GetAuthSessionTicket( void *args ) { struct ISteamUser_SteamUser017_GetAuthSessionTicket_params *params = (struct ISteamUser_SteamUser017_GetAuthSessionTicket_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -121,7 +121,7 @@ NTSTATUS ISteamUser_SteamUser017_GetAuthSessionTicket( void *args ) NTSTATUS ISteamUser_SteamUser017_BeginAuthSession( void *args ) { struct ISteamUser_SteamUser017_BeginAuthSession_params *params = (struct ISteamUser_SteamUser017_BeginAuthSession_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); return 0; } @@ -129,7 +129,7 @@ NTSTATUS ISteamUser_SteamUser017_BeginAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser017_EndAuthSession( void *args ) { struct ISteamUser_SteamUser017_EndAuthSession_params *params = (struct ISteamUser_SteamUser017_EndAuthSession_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; iface->EndAuthSession( params->steamID ); return 0; } @@ -137,7 +137,7 @@ NTSTATUS ISteamUser_SteamUser017_EndAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser017_CancelAuthTicket( void *args ) { struct ISteamUser_SteamUser017_CancelAuthTicket_params *params = (struct ISteamUser_SteamUser017_CancelAuthTicket_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; iface->CancelAuthTicket( params->hAuthTicket ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamUser_SteamUser017_CancelAuthTicket( void *args ) NTSTATUS ISteamUser_SteamUser017_UserHasLicenseForApp( void *args ) { struct ISteamUser_SteamUser017_UserHasLicenseForApp_params *params = (struct ISteamUser_SteamUser017_UserHasLicenseForApp_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamUser_SteamUser017_UserHasLicenseForApp( void *args ) NTSTATUS ISteamUser_SteamUser017_BIsBehindNAT( void *args ) { struct ISteamUser_SteamUser017_BIsBehindNAT_params *params = (struct ISteamUser_SteamUser017_BIsBehindNAT_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; params->_ret = iface->BIsBehindNAT( ); return 0; } @@ -161,7 +161,7 @@ NTSTATUS ISteamUser_SteamUser017_BIsBehindNAT( void *args ) NTSTATUS ISteamUser_SteamUser017_AdvertiseGame( void *args ) { struct ISteamUser_SteamUser017_AdvertiseGame_params *params = (struct ISteamUser_SteamUser017_AdvertiseGame_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); return 0; } @@ -169,7 +169,7 @@ NTSTATUS ISteamUser_SteamUser017_AdvertiseGame( void *args ) NTSTATUS ISteamUser_SteamUser017_RequestEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser017_RequestEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser017_RequestEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); return 0; } @@ -177,7 +177,7 @@ NTSTATUS ISteamUser_SteamUser017_RequestEncryptedAppTicket( void *args ) NTSTATUS ISteamUser_SteamUser017_GetEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser017_GetEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser017_GetEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -185,7 +185,7 @@ NTSTATUS ISteamUser_SteamUser017_GetEncryptedAppTicket( void *args ) NTSTATUS ISteamUser_SteamUser017_GetGameBadgeLevel( void *args ) { struct ISteamUser_SteamUser017_GetGameBadgeLevel_params *params = (struct ISteamUser_SteamUser017_GetGameBadgeLevel_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; params->_ret = iface->GetGameBadgeLevel( params->nSeries, params->bFoil ); return 0; } @@ -193,7 +193,7 @@ NTSTATUS ISteamUser_SteamUser017_GetGameBadgeLevel( void *args ) NTSTATUS ISteamUser_SteamUser017_GetPlayerSteamLevel( void *args ) { struct ISteamUser_SteamUser017_GetPlayerSteamLevel_params *params = (struct ISteamUser_SteamUser017_GetPlayerSteamLevel_params *)args; - struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->linux_side; + struct u_ISteamUser_SteamUser017 *iface = (struct u_ISteamUser_SteamUser017 *)params->u_iface; params->_ret = iface->GetPlayerSteamLevel( ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser018.cpp b/lsteamclient/cppISteamUser_SteamUser018.cpp index 95e20bcf..bd5b4a51 100644 --- a/lsteamclient/cppISteamUser_SteamUser018.cpp +++ b/lsteamclient/cppISteamUser_SteamUser018.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser018_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser018_GetHSteamUser_params *params = (struct ISteamUser_SteamUser018_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser018_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser018_BLoggedOn( void *args ) { struct ISteamUser_SteamUser018_BLoggedOn_params *params = (struct ISteamUser_SteamUser018_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser018_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser018_GetSteamID( void *args ) { struct ISteamUser_SteamUser018_GetSteamID_params *params = (struct ISteamUser_SteamUser018_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser018_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser018_InitiateGameConnection( void *args ) { struct ISteamUser_SteamUser018_InitiateGameConnection_params *params = (struct ISteamUser_SteamUser018_InitiateGameConnection_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser018_InitiateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser018_TerminateGameConnection( void *args ) { struct ISteamUser_SteamUser018_TerminateGameConnection_params *params = (struct ISteamUser_SteamUser018_TerminateGameConnection_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser018_TerminateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser018_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser018_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser018_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser018_TrackAppUsageEvent( void *args ) NTSTATUS ISteamUser_SteamUser018_GetUserDataFolder( void *args ) { struct ISteamUser_SteamUser018_GetUserDataFolder_params *params = (struct ISteamUser_SteamUser018_GetUserDataFolder_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); steamclient_unix_path_to_dos_path( params->_ret, params->pchBuffer, params->pchBuffer, params->cubBuffer, 0 ); return 0; @@ -65,7 +65,7 @@ NTSTATUS ISteamUser_SteamUser018_GetUserDataFolder( void *args ) NTSTATUS ISteamUser_SteamUser018_StartVoiceRecording( void *args ) { struct ISteamUser_SteamUser018_StartVoiceRecording_params *params = (struct ISteamUser_SteamUser018_StartVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; iface->StartVoiceRecording( ); return 0; } @@ -73,7 +73,7 @@ NTSTATUS ISteamUser_SteamUser018_StartVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser018_StopVoiceRecording( void *args ) { struct ISteamUser_SteamUser018_StopVoiceRecording_params *params = (struct ISteamUser_SteamUser018_StopVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; iface->StopVoiceRecording( ); return 0; } @@ -81,7 +81,7 @@ NTSTATUS ISteamUser_SteamUser018_StopVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser018_GetAvailableVoice( void *args ) { struct ISteamUser_SteamUser018_GetAvailableVoice_params *params = (struct ISteamUser_SteamUser018_GetAvailableVoice_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed, params->nUncompressedVoiceDesiredSampleRate ); return 0; } @@ -89,7 +89,7 @@ NTSTATUS ISteamUser_SteamUser018_GetAvailableVoice( void *args ) NTSTATUS ISteamUser_SteamUser018_GetVoice( void *args ) { struct ISteamUser_SteamUser018_GetVoice_params *params = (struct ISteamUser_SteamUser018_GetVoice_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; params->_ret = iface->GetVoice( params->bWantCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->bWantUncompressed, params->pUncompressedDestBuffer, params->cbUncompressedDestBufferSize, params->nUncompressBytesWritten, params->nUncompressedVoiceDesiredSampleRate ); return 0; } @@ -97,7 +97,7 @@ NTSTATUS ISteamUser_SteamUser018_GetVoice( void *args ) NTSTATUS ISteamUser_SteamUser018_DecompressVoice( void *args ) { struct ISteamUser_SteamUser018_DecompressVoice_params *params = (struct ISteamUser_SteamUser018_DecompressVoice_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->nDesiredSampleRate ); return 0; } @@ -105,7 +105,7 @@ NTSTATUS ISteamUser_SteamUser018_DecompressVoice( void *args ) NTSTATUS ISteamUser_SteamUser018_GetVoiceOptimalSampleRate( void *args ) { struct ISteamUser_SteamUser018_GetVoiceOptimalSampleRate_params *params = (struct ISteamUser_SteamUser018_GetVoiceOptimalSampleRate_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; params->_ret = iface->GetVoiceOptimalSampleRate( ); return 0; } @@ -113,7 +113,7 @@ NTSTATUS ISteamUser_SteamUser018_GetVoiceOptimalSampleRate( void *args ) NTSTATUS ISteamUser_SteamUser018_GetAuthSessionTicket( void *args ) { struct ISteamUser_SteamUser018_GetAuthSessionTicket_params *params = (struct ISteamUser_SteamUser018_GetAuthSessionTicket_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -121,7 +121,7 @@ NTSTATUS ISteamUser_SteamUser018_GetAuthSessionTicket( void *args ) NTSTATUS ISteamUser_SteamUser018_BeginAuthSession( void *args ) { struct ISteamUser_SteamUser018_BeginAuthSession_params *params = (struct ISteamUser_SteamUser018_BeginAuthSession_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); return 0; } @@ -129,7 +129,7 @@ NTSTATUS ISteamUser_SteamUser018_BeginAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser018_EndAuthSession( void *args ) { struct ISteamUser_SteamUser018_EndAuthSession_params *params = (struct ISteamUser_SteamUser018_EndAuthSession_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; iface->EndAuthSession( params->steamID ); return 0; } @@ -137,7 +137,7 @@ NTSTATUS ISteamUser_SteamUser018_EndAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser018_CancelAuthTicket( void *args ) { struct ISteamUser_SteamUser018_CancelAuthTicket_params *params = (struct ISteamUser_SteamUser018_CancelAuthTicket_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; iface->CancelAuthTicket( params->hAuthTicket ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamUser_SteamUser018_CancelAuthTicket( void *args ) NTSTATUS ISteamUser_SteamUser018_UserHasLicenseForApp( void *args ) { struct ISteamUser_SteamUser018_UserHasLicenseForApp_params *params = (struct ISteamUser_SteamUser018_UserHasLicenseForApp_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamUser_SteamUser018_UserHasLicenseForApp( void *args ) NTSTATUS ISteamUser_SteamUser018_BIsBehindNAT( void *args ) { struct ISteamUser_SteamUser018_BIsBehindNAT_params *params = (struct ISteamUser_SteamUser018_BIsBehindNAT_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; params->_ret = iface->BIsBehindNAT( ); return 0; } @@ -161,7 +161,7 @@ NTSTATUS ISteamUser_SteamUser018_BIsBehindNAT( void *args ) NTSTATUS ISteamUser_SteamUser018_AdvertiseGame( void *args ) { struct ISteamUser_SteamUser018_AdvertiseGame_params *params = (struct ISteamUser_SteamUser018_AdvertiseGame_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); return 0; } @@ -169,7 +169,7 @@ NTSTATUS ISteamUser_SteamUser018_AdvertiseGame( void *args ) NTSTATUS ISteamUser_SteamUser018_RequestEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser018_RequestEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser018_RequestEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); return 0; } @@ -177,7 +177,7 @@ NTSTATUS ISteamUser_SteamUser018_RequestEncryptedAppTicket( void *args ) NTSTATUS ISteamUser_SteamUser018_GetEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser018_GetEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser018_GetEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -185,7 +185,7 @@ NTSTATUS ISteamUser_SteamUser018_GetEncryptedAppTicket( void *args ) NTSTATUS ISteamUser_SteamUser018_GetGameBadgeLevel( void *args ) { struct ISteamUser_SteamUser018_GetGameBadgeLevel_params *params = (struct ISteamUser_SteamUser018_GetGameBadgeLevel_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; params->_ret = iface->GetGameBadgeLevel( params->nSeries, params->bFoil ); return 0; } @@ -193,7 +193,7 @@ NTSTATUS ISteamUser_SteamUser018_GetGameBadgeLevel( void *args ) NTSTATUS ISteamUser_SteamUser018_GetPlayerSteamLevel( void *args ) { struct ISteamUser_SteamUser018_GetPlayerSteamLevel_params *params = (struct ISteamUser_SteamUser018_GetPlayerSteamLevel_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; params->_ret = iface->GetPlayerSteamLevel( ); return 0; } @@ -201,7 +201,7 @@ NTSTATUS ISteamUser_SteamUser018_GetPlayerSteamLevel( void *args ) NTSTATUS ISteamUser_SteamUser018_RequestStoreAuthURL( void *args ) { struct ISteamUser_SteamUser018_RequestStoreAuthURL_params *params = (struct ISteamUser_SteamUser018_RequestStoreAuthURL_params *)args; - struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->linux_side; + struct u_ISteamUser_SteamUser018 *iface = (struct u_ISteamUser_SteamUser018 *)params->u_iface; params->_ret = iface->RequestStoreAuthURL( params->pchRedirectURL ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser019.cpp b/lsteamclient/cppISteamUser_SteamUser019.cpp index 70eb977f..a096259c 100644 --- a/lsteamclient/cppISteamUser_SteamUser019.cpp +++ b/lsteamclient/cppISteamUser_SteamUser019.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser019_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser019_GetHSteamUser_params *params = (struct ISteamUser_SteamUser019_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser019_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser019_BLoggedOn( void *args ) { struct ISteamUser_SteamUser019_BLoggedOn_params *params = (struct ISteamUser_SteamUser019_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser019_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser019_GetSteamID( void *args ) { struct ISteamUser_SteamUser019_GetSteamID_params *params = (struct ISteamUser_SteamUser019_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser019_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser019_InitiateGameConnection( void *args ) { struct ISteamUser_SteamUser019_InitiateGameConnection_params *params = (struct ISteamUser_SteamUser019_InitiateGameConnection_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser019_InitiateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser019_TerminateGameConnection( void *args ) { struct ISteamUser_SteamUser019_TerminateGameConnection_params *params = (struct ISteamUser_SteamUser019_TerminateGameConnection_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser019_TerminateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser019_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser019_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser019_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser019_TrackAppUsageEvent( void *args ) NTSTATUS ISteamUser_SteamUser019_GetUserDataFolder( void *args ) { struct ISteamUser_SteamUser019_GetUserDataFolder_params *params = (struct ISteamUser_SteamUser019_GetUserDataFolder_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); steamclient_unix_path_to_dos_path( params->_ret, params->pchBuffer, params->pchBuffer, params->cubBuffer, 0 ); return 0; @@ -65,7 +65,7 @@ NTSTATUS ISteamUser_SteamUser019_GetUserDataFolder( void *args ) NTSTATUS ISteamUser_SteamUser019_StartVoiceRecording( void *args ) { struct ISteamUser_SteamUser019_StartVoiceRecording_params *params = (struct ISteamUser_SteamUser019_StartVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; iface->StartVoiceRecording( ); return 0; } @@ -73,7 +73,7 @@ NTSTATUS ISteamUser_SteamUser019_StartVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser019_StopVoiceRecording( void *args ) { struct ISteamUser_SteamUser019_StopVoiceRecording_params *params = (struct ISteamUser_SteamUser019_StopVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; iface->StopVoiceRecording( ); return 0; } @@ -81,7 +81,7 @@ NTSTATUS ISteamUser_SteamUser019_StopVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser019_GetAvailableVoice( void *args ) { struct ISteamUser_SteamUser019_GetAvailableVoice_params *params = (struct ISteamUser_SteamUser019_GetAvailableVoice_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed_Deprecated, params->nUncompressedVoiceDesiredSampleRate_Deprecated ); return 0; } @@ -89,7 +89,7 @@ NTSTATUS ISteamUser_SteamUser019_GetAvailableVoice( void *args ) NTSTATUS ISteamUser_SteamUser019_GetVoice( void *args ) { struct ISteamUser_SteamUser019_GetVoice_params *params = (struct ISteamUser_SteamUser019_GetVoice_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->GetVoice( params->bWantCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->bWantUncompressed_Deprecated, params->pUncompressedDestBuffer_Deprecated, params->cbUncompressedDestBufferSize_Deprecated, params->nUncompressBytesWritten_Deprecated, params->nUncompressedVoiceDesiredSampleRate_Deprecated ); return 0; } @@ -97,7 +97,7 @@ NTSTATUS ISteamUser_SteamUser019_GetVoice( void *args ) NTSTATUS ISteamUser_SteamUser019_DecompressVoice( void *args ) { struct ISteamUser_SteamUser019_DecompressVoice_params *params = (struct ISteamUser_SteamUser019_DecompressVoice_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->nDesiredSampleRate ); return 0; } @@ -105,7 +105,7 @@ NTSTATUS ISteamUser_SteamUser019_DecompressVoice( void *args ) NTSTATUS ISteamUser_SteamUser019_GetVoiceOptimalSampleRate( void *args ) { struct ISteamUser_SteamUser019_GetVoiceOptimalSampleRate_params *params = (struct ISteamUser_SteamUser019_GetVoiceOptimalSampleRate_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->GetVoiceOptimalSampleRate( ); return 0; } @@ -113,7 +113,7 @@ NTSTATUS ISteamUser_SteamUser019_GetVoiceOptimalSampleRate( void *args ) NTSTATUS ISteamUser_SteamUser019_GetAuthSessionTicket( void *args ) { struct ISteamUser_SteamUser019_GetAuthSessionTicket_params *params = (struct ISteamUser_SteamUser019_GetAuthSessionTicket_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -121,7 +121,7 @@ NTSTATUS ISteamUser_SteamUser019_GetAuthSessionTicket( void *args ) NTSTATUS ISteamUser_SteamUser019_BeginAuthSession( void *args ) { struct ISteamUser_SteamUser019_BeginAuthSession_params *params = (struct ISteamUser_SteamUser019_BeginAuthSession_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); return 0; } @@ -129,7 +129,7 @@ NTSTATUS ISteamUser_SteamUser019_BeginAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser019_EndAuthSession( void *args ) { struct ISteamUser_SteamUser019_EndAuthSession_params *params = (struct ISteamUser_SteamUser019_EndAuthSession_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; iface->EndAuthSession( params->steamID ); return 0; } @@ -137,7 +137,7 @@ NTSTATUS ISteamUser_SteamUser019_EndAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser019_CancelAuthTicket( void *args ) { struct ISteamUser_SteamUser019_CancelAuthTicket_params *params = (struct ISteamUser_SteamUser019_CancelAuthTicket_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; iface->CancelAuthTicket( params->hAuthTicket ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamUser_SteamUser019_CancelAuthTicket( void *args ) NTSTATUS ISteamUser_SteamUser019_UserHasLicenseForApp( void *args ) { struct ISteamUser_SteamUser019_UserHasLicenseForApp_params *params = (struct ISteamUser_SteamUser019_UserHasLicenseForApp_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamUser_SteamUser019_UserHasLicenseForApp( void *args ) NTSTATUS ISteamUser_SteamUser019_BIsBehindNAT( void *args ) { struct ISteamUser_SteamUser019_BIsBehindNAT_params *params = (struct ISteamUser_SteamUser019_BIsBehindNAT_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->BIsBehindNAT( ); return 0; } @@ -161,7 +161,7 @@ NTSTATUS ISteamUser_SteamUser019_BIsBehindNAT( void *args ) NTSTATUS ISteamUser_SteamUser019_AdvertiseGame( void *args ) { struct ISteamUser_SteamUser019_AdvertiseGame_params *params = (struct ISteamUser_SteamUser019_AdvertiseGame_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); return 0; } @@ -169,7 +169,7 @@ NTSTATUS ISteamUser_SteamUser019_AdvertiseGame( void *args ) NTSTATUS ISteamUser_SteamUser019_RequestEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser019_RequestEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser019_RequestEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); return 0; } @@ -177,7 +177,7 @@ NTSTATUS ISteamUser_SteamUser019_RequestEncryptedAppTicket( void *args ) NTSTATUS ISteamUser_SteamUser019_GetEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser019_GetEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser019_GetEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -185,7 +185,7 @@ NTSTATUS ISteamUser_SteamUser019_GetEncryptedAppTicket( void *args ) NTSTATUS ISteamUser_SteamUser019_GetGameBadgeLevel( void *args ) { struct ISteamUser_SteamUser019_GetGameBadgeLevel_params *params = (struct ISteamUser_SteamUser019_GetGameBadgeLevel_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->GetGameBadgeLevel( params->nSeries, params->bFoil ); return 0; } @@ -193,7 +193,7 @@ NTSTATUS ISteamUser_SteamUser019_GetGameBadgeLevel( void *args ) NTSTATUS ISteamUser_SteamUser019_GetPlayerSteamLevel( void *args ) { struct ISteamUser_SteamUser019_GetPlayerSteamLevel_params *params = (struct ISteamUser_SteamUser019_GetPlayerSteamLevel_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->GetPlayerSteamLevel( ); return 0; } @@ -201,7 +201,7 @@ NTSTATUS ISteamUser_SteamUser019_GetPlayerSteamLevel( void *args ) NTSTATUS ISteamUser_SteamUser019_RequestStoreAuthURL( void *args ) { struct ISteamUser_SteamUser019_RequestStoreAuthURL_params *params = (struct ISteamUser_SteamUser019_RequestStoreAuthURL_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->RequestStoreAuthURL( params->pchRedirectURL ); return 0; } @@ -209,7 +209,7 @@ NTSTATUS ISteamUser_SteamUser019_RequestStoreAuthURL( void *args ) NTSTATUS ISteamUser_SteamUser019_BIsPhoneVerified( void *args ) { struct ISteamUser_SteamUser019_BIsPhoneVerified_params *params = (struct ISteamUser_SteamUser019_BIsPhoneVerified_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->BIsPhoneVerified( ); return 0; } @@ -217,7 +217,7 @@ NTSTATUS ISteamUser_SteamUser019_BIsPhoneVerified( void *args ) NTSTATUS ISteamUser_SteamUser019_BIsTwoFactorEnabled( void *args ) { struct ISteamUser_SteamUser019_BIsTwoFactorEnabled_params *params = (struct ISteamUser_SteamUser019_BIsTwoFactorEnabled_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->BIsTwoFactorEnabled( ); return 0; } @@ -225,7 +225,7 @@ NTSTATUS ISteamUser_SteamUser019_BIsTwoFactorEnabled( void *args ) NTSTATUS ISteamUser_SteamUser019_BIsPhoneIdentifying( void *args ) { struct ISteamUser_SteamUser019_BIsPhoneIdentifying_params *params = (struct ISteamUser_SteamUser019_BIsPhoneIdentifying_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->BIsPhoneIdentifying( ); return 0; } @@ -233,7 +233,7 @@ NTSTATUS ISteamUser_SteamUser019_BIsPhoneIdentifying( void *args ) NTSTATUS ISteamUser_SteamUser019_BIsPhoneRequiringVerification( void *args ) { struct ISteamUser_SteamUser019_BIsPhoneRequiringVerification_params *params = (struct ISteamUser_SteamUser019_BIsPhoneRequiringVerification_params *)args; - struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->linux_side; + struct u_ISteamUser_SteamUser019 *iface = (struct u_ISteamUser_SteamUser019 *)params->u_iface; params->_ret = iface->BIsPhoneRequiringVerification( ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser020.cpp b/lsteamclient/cppISteamUser_SteamUser020.cpp index a62213c3..49feb419 100644 --- a/lsteamclient/cppISteamUser_SteamUser020.cpp +++ b/lsteamclient/cppISteamUser_SteamUser020.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser020_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser020_GetHSteamUser_params *params = (struct ISteamUser_SteamUser020_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser020_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser020_BLoggedOn( void *args ) { struct ISteamUser_SteamUser020_BLoggedOn_params *params = (struct ISteamUser_SteamUser020_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser020_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser020_GetSteamID( void *args ) { struct ISteamUser_SteamUser020_GetSteamID_params *params = (struct ISteamUser_SteamUser020_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser020_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser020_InitiateGameConnection( void *args ) { struct ISteamUser_SteamUser020_InitiateGameConnection_params *params = (struct ISteamUser_SteamUser020_InitiateGameConnection_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->InitiateGameConnection( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser020_InitiateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser020_TerminateGameConnection( void *args ) { struct ISteamUser_SteamUser020_TerminateGameConnection_params *params = (struct ISteamUser_SteamUser020_TerminateGameConnection_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; iface->TerminateGameConnection( params->unIPServer, params->usPortServer ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser020_TerminateGameConnection( void *args ) NTSTATUS ISteamUser_SteamUser020_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser020_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser020_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser020_TrackAppUsageEvent( void *args ) NTSTATUS ISteamUser_SteamUser020_GetUserDataFolder( void *args ) { struct ISteamUser_SteamUser020_GetUserDataFolder_params *params = (struct ISteamUser_SteamUser020_GetUserDataFolder_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); steamclient_unix_path_to_dos_path( params->_ret, params->pchBuffer, params->pchBuffer, params->cubBuffer, 0 ); return 0; @@ -65,7 +65,7 @@ NTSTATUS ISteamUser_SteamUser020_GetUserDataFolder( void *args ) NTSTATUS ISteamUser_SteamUser020_StartVoiceRecording( void *args ) { struct ISteamUser_SteamUser020_StartVoiceRecording_params *params = (struct ISteamUser_SteamUser020_StartVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; iface->StartVoiceRecording( ); return 0; } @@ -73,7 +73,7 @@ NTSTATUS ISteamUser_SteamUser020_StartVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser020_StopVoiceRecording( void *args ) { struct ISteamUser_SteamUser020_StopVoiceRecording_params *params = (struct ISteamUser_SteamUser020_StopVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; iface->StopVoiceRecording( ); return 0; } @@ -81,7 +81,7 @@ NTSTATUS ISteamUser_SteamUser020_StopVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser020_GetAvailableVoice( void *args ) { struct ISteamUser_SteamUser020_GetAvailableVoice_params *params = (struct ISteamUser_SteamUser020_GetAvailableVoice_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed_Deprecated, params->nUncompressedVoiceDesiredSampleRate_Deprecated ); return 0; } @@ -89,7 +89,7 @@ NTSTATUS ISteamUser_SteamUser020_GetAvailableVoice( void *args ) NTSTATUS ISteamUser_SteamUser020_GetVoice( void *args ) { struct ISteamUser_SteamUser020_GetVoice_params *params = (struct ISteamUser_SteamUser020_GetVoice_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->GetVoice( params->bWantCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->bWantUncompressed_Deprecated, params->pUncompressedDestBuffer_Deprecated, params->cbUncompressedDestBufferSize_Deprecated, params->nUncompressBytesWritten_Deprecated, params->nUncompressedVoiceDesiredSampleRate_Deprecated ); return 0; } @@ -97,7 +97,7 @@ NTSTATUS ISteamUser_SteamUser020_GetVoice( void *args ) NTSTATUS ISteamUser_SteamUser020_DecompressVoice( void *args ) { struct ISteamUser_SteamUser020_DecompressVoice_params *params = (struct ISteamUser_SteamUser020_DecompressVoice_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->nDesiredSampleRate ); return 0; } @@ -105,7 +105,7 @@ NTSTATUS ISteamUser_SteamUser020_DecompressVoice( void *args ) NTSTATUS ISteamUser_SteamUser020_GetVoiceOptimalSampleRate( void *args ) { struct ISteamUser_SteamUser020_GetVoiceOptimalSampleRate_params *params = (struct ISteamUser_SteamUser020_GetVoiceOptimalSampleRate_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->GetVoiceOptimalSampleRate( ); return 0; } @@ -113,7 +113,7 @@ NTSTATUS ISteamUser_SteamUser020_GetVoiceOptimalSampleRate( void *args ) NTSTATUS ISteamUser_SteamUser020_GetAuthSessionTicket( void *args ) { struct ISteamUser_SteamUser020_GetAuthSessionTicket_params *params = (struct ISteamUser_SteamUser020_GetAuthSessionTicket_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -121,7 +121,7 @@ NTSTATUS ISteamUser_SteamUser020_GetAuthSessionTicket( void *args ) NTSTATUS ISteamUser_SteamUser020_BeginAuthSession( void *args ) { struct ISteamUser_SteamUser020_BeginAuthSession_params *params = (struct ISteamUser_SteamUser020_BeginAuthSession_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); return 0; } @@ -129,7 +129,7 @@ NTSTATUS ISteamUser_SteamUser020_BeginAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser020_EndAuthSession( void *args ) { struct ISteamUser_SteamUser020_EndAuthSession_params *params = (struct ISteamUser_SteamUser020_EndAuthSession_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; iface->EndAuthSession( params->steamID ); return 0; } @@ -137,7 +137,7 @@ NTSTATUS ISteamUser_SteamUser020_EndAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser020_CancelAuthTicket( void *args ) { struct ISteamUser_SteamUser020_CancelAuthTicket_params *params = (struct ISteamUser_SteamUser020_CancelAuthTicket_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; iface->CancelAuthTicket( params->hAuthTicket ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamUser_SteamUser020_CancelAuthTicket( void *args ) NTSTATUS ISteamUser_SteamUser020_UserHasLicenseForApp( void *args ) { struct ISteamUser_SteamUser020_UserHasLicenseForApp_params *params = (struct ISteamUser_SteamUser020_UserHasLicenseForApp_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamUser_SteamUser020_UserHasLicenseForApp( void *args ) NTSTATUS ISteamUser_SteamUser020_BIsBehindNAT( void *args ) { struct ISteamUser_SteamUser020_BIsBehindNAT_params *params = (struct ISteamUser_SteamUser020_BIsBehindNAT_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->BIsBehindNAT( ); return 0; } @@ -161,7 +161,7 @@ NTSTATUS ISteamUser_SteamUser020_BIsBehindNAT( void *args ) NTSTATUS ISteamUser_SteamUser020_AdvertiseGame( void *args ) { struct ISteamUser_SteamUser020_AdvertiseGame_params *params = (struct ISteamUser_SteamUser020_AdvertiseGame_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); return 0; } @@ -169,7 +169,7 @@ NTSTATUS ISteamUser_SteamUser020_AdvertiseGame( void *args ) NTSTATUS ISteamUser_SteamUser020_RequestEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser020_RequestEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser020_RequestEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); return 0; } @@ -177,7 +177,7 @@ NTSTATUS ISteamUser_SteamUser020_RequestEncryptedAppTicket( void *args ) NTSTATUS ISteamUser_SteamUser020_GetEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser020_GetEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser020_GetEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -185,7 +185,7 @@ NTSTATUS ISteamUser_SteamUser020_GetEncryptedAppTicket( void *args ) NTSTATUS ISteamUser_SteamUser020_GetGameBadgeLevel( void *args ) { struct ISteamUser_SteamUser020_GetGameBadgeLevel_params *params = (struct ISteamUser_SteamUser020_GetGameBadgeLevel_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->GetGameBadgeLevel( params->nSeries, params->bFoil ); return 0; } @@ -193,7 +193,7 @@ NTSTATUS ISteamUser_SteamUser020_GetGameBadgeLevel( void *args ) NTSTATUS ISteamUser_SteamUser020_GetPlayerSteamLevel( void *args ) { struct ISteamUser_SteamUser020_GetPlayerSteamLevel_params *params = (struct ISteamUser_SteamUser020_GetPlayerSteamLevel_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->GetPlayerSteamLevel( ); return 0; } @@ -201,7 +201,7 @@ NTSTATUS ISteamUser_SteamUser020_GetPlayerSteamLevel( void *args ) NTSTATUS ISteamUser_SteamUser020_RequestStoreAuthURL( void *args ) { struct ISteamUser_SteamUser020_RequestStoreAuthURL_params *params = (struct ISteamUser_SteamUser020_RequestStoreAuthURL_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->RequestStoreAuthURL( params->pchRedirectURL ); return 0; } @@ -209,7 +209,7 @@ NTSTATUS ISteamUser_SteamUser020_RequestStoreAuthURL( void *args ) NTSTATUS ISteamUser_SteamUser020_BIsPhoneVerified( void *args ) { struct ISteamUser_SteamUser020_BIsPhoneVerified_params *params = (struct ISteamUser_SteamUser020_BIsPhoneVerified_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->BIsPhoneVerified( ); return 0; } @@ -217,7 +217,7 @@ NTSTATUS ISteamUser_SteamUser020_BIsPhoneVerified( void *args ) NTSTATUS ISteamUser_SteamUser020_BIsTwoFactorEnabled( void *args ) { struct ISteamUser_SteamUser020_BIsTwoFactorEnabled_params *params = (struct ISteamUser_SteamUser020_BIsTwoFactorEnabled_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->BIsTwoFactorEnabled( ); return 0; } @@ -225,7 +225,7 @@ NTSTATUS ISteamUser_SteamUser020_BIsTwoFactorEnabled( void *args ) NTSTATUS ISteamUser_SteamUser020_BIsPhoneIdentifying( void *args ) { struct ISteamUser_SteamUser020_BIsPhoneIdentifying_params *params = (struct ISteamUser_SteamUser020_BIsPhoneIdentifying_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->BIsPhoneIdentifying( ); return 0; } @@ -233,7 +233,7 @@ NTSTATUS ISteamUser_SteamUser020_BIsPhoneIdentifying( void *args ) NTSTATUS ISteamUser_SteamUser020_BIsPhoneRequiringVerification( void *args ) { struct ISteamUser_SteamUser020_BIsPhoneRequiringVerification_params *params = (struct ISteamUser_SteamUser020_BIsPhoneRequiringVerification_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->BIsPhoneRequiringVerification( ); return 0; } @@ -241,7 +241,7 @@ NTSTATUS ISteamUser_SteamUser020_BIsPhoneRequiringVerification( void *args ) NTSTATUS ISteamUser_SteamUser020_GetMarketEligibility( void *args ) { struct ISteamUser_SteamUser020_GetMarketEligibility_params *params = (struct ISteamUser_SteamUser020_GetMarketEligibility_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->GetMarketEligibility( ); return 0; } @@ -249,7 +249,7 @@ NTSTATUS ISteamUser_SteamUser020_GetMarketEligibility( void *args ) NTSTATUS ISteamUser_SteamUser020_GetDurationControl( void *args ) { struct ISteamUser_SteamUser020_GetDurationControl_params *params = (struct ISteamUser_SteamUser020_GetDurationControl_params *)args; - struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->linux_side; + struct u_ISteamUser_SteamUser020 *iface = (struct u_ISteamUser_SteamUser020 *)params->u_iface; params->_ret = iface->GetDurationControl( ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser021.cpp b/lsteamclient/cppISteamUser_SteamUser021.cpp index ec431521..271b1e40 100644 --- a/lsteamclient/cppISteamUser_SteamUser021.cpp +++ b/lsteamclient/cppISteamUser_SteamUser021.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser021_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser021_GetHSteamUser_params *params = (struct ISteamUser_SteamUser021_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser021_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser021_BLoggedOn( void *args ) { struct ISteamUser_SteamUser021_BLoggedOn_params *params = (struct ISteamUser_SteamUser021_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser021_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser021_GetSteamID( void *args ) { struct ISteamUser_SteamUser021_GetSteamID_params *params = (struct ISteamUser_SteamUser021_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser021_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED( void *args ) { struct ISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED_params *params = (struct ISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->InitiateGameConnection_DEPRECATED( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED( void *args ) NTSTATUS ISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED( void *args ) { struct ISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED_params *params = (struct ISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; iface->TerminateGameConnection_DEPRECATED( params->unIPServer, params->usPortServer ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED( void *args NTSTATUS ISteamUser_SteamUser021_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser021_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser021_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser021_TrackAppUsageEvent( void *args ) NTSTATUS ISteamUser_SteamUser021_GetUserDataFolder( void *args ) { struct ISteamUser_SteamUser021_GetUserDataFolder_params *params = (struct ISteamUser_SteamUser021_GetUserDataFolder_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); steamclient_unix_path_to_dos_path( params->_ret, params->pchBuffer, params->pchBuffer, params->cubBuffer, 0 ); return 0; @@ -65,7 +65,7 @@ NTSTATUS ISteamUser_SteamUser021_GetUserDataFolder( void *args ) NTSTATUS ISteamUser_SteamUser021_StartVoiceRecording( void *args ) { struct ISteamUser_SteamUser021_StartVoiceRecording_params *params = (struct ISteamUser_SteamUser021_StartVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; iface->StartVoiceRecording( ); return 0; } @@ -73,7 +73,7 @@ NTSTATUS ISteamUser_SteamUser021_StartVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser021_StopVoiceRecording( void *args ) { struct ISteamUser_SteamUser021_StopVoiceRecording_params *params = (struct ISteamUser_SteamUser021_StopVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; iface->StopVoiceRecording( ); return 0; } @@ -81,7 +81,7 @@ NTSTATUS ISteamUser_SteamUser021_StopVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser021_GetAvailableVoice( void *args ) { struct ISteamUser_SteamUser021_GetAvailableVoice_params *params = (struct ISteamUser_SteamUser021_GetAvailableVoice_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed_Deprecated, params->nUncompressedVoiceDesiredSampleRate_Deprecated ); return 0; } @@ -89,7 +89,7 @@ NTSTATUS ISteamUser_SteamUser021_GetAvailableVoice( void *args ) NTSTATUS ISteamUser_SteamUser021_GetVoice( void *args ) { struct ISteamUser_SteamUser021_GetVoice_params *params = (struct ISteamUser_SteamUser021_GetVoice_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->GetVoice( params->bWantCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->bWantUncompressed_Deprecated, params->pUncompressedDestBuffer_Deprecated, params->cbUncompressedDestBufferSize_Deprecated, params->nUncompressBytesWritten_Deprecated, params->nUncompressedVoiceDesiredSampleRate_Deprecated ); return 0; } @@ -97,7 +97,7 @@ NTSTATUS ISteamUser_SteamUser021_GetVoice( void *args ) NTSTATUS ISteamUser_SteamUser021_DecompressVoice( void *args ) { struct ISteamUser_SteamUser021_DecompressVoice_params *params = (struct ISteamUser_SteamUser021_DecompressVoice_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->nDesiredSampleRate ); return 0; } @@ -105,7 +105,7 @@ NTSTATUS ISteamUser_SteamUser021_DecompressVoice( void *args ) NTSTATUS ISteamUser_SteamUser021_GetVoiceOptimalSampleRate( void *args ) { struct ISteamUser_SteamUser021_GetVoiceOptimalSampleRate_params *params = (struct ISteamUser_SteamUser021_GetVoiceOptimalSampleRate_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->GetVoiceOptimalSampleRate( ); return 0; } @@ -113,7 +113,7 @@ NTSTATUS ISteamUser_SteamUser021_GetVoiceOptimalSampleRate( void *args ) NTSTATUS ISteamUser_SteamUser021_GetAuthSessionTicket( void *args ) { struct ISteamUser_SteamUser021_GetAuthSessionTicket_params *params = (struct ISteamUser_SteamUser021_GetAuthSessionTicket_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -121,7 +121,7 @@ NTSTATUS ISteamUser_SteamUser021_GetAuthSessionTicket( void *args ) NTSTATUS ISteamUser_SteamUser021_BeginAuthSession( void *args ) { struct ISteamUser_SteamUser021_BeginAuthSession_params *params = (struct ISteamUser_SteamUser021_BeginAuthSession_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); return 0; } @@ -129,7 +129,7 @@ NTSTATUS ISteamUser_SteamUser021_BeginAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser021_EndAuthSession( void *args ) { struct ISteamUser_SteamUser021_EndAuthSession_params *params = (struct ISteamUser_SteamUser021_EndAuthSession_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; iface->EndAuthSession( params->steamID ); return 0; } @@ -137,7 +137,7 @@ NTSTATUS ISteamUser_SteamUser021_EndAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser021_CancelAuthTicket( void *args ) { struct ISteamUser_SteamUser021_CancelAuthTicket_params *params = (struct ISteamUser_SteamUser021_CancelAuthTicket_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; iface->CancelAuthTicket( params->hAuthTicket ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamUser_SteamUser021_CancelAuthTicket( void *args ) NTSTATUS ISteamUser_SteamUser021_UserHasLicenseForApp( void *args ) { struct ISteamUser_SteamUser021_UserHasLicenseForApp_params *params = (struct ISteamUser_SteamUser021_UserHasLicenseForApp_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamUser_SteamUser021_UserHasLicenseForApp( void *args ) NTSTATUS ISteamUser_SteamUser021_BIsBehindNAT( void *args ) { struct ISteamUser_SteamUser021_BIsBehindNAT_params *params = (struct ISteamUser_SteamUser021_BIsBehindNAT_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->BIsBehindNAT( ); return 0; } @@ -161,7 +161,7 @@ NTSTATUS ISteamUser_SteamUser021_BIsBehindNAT( void *args ) NTSTATUS ISteamUser_SteamUser021_AdvertiseGame( void *args ) { struct ISteamUser_SteamUser021_AdvertiseGame_params *params = (struct ISteamUser_SteamUser021_AdvertiseGame_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); return 0; } @@ -169,7 +169,7 @@ NTSTATUS ISteamUser_SteamUser021_AdvertiseGame( void *args ) NTSTATUS ISteamUser_SteamUser021_RequestEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser021_RequestEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser021_RequestEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); return 0; } @@ -177,7 +177,7 @@ NTSTATUS ISteamUser_SteamUser021_RequestEncryptedAppTicket( void *args ) NTSTATUS ISteamUser_SteamUser021_GetEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser021_GetEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser021_GetEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -185,7 +185,7 @@ NTSTATUS ISteamUser_SteamUser021_GetEncryptedAppTicket( void *args ) NTSTATUS ISteamUser_SteamUser021_GetGameBadgeLevel( void *args ) { struct ISteamUser_SteamUser021_GetGameBadgeLevel_params *params = (struct ISteamUser_SteamUser021_GetGameBadgeLevel_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->GetGameBadgeLevel( params->nSeries, params->bFoil ); return 0; } @@ -193,7 +193,7 @@ NTSTATUS ISteamUser_SteamUser021_GetGameBadgeLevel( void *args ) NTSTATUS ISteamUser_SteamUser021_GetPlayerSteamLevel( void *args ) { struct ISteamUser_SteamUser021_GetPlayerSteamLevel_params *params = (struct ISteamUser_SteamUser021_GetPlayerSteamLevel_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->GetPlayerSteamLevel( ); return 0; } @@ -201,7 +201,7 @@ NTSTATUS ISteamUser_SteamUser021_GetPlayerSteamLevel( void *args ) NTSTATUS ISteamUser_SteamUser021_RequestStoreAuthURL( void *args ) { struct ISteamUser_SteamUser021_RequestStoreAuthURL_params *params = (struct ISteamUser_SteamUser021_RequestStoreAuthURL_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->RequestStoreAuthURL( params->pchRedirectURL ); return 0; } @@ -209,7 +209,7 @@ NTSTATUS ISteamUser_SteamUser021_RequestStoreAuthURL( void *args ) NTSTATUS ISteamUser_SteamUser021_BIsPhoneVerified( void *args ) { struct ISteamUser_SteamUser021_BIsPhoneVerified_params *params = (struct ISteamUser_SteamUser021_BIsPhoneVerified_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->BIsPhoneVerified( ); return 0; } @@ -217,7 +217,7 @@ NTSTATUS ISteamUser_SteamUser021_BIsPhoneVerified( void *args ) NTSTATUS ISteamUser_SteamUser021_BIsTwoFactorEnabled( void *args ) { struct ISteamUser_SteamUser021_BIsTwoFactorEnabled_params *params = (struct ISteamUser_SteamUser021_BIsTwoFactorEnabled_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->BIsTwoFactorEnabled( ); return 0; } @@ -225,7 +225,7 @@ NTSTATUS ISteamUser_SteamUser021_BIsTwoFactorEnabled( void *args ) NTSTATUS ISteamUser_SteamUser021_BIsPhoneIdentifying( void *args ) { struct ISteamUser_SteamUser021_BIsPhoneIdentifying_params *params = (struct ISteamUser_SteamUser021_BIsPhoneIdentifying_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->BIsPhoneIdentifying( ); return 0; } @@ -233,7 +233,7 @@ NTSTATUS ISteamUser_SteamUser021_BIsPhoneIdentifying( void *args ) NTSTATUS ISteamUser_SteamUser021_BIsPhoneRequiringVerification( void *args ) { struct ISteamUser_SteamUser021_BIsPhoneRequiringVerification_params *params = (struct ISteamUser_SteamUser021_BIsPhoneRequiringVerification_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->BIsPhoneRequiringVerification( ); return 0; } @@ -241,7 +241,7 @@ NTSTATUS ISteamUser_SteamUser021_BIsPhoneRequiringVerification( void *args ) NTSTATUS ISteamUser_SteamUser021_GetMarketEligibility( void *args ) { struct ISteamUser_SteamUser021_GetMarketEligibility_params *params = (struct ISteamUser_SteamUser021_GetMarketEligibility_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->GetMarketEligibility( ); return 0; } @@ -249,7 +249,7 @@ NTSTATUS ISteamUser_SteamUser021_GetMarketEligibility( void *args ) NTSTATUS ISteamUser_SteamUser021_GetDurationControl( void *args ) { struct ISteamUser_SteamUser021_GetDurationControl_params *params = (struct ISteamUser_SteamUser021_GetDurationControl_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->GetDurationControl( ); return 0; } @@ -257,7 +257,7 @@ NTSTATUS ISteamUser_SteamUser021_GetDurationControl( void *args ) NTSTATUS ISteamUser_SteamUser021_BSetDurationControlOnlineState( void *args ) { struct ISteamUser_SteamUser021_BSetDurationControlOnlineState_params *params = (struct ISteamUser_SteamUser021_BSetDurationControlOnlineState_params *)args; - struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->linux_side; + struct u_ISteamUser_SteamUser021 *iface = (struct u_ISteamUser_SteamUser021 *)params->u_iface; params->_ret = iface->BSetDurationControlOnlineState( params->eNewState ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser022.cpp b/lsteamclient/cppISteamUser_SteamUser022.cpp index 3ff4a38c..6cae2b9e 100644 --- a/lsteamclient/cppISteamUser_SteamUser022.cpp +++ b/lsteamclient/cppISteamUser_SteamUser022.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser022_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser022_GetHSteamUser_params *params = (struct ISteamUser_SteamUser022_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser022_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser022_BLoggedOn( void *args ) { struct ISteamUser_SteamUser022_BLoggedOn_params *params = (struct ISteamUser_SteamUser022_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser022_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser022_GetSteamID( void *args ) { struct ISteamUser_SteamUser022_GetSteamID_params *params = (struct ISteamUser_SteamUser022_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser022_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED( void *args ) { struct ISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED_params *params = (struct ISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->InitiateGameConnection_DEPRECATED( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED( void *args ) NTSTATUS ISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED( void *args ) { struct ISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED_params *params = (struct ISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; iface->TerminateGameConnection_DEPRECATED( params->unIPServer, params->usPortServer ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED( void *args NTSTATUS ISteamUser_SteamUser022_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser022_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser022_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser022_TrackAppUsageEvent( void *args ) NTSTATUS ISteamUser_SteamUser022_GetUserDataFolder( void *args ) { struct ISteamUser_SteamUser022_GetUserDataFolder_params *params = (struct ISteamUser_SteamUser022_GetUserDataFolder_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); steamclient_unix_path_to_dos_path( params->_ret, params->pchBuffer, params->pchBuffer, params->cubBuffer, 0 ); return 0; @@ -65,7 +65,7 @@ NTSTATUS ISteamUser_SteamUser022_GetUserDataFolder( void *args ) NTSTATUS ISteamUser_SteamUser022_StartVoiceRecording( void *args ) { struct ISteamUser_SteamUser022_StartVoiceRecording_params *params = (struct ISteamUser_SteamUser022_StartVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; iface->StartVoiceRecording( ); return 0; } @@ -73,7 +73,7 @@ NTSTATUS ISteamUser_SteamUser022_StartVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser022_StopVoiceRecording( void *args ) { struct ISteamUser_SteamUser022_StopVoiceRecording_params *params = (struct ISteamUser_SteamUser022_StopVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; iface->StopVoiceRecording( ); return 0; } @@ -81,7 +81,7 @@ NTSTATUS ISteamUser_SteamUser022_StopVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser022_GetAvailableVoice( void *args ) { struct ISteamUser_SteamUser022_GetAvailableVoice_params *params = (struct ISteamUser_SteamUser022_GetAvailableVoice_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed_Deprecated, params->nUncompressedVoiceDesiredSampleRate_Deprecated ); return 0; } @@ -89,7 +89,7 @@ NTSTATUS ISteamUser_SteamUser022_GetAvailableVoice( void *args ) NTSTATUS ISteamUser_SteamUser022_GetVoice( void *args ) { struct ISteamUser_SteamUser022_GetVoice_params *params = (struct ISteamUser_SteamUser022_GetVoice_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->GetVoice( params->bWantCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->bWantUncompressed_Deprecated, params->pUncompressedDestBuffer_Deprecated, params->cbUncompressedDestBufferSize_Deprecated, params->nUncompressBytesWritten_Deprecated, params->nUncompressedVoiceDesiredSampleRate_Deprecated ); return 0; } @@ -97,7 +97,7 @@ NTSTATUS ISteamUser_SteamUser022_GetVoice( void *args ) NTSTATUS ISteamUser_SteamUser022_DecompressVoice( void *args ) { struct ISteamUser_SteamUser022_DecompressVoice_params *params = (struct ISteamUser_SteamUser022_DecompressVoice_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->nDesiredSampleRate ); return 0; } @@ -105,7 +105,7 @@ NTSTATUS ISteamUser_SteamUser022_DecompressVoice( void *args ) NTSTATUS ISteamUser_SteamUser022_GetVoiceOptimalSampleRate( void *args ) { struct ISteamUser_SteamUser022_GetVoiceOptimalSampleRate_params *params = (struct ISteamUser_SteamUser022_GetVoiceOptimalSampleRate_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->GetVoiceOptimalSampleRate( ); return 0; } @@ -113,7 +113,7 @@ NTSTATUS ISteamUser_SteamUser022_GetVoiceOptimalSampleRate( void *args ) NTSTATUS ISteamUser_SteamUser022_GetAuthSessionTicket( void *args ) { struct ISteamUser_SteamUser022_GetAuthSessionTicket_params *params = (struct ISteamUser_SteamUser022_GetAuthSessionTicket_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket, params->pSteamNetworkingIdentity ); return 0; } @@ -121,7 +121,7 @@ NTSTATUS ISteamUser_SteamUser022_GetAuthSessionTicket( void *args ) NTSTATUS ISteamUser_SteamUser022_BeginAuthSession( void *args ) { struct ISteamUser_SteamUser022_BeginAuthSession_params *params = (struct ISteamUser_SteamUser022_BeginAuthSession_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); return 0; } @@ -129,7 +129,7 @@ NTSTATUS ISteamUser_SteamUser022_BeginAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser022_EndAuthSession( void *args ) { struct ISteamUser_SteamUser022_EndAuthSession_params *params = (struct ISteamUser_SteamUser022_EndAuthSession_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; iface->EndAuthSession( params->steamID ); return 0; } @@ -137,7 +137,7 @@ NTSTATUS ISteamUser_SteamUser022_EndAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser022_CancelAuthTicket( void *args ) { struct ISteamUser_SteamUser022_CancelAuthTicket_params *params = (struct ISteamUser_SteamUser022_CancelAuthTicket_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; iface->CancelAuthTicket( params->hAuthTicket ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamUser_SteamUser022_CancelAuthTicket( void *args ) NTSTATUS ISteamUser_SteamUser022_UserHasLicenseForApp( void *args ) { struct ISteamUser_SteamUser022_UserHasLicenseForApp_params *params = (struct ISteamUser_SteamUser022_UserHasLicenseForApp_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamUser_SteamUser022_UserHasLicenseForApp( void *args ) NTSTATUS ISteamUser_SteamUser022_BIsBehindNAT( void *args ) { struct ISteamUser_SteamUser022_BIsBehindNAT_params *params = (struct ISteamUser_SteamUser022_BIsBehindNAT_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->BIsBehindNAT( ); return 0; } @@ -161,7 +161,7 @@ NTSTATUS ISteamUser_SteamUser022_BIsBehindNAT( void *args ) NTSTATUS ISteamUser_SteamUser022_AdvertiseGame( void *args ) { struct ISteamUser_SteamUser022_AdvertiseGame_params *params = (struct ISteamUser_SteamUser022_AdvertiseGame_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); return 0; } @@ -169,7 +169,7 @@ NTSTATUS ISteamUser_SteamUser022_AdvertiseGame( void *args ) NTSTATUS ISteamUser_SteamUser022_RequestEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser022_RequestEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser022_RequestEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); return 0; } @@ -177,7 +177,7 @@ NTSTATUS ISteamUser_SteamUser022_RequestEncryptedAppTicket( void *args ) NTSTATUS ISteamUser_SteamUser022_GetEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser022_GetEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser022_GetEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -185,7 +185,7 @@ NTSTATUS ISteamUser_SteamUser022_GetEncryptedAppTicket( void *args ) NTSTATUS ISteamUser_SteamUser022_GetGameBadgeLevel( void *args ) { struct ISteamUser_SteamUser022_GetGameBadgeLevel_params *params = (struct ISteamUser_SteamUser022_GetGameBadgeLevel_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->GetGameBadgeLevel( params->nSeries, params->bFoil ); return 0; } @@ -193,7 +193,7 @@ NTSTATUS ISteamUser_SteamUser022_GetGameBadgeLevel( void *args ) NTSTATUS ISteamUser_SteamUser022_GetPlayerSteamLevel( void *args ) { struct ISteamUser_SteamUser022_GetPlayerSteamLevel_params *params = (struct ISteamUser_SteamUser022_GetPlayerSteamLevel_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->GetPlayerSteamLevel( ); return 0; } @@ -201,7 +201,7 @@ NTSTATUS ISteamUser_SteamUser022_GetPlayerSteamLevel( void *args ) NTSTATUS ISteamUser_SteamUser022_RequestStoreAuthURL( void *args ) { struct ISteamUser_SteamUser022_RequestStoreAuthURL_params *params = (struct ISteamUser_SteamUser022_RequestStoreAuthURL_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->RequestStoreAuthURL( params->pchRedirectURL ); return 0; } @@ -209,7 +209,7 @@ NTSTATUS ISteamUser_SteamUser022_RequestStoreAuthURL( void *args ) NTSTATUS ISteamUser_SteamUser022_BIsPhoneVerified( void *args ) { struct ISteamUser_SteamUser022_BIsPhoneVerified_params *params = (struct ISteamUser_SteamUser022_BIsPhoneVerified_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->BIsPhoneVerified( ); return 0; } @@ -217,7 +217,7 @@ NTSTATUS ISteamUser_SteamUser022_BIsPhoneVerified( void *args ) NTSTATUS ISteamUser_SteamUser022_BIsTwoFactorEnabled( void *args ) { struct ISteamUser_SteamUser022_BIsTwoFactorEnabled_params *params = (struct ISteamUser_SteamUser022_BIsTwoFactorEnabled_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->BIsTwoFactorEnabled( ); return 0; } @@ -225,7 +225,7 @@ NTSTATUS ISteamUser_SteamUser022_BIsTwoFactorEnabled( void *args ) NTSTATUS ISteamUser_SteamUser022_BIsPhoneIdentifying( void *args ) { struct ISteamUser_SteamUser022_BIsPhoneIdentifying_params *params = (struct ISteamUser_SteamUser022_BIsPhoneIdentifying_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->BIsPhoneIdentifying( ); return 0; } @@ -233,7 +233,7 @@ NTSTATUS ISteamUser_SteamUser022_BIsPhoneIdentifying( void *args ) NTSTATUS ISteamUser_SteamUser022_BIsPhoneRequiringVerification( void *args ) { struct ISteamUser_SteamUser022_BIsPhoneRequiringVerification_params *params = (struct ISteamUser_SteamUser022_BIsPhoneRequiringVerification_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->BIsPhoneRequiringVerification( ); return 0; } @@ -241,7 +241,7 @@ NTSTATUS ISteamUser_SteamUser022_BIsPhoneRequiringVerification( void *args ) NTSTATUS ISteamUser_SteamUser022_GetMarketEligibility( void *args ) { struct ISteamUser_SteamUser022_GetMarketEligibility_params *params = (struct ISteamUser_SteamUser022_GetMarketEligibility_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->GetMarketEligibility( ); return 0; } @@ -249,7 +249,7 @@ NTSTATUS ISteamUser_SteamUser022_GetMarketEligibility( void *args ) NTSTATUS ISteamUser_SteamUser022_GetDurationControl( void *args ) { struct ISteamUser_SteamUser022_GetDurationControl_params *params = (struct ISteamUser_SteamUser022_GetDurationControl_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->GetDurationControl( ); return 0; } @@ -257,7 +257,7 @@ NTSTATUS ISteamUser_SteamUser022_GetDurationControl( void *args ) NTSTATUS ISteamUser_SteamUser022_BSetDurationControlOnlineState( void *args ) { struct ISteamUser_SteamUser022_BSetDurationControlOnlineState_params *params = (struct ISteamUser_SteamUser022_BSetDurationControlOnlineState_params *)args; - struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->linux_side; + struct u_ISteamUser_SteamUser022 *iface = (struct u_ISteamUser_SteamUser022 *)params->u_iface; params->_ret = iface->BSetDurationControlOnlineState( params->eNewState ); return 0; } diff --git a/lsteamclient/cppISteamUser_SteamUser023.cpp b/lsteamclient/cppISteamUser_SteamUser023.cpp index 62cfafd5..1e270f7f 100644 --- a/lsteamclient/cppISteamUser_SteamUser023.cpp +++ b/lsteamclient/cppISteamUser_SteamUser023.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUser_SteamUser023_GetHSteamUser( void *args ) { struct ISteamUser_SteamUser023_GetHSteamUser_params *params = (struct ISteamUser_SteamUser023_GetHSteamUser_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->GetHSteamUser( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUser_SteamUser023_GetHSteamUser( void *args ) NTSTATUS ISteamUser_SteamUser023_BLoggedOn( void *args ) { struct ISteamUser_SteamUser023_BLoggedOn_params *params = (struct ISteamUser_SteamUser023_BLoggedOn_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->BLoggedOn( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUser_SteamUser023_BLoggedOn( void *args ) NTSTATUS ISteamUser_SteamUser023_GetSteamID( void *args ) { struct ISteamUser_SteamUser023_GetSteamID_params *params = (struct ISteamUser_SteamUser023_GetSteamID_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; *params->_ret = iface->GetSteamID( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUser_SteamUser023_GetSteamID( void *args ) NTSTATUS ISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED( void *args ) { struct ISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED_params *params = (struct ISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->InitiateGameConnection_DEPRECATED( params->pAuthBlob, params->cbMaxAuthBlob, params->steamIDGameServer, params->unIPServer, params->usPortServer, params->bSecure ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED( void *args ) NTSTATUS ISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED( void *args ) { struct ISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED_params *params = (struct ISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; iface->TerminateGameConnection_DEPRECATED( params->unIPServer, params->usPortServer ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED( void *args NTSTATUS ISteamUser_SteamUser023_TrackAppUsageEvent( void *args ) { struct ISteamUser_SteamUser023_TrackAppUsageEvent_params *params = (struct ISteamUser_SteamUser023_TrackAppUsageEvent_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; iface->TrackAppUsageEvent( params->gameID, params->eAppUsageEvent, params->pchExtraInfo ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUser_SteamUser023_TrackAppUsageEvent( void *args ) NTSTATUS ISteamUser_SteamUser023_GetUserDataFolder( void *args ) { struct ISteamUser_SteamUser023_GetUserDataFolder_params *params = (struct ISteamUser_SteamUser023_GetUserDataFolder_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->GetUserDataFolder( params->pchBuffer, params->cubBuffer ); steamclient_unix_path_to_dos_path( params->_ret, params->pchBuffer, params->pchBuffer, params->cubBuffer, 0 ); return 0; @@ -65,7 +65,7 @@ NTSTATUS ISteamUser_SteamUser023_GetUserDataFolder( void *args ) NTSTATUS ISteamUser_SteamUser023_StartVoiceRecording( void *args ) { struct ISteamUser_SteamUser023_StartVoiceRecording_params *params = (struct ISteamUser_SteamUser023_StartVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; iface->StartVoiceRecording( ); return 0; } @@ -73,7 +73,7 @@ NTSTATUS ISteamUser_SteamUser023_StartVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser023_StopVoiceRecording( void *args ) { struct ISteamUser_SteamUser023_StopVoiceRecording_params *params = (struct ISteamUser_SteamUser023_StopVoiceRecording_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; iface->StopVoiceRecording( ); return 0; } @@ -81,7 +81,7 @@ NTSTATUS ISteamUser_SteamUser023_StopVoiceRecording( void *args ) NTSTATUS ISteamUser_SteamUser023_GetAvailableVoice( void *args ) { struct ISteamUser_SteamUser023_GetAvailableVoice_params *params = (struct ISteamUser_SteamUser023_GetAvailableVoice_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->GetAvailableVoice( params->pcbCompressed, params->pcbUncompressed_Deprecated, params->nUncompressedVoiceDesiredSampleRate_Deprecated ); return 0; } @@ -89,7 +89,7 @@ NTSTATUS ISteamUser_SteamUser023_GetAvailableVoice( void *args ) NTSTATUS ISteamUser_SteamUser023_GetVoice( void *args ) { struct ISteamUser_SteamUser023_GetVoice_params *params = (struct ISteamUser_SteamUser023_GetVoice_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->GetVoice( params->bWantCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->bWantUncompressed_Deprecated, params->pUncompressedDestBuffer_Deprecated, params->cbUncompressedDestBufferSize_Deprecated, params->nUncompressBytesWritten_Deprecated, params->nUncompressedVoiceDesiredSampleRate_Deprecated ); return 0; } @@ -97,7 +97,7 @@ NTSTATUS ISteamUser_SteamUser023_GetVoice( void *args ) NTSTATUS ISteamUser_SteamUser023_DecompressVoice( void *args ) { struct ISteamUser_SteamUser023_DecompressVoice_params *params = (struct ISteamUser_SteamUser023_DecompressVoice_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->DecompressVoice( params->pCompressed, params->cbCompressed, params->pDestBuffer, params->cbDestBufferSize, params->nBytesWritten, params->nDesiredSampleRate ); return 0; } @@ -105,7 +105,7 @@ NTSTATUS ISteamUser_SteamUser023_DecompressVoice( void *args ) NTSTATUS ISteamUser_SteamUser023_GetVoiceOptimalSampleRate( void *args ) { struct ISteamUser_SteamUser023_GetVoiceOptimalSampleRate_params *params = (struct ISteamUser_SteamUser023_GetVoiceOptimalSampleRate_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->GetVoiceOptimalSampleRate( ); return 0; } @@ -113,7 +113,7 @@ NTSTATUS ISteamUser_SteamUser023_GetVoiceOptimalSampleRate( void *args ) NTSTATUS ISteamUser_SteamUser023_GetAuthSessionTicket( void *args ) { struct ISteamUser_SteamUser023_GetAuthSessionTicket_params *params = (struct ISteamUser_SteamUser023_GetAuthSessionTicket_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->GetAuthSessionTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket, params->pSteamNetworkingIdentity ); return 0; } @@ -121,7 +121,7 @@ NTSTATUS ISteamUser_SteamUser023_GetAuthSessionTicket( void *args ) NTSTATUS ISteamUser_SteamUser023_GetAuthTicketForWebApi( void *args ) { struct ISteamUser_SteamUser023_GetAuthTicketForWebApi_params *params = (struct ISteamUser_SteamUser023_GetAuthTicketForWebApi_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->GetAuthTicketForWebApi( params->pchIdentity ); return 0; } @@ -129,7 +129,7 @@ NTSTATUS ISteamUser_SteamUser023_GetAuthTicketForWebApi( void *args ) NTSTATUS ISteamUser_SteamUser023_BeginAuthSession( void *args ) { struct ISteamUser_SteamUser023_BeginAuthSession_params *params = (struct ISteamUser_SteamUser023_BeginAuthSession_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->BeginAuthSession( params->pAuthTicket, params->cbAuthTicket, params->steamID ); return 0; } @@ -137,7 +137,7 @@ NTSTATUS ISteamUser_SteamUser023_BeginAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser023_EndAuthSession( void *args ) { struct ISteamUser_SteamUser023_EndAuthSession_params *params = (struct ISteamUser_SteamUser023_EndAuthSession_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; iface->EndAuthSession( params->steamID ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamUser_SteamUser023_EndAuthSession( void *args ) NTSTATUS ISteamUser_SteamUser023_CancelAuthTicket( void *args ) { struct ISteamUser_SteamUser023_CancelAuthTicket_params *params = (struct ISteamUser_SteamUser023_CancelAuthTicket_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; iface->CancelAuthTicket( params->hAuthTicket ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamUser_SteamUser023_CancelAuthTicket( void *args ) NTSTATUS ISteamUser_SteamUser023_UserHasLicenseForApp( void *args ) { struct ISteamUser_SteamUser023_UserHasLicenseForApp_params *params = (struct ISteamUser_SteamUser023_UserHasLicenseForApp_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->UserHasLicenseForApp( params->steamID, params->appID ); return 0; } @@ -161,7 +161,7 @@ NTSTATUS ISteamUser_SteamUser023_UserHasLicenseForApp( void *args ) NTSTATUS ISteamUser_SteamUser023_BIsBehindNAT( void *args ) { struct ISteamUser_SteamUser023_BIsBehindNAT_params *params = (struct ISteamUser_SteamUser023_BIsBehindNAT_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->BIsBehindNAT( ); return 0; } @@ -169,7 +169,7 @@ NTSTATUS ISteamUser_SteamUser023_BIsBehindNAT( void *args ) NTSTATUS ISteamUser_SteamUser023_AdvertiseGame( void *args ) { struct ISteamUser_SteamUser023_AdvertiseGame_params *params = (struct ISteamUser_SteamUser023_AdvertiseGame_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; iface->AdvertiseGame( params->steamIDGameServer, params->unIPServer, params->usPortServer ); return 0; } @@ -177,7 +177,7 @@ NTSTATUS ISteamUser_SteamUser023_AdvertiseGame( void *args ) NTSTATUS ISteamUser_SteamUser023_RequestEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser023_RequestEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser023_RequestEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->RequestEncryptedAppTicket( params->pDataToInclude, params->cbDataToInclude ); return 0; } @@ -185,7 +185,7 @@ NTSTATUS ISteamUser_SteamUser023_RequestEncryptedAppTicket( void *args ) NTSTATUS ISteamUser_SteamUser023_GetEncryptedAppTicket( void *args ) { struct ISteamUser_SteamUser023_GetEncryptedAppTicket_params *params = (struct ISteamUser_SteamUser023_GetEncryptedAppTicket_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->GetEncryptedAppTicket( params->pTicket, params->cbMaxTicket, params->pcbTicket ); return 0; } @@ -193,7 +193,7 @@ NTSTATUS ISteamUser_SteamUser023_GetEncryptedAppTicket( void *args ) NTSTATUS ISteamUser_SteamUser023_GetGameBadgeLevel( void *args ) { struct ISteamUser_SteamUser023_GetGameBadgeLevel_params *params = (struct ISteamUser_SteamUser023_GetGameBadgeLevel_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->GetGameBadgeLevel( params->nSeries, params->bFoil ); return 0; } @@ -201,7 +201,7 @@ NTSTATUS ISteamUser_SteamUser023_GetGameBadgeLevel( void *args ) NTSTATUS ISteamUser_SteamUser023_GetPlayerSteamLevel( void *args ) { struct ISteamUser_SteamUser023_GetPlayerSteamLevel_params *params = (struct ISteamUser_SteamUser023_GetPlayerSteamLevel_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->GetPlayerSteamLevel( ); return 0; } @@ -209,7 +209,7 @@ NTSTATUS ISteamUser_SteamUser023_GetPlayerSteamLevel( void *args ) NTSTATUS ISteamUser_SteamUser023_RequestStoreAuthURL( void *args ) { struct ISteamUser_SteamUser023_RequestStoreAuthURL_params *params = (struct ISteamUser_SteamUser023_RequestStoreAuthURL_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->RequestStoreAuthURL( params->pchRedirectURL ); return 0; } @@ -217,7 +217,7 @@ NTSTATUS ISteamUser_SteamUser023_RequestStoreAuthURL( void *args ) NTSTATUS ISteamUser_SteamUser023_BIsPhoneVerified( void *args ) { struct ISteamUser_SteamUser023_BIsPhoneVerified_params *params = (struct ISteamUser_SteamUser023_BIsPhoneVerified_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->BIsPhoneVerified( ); return 0; } @@ -225,7 +225,7 @@ NTSTATUS ISteamUser_SteamUser023_BIsPhoneVerified( void *args ) NTSTATUS ISteamUser_SteamUser023_BIsTwoFactorEnabled( void *args ) { struct ISteamUser_SteamUser023_BIsTwoFactorEnabled_params *params = (struct ISteamUser_SteamUser023_BIsTwoFactorEnabled_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->BIsTwoFactorEnabled( ); return 0; } @@ -233,7 +233,7 @@ NTSTATUS ISteamUser_SteamUser023_BIsTwoFactorEnabled( void *args ) NTSTATUS ISteamUser_SteamUser023_BIsPhoneIdentifying( void *args ) { struct ISteamUser_SteamUser023_BIsPhoneIdentifying_params *params = (struct ISteamUser_SteamUser023_BIsPhoneIdentifying_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->BIsPhoneIdentifying( ); return 0; } @@ -241,7 +241,7 @@ NTSTATUS ISteamUser_SteamUser023_BIsPhoneIdentifying( void *args ) NTSTATUS ISteamUser_SteamUser023_BIsPhoneRequiringVerification( void *args ) { struct ISteamUser_SteamUser023_BIsPhoneRequiringVerification_params *params = (struct ISteamUser_SteamUser023_BIsPhoneRequiringVerification_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->BIsPhoneRequiringVerification( ); return 0; } @@ -249,7 +249,7 @@ NTSTATUS ISteamUser_SteamUser023_BIsPhoneRequiringVerification( void *args ) NTSTATUS ISteamUser_SteamUser023_GetMarketEligibility( void *args ) { struct ISteamUser_SteamUser023_GetMarketEligibility_params *params = (struct ISteamUser_SteamUser023_GetMarketEligibility_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->GetMarketEligibility( ); return 0; } @@ -257,7 +257,7 @@ NTSTATUS ISteamUser_SteamUser023_GetMarketEligibility( void *args ) NTSTATUS ISteamUser_SteamUser023_GetDurationControl( void *args ) { struct ISteamUser_SteamUser023_GetDurationControl_params *params = (struct ISteamUser_SteamUser023_GetDurationControl_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->GetDurationControl( ); return 0; } @@ -265,7 +265,7 @@ NTSTATUS ISteamUser_SteamUser023_GetDurationControl( void *args ) NTSTATUS ISteamUser_SteamUser023_BSetDurationControlOnlineState( void *args ) { struct ISteamUser_SteamUser023_BSetDurationControlOnlineState_params *params = (struct ISteamUser_SteamUser023_BSetDurationControlOnlineState_params *)args; - struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->linux_side; + struct u_ISteamUser_SteamUser023 *iface = (struct u_ISteamUser_SteamUser023 *)params->u_iface; params->_ret = iface->BSetDurationControlOnlineState( params->eNewState ); return 0; } diff --git a/lsteamclient/cppISteamUtils_SteamUtils002.cpp b/lsteamclient/cppISteamUtils_SteamUtils002.cpp index 0bf5f137..d691dff5 100644 --- a/lsteamclient/cppISteamUtils_SteamUtils002.cpp +++ b/lsteamclient/cppISteamUtils_SteamUtils002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUtils_SteamUtils002_GetSecondsSinceAppActive( void *args ) { struct ISteamUtils_SteamUtils002_GetSecondsSinceAppActive_params *params = (struct ISteamUtils_SteamUtils002_GetSecondsSinceAppActive_params *)args; - struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->linux_side; + struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->u_iface; params->_ret = iface->GetSecondsSinceAppActive( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUtils_SteamUtils002_GetSecondsSinceAppActive( void *args ) NTSTATUS ISteamUtils_SteamUtils002_GetSecondsSinceComputerActive( void *args ) { struct ISteamUtils_SteamUtils002_GetSecondsSinceComputerActive_params *params = (struct ISteamUtils_SteamUtils002_GetSecondsSinceComputerActive_params *)args; - struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->linux_side; + struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->u_iface; params->_ret = iface->GetSecondsSinceComputerActive( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUtils_SteamUtils002_GetSecondsSinceComputerActive( void *args ) NTSTATUS ISteamUtils_SteamUtils002_GetConnectedUniverse( void *args ) { struct ISteamUtils_SteamUtils002_GetConnectedUniverse_params *params = (struct ISteamUtils_SteamUtils002_GetConnectedUniverse_params *)args; - struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->linux_side; + struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->u_iface; params->_ret = iface->GetConnectedUniverse( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUtils_SteamUtils002_GetConnectedUniverse( void *args ) NTSTATUS ISteamUtils_SteamUtils002_GetServerRealTime( void *args ) { struct ISteamUtils_SteamUtils002_GetServerRealTime_params *params = (struct ISteamUtils_SteamUtils002_GetServerRealTime_params *)args; - struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->linux_side; + struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->u_iface; params->_ret = iface->GetServerRealTime( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUtils_SteamUtils002_GetServerRealTime( void *args ) NTSTATUS ISteamUtils_SteamUtils002_GetIPCountry( void *args ) { struct ISteamUtils_SteamUtils002_GetIPCountry_params *params = (struct ISteamUtils_SteamUtils002_GetIPCountry_params *)args; - struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->linux_side; + struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->u_iface; params->_ret = iface->GetIPCountry( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUtils_SteamUtils002_GetIPCountry( void *args ) NTSTATUS ISteamUtils_SteamUtils002_GetImageSize( void *args ) { struct ISteamUtils_SteamUtils002_GetImageSize_params *params = (struct ISteamUtils_SteamUtils002_GetImageSize_params *)args; - struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->linux_side; + struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->u_iface; params->_ret = iface->GetImageSize( params->iImage, params->pnWidth, params->pnHeight ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUtils_SteamUtils002_GetImageSize( void *args ) NTSTATUS ISteamUtils_SteamUtils002_GetImageRGBA( void *args ) { struct ISteamUtils_SteamUtils002_GetImageRGBA_params *params = (struct ISteamUtils_SteamUtils002_GetImageRGBA_params *)args; - struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->linux_side; + struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->u_iface; params->_ret = iface->GetImageRGBA( params->iImage, params->pubDest, params->nDestBufferSize ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUtils_SteamUtils002_GetImageRGBA( void *args ) NTSTATUS ISteamUtils_SteamUtils002_GetCSERIPPort( void *args ) { struct ISteamUtils_SteamUtils002_GetCSERIPPort_params *params = (struct ISteamUtils_SteamUtils002_GetCSERIPPort_params *)args; - struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->linux_side; + struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->u_iface; params->_ret = iface->GetCSERIPPort( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUtils_SteamUtils002_GetCSERIPPort( void *args ) NTSTATUS ISteamUtils_SteamUtils002_GetCurrentBatteryPower( void *args ) { struct ISteamUtils_SteamUtils002_GetCurrentBatteryPower_params *params = (struct ISteamUtils_SteamUtils002_GetCurrentBatteryPower_params *)args; - struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->linux_side; + struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->u_iface; params->_ret = iface->GetCurrentBatteryPower( ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUtils_SteamUtils002_GetCurrentBatteryPower( void *args ) NTSTATUS ISteamUtils_SteamUtils002_GetAppID( void *args ) { struct ISteamUtils_SteamUtils002_GetAppID_params *params = (struct ISteamUtils_SteamUtils002_GetAppID_params *)args; - struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->linux_side; + struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->u_iface; params->_ret = iface->GetAppID( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUtils_SteamUtils002_GetAppID( void *args ) NTSTATUS ISteamUtils_SteamUtils002_SetOverlayNotificationPosition( void *args ) { struct ISteamUtils_SteamUtils002_SetOverlayNotificationPosition_params *params = (struct ISteamUtils_SteamUtils002_SetOverlayNotificationPosition_params *)args; - struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->linux_side; + struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->u_iface; iface->SetOverlayNotificationPosition( params->eNotificationPosition ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUtils_SteamUtils002_SetOverlayNotificationPosition( void *args ) NTSTATUS ISteamUtils_SteamUtils002_IsAPICallCompleted( void *args ) { struct ISteamUtils_SteamUtils002_IsAPICallCompleted_params *params = (struct ISteamUtils_SteamUtils002_IsAPICallCompleted_params *)args; - struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->linux_side; + struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->u_iface; params->_ret = iface->IsAPICallCompleted( params->hSteamAPICall, params->pbFailed ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUtils_SteamUtils002_IsAPICallCompleted( void *args ) NTSTATUS ISteamUtils_SteamUtils002_GetAPICallFailureReason( void *args ) { struct ISteamUtils_SteamUtils002_GetAPICallFailureReason_params *params = (struct ISteamUtils_SteamUtils002_GetAPICallFailureReason_params *)args; - struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->linux_side; + struct u_ISteamUtils_SteamUtils002 *iface = (struct u_ISteamUtils_SteamUtils002 *)params->u_iface; params->_ret = iface->GetAPICallFailureReason( params->hSteamAPICall ); return 0; } diff --git a/lsteamclient/cppISteamUtils_SteamUtils004.cpp b/lsteamclient/cppISteamUtils_SteamUtils004.cpp index 107aad71..edfe3898 100644 --- a/lsteamclient/cppISteamUtils_SteamUtils004.cpp +++ b/lsteamclient/cppISteamUtils_SteamUtils004.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUtils_SteamUtils004_GetSecondsSinceAppActive( void *args ) { struct ISteamUtils_SteamUtils004_GetSecondsSinceAppActive_params *params = (struct ISteamUtils_SteamUtils004_GetSecondsSinceAppActive_params *)args; - struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->linux_side; + struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->u_iface; params->_ret = iface->GetSecondsSinceAppActive( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUtils_SteamUtils004_GetSecondsSinceAppActive( void *args ) NTSTATUS ISteamUtils_SteamUtils004_GetSecondsSinceComputerActive( void *args ) { struct ISteamUtils_SteamUtils004_GetSecondsSinceComputerActive_params *params = (struct ISteamUtils_SteamUtils004_GetSecondsSinceComputerActive_params *)args; - struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->linux_side; + struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->u_iface; params->_ret = iface->GetSecondsSinceComputerActive( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUtils_SteamUtils004_GetSecondsSinceComputerActive( void *args ) NTSTATUS ISteamUtils_SteamUtils004_GetConnectedUniverse( void *args ) { struct ISteamUtils_SteamUtils004_GetConnectedUniverse_params *params = (struct ISteamUtils_SteamUtils004_GetConnectedUniverse_params *)args; - struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->linux_side; + struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->u_iface; params->_ret = iface->GetConnectedUniverse( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUtils_SteamUtils004_GetConnectedUniverse( void *args ) NTSTATUS ISteamUtils_SteamUtils004_GetServerRealTime( void *args ) { struct ISteamUtils_SteamUtils004_GetServerRealTime_params *params = (struct ISteamUtils_SteamUtils004_GetServerRealTime_params *)args; - struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->linux_side; + struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->u_iface; params->_ret = iface->GetServerRealTime( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUtils_SteamUtils004_GetServerRealTime( void *args ) NTSTATUS ISteamUtils_SteamUtils004_GetIPCountry( void *args ) { struct ISteamUtils_SteamUtils004_GetIPCountry_params *params = (struct ISteamUtils_SteamUtils004_GetIPCountry_params *)args; - struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->linux_side; + struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->u_iface; params->_ret = iface->GetIPCountry( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUtils_SteamUtils004_GetIPCountry( void *args ) NTSTATUS ISteamUtils_SteamUtils004_GetImageSize( void *args ) { struct ISteamUtils_SteamUtils004_GetImageSize_params *params = (struct ISteamUtils_SteamUtils004_GetImageSize_params *)args; - struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->linux_side; + struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->u_iface; params->_ret = iface->GetImageSize( params->iImage, params->pnWidth, params->pnHeight ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUtils_SteamUtils004_GetImageSize( void *args ) NTSTATUS ISteamUtils_SteamUtils004_GetImageRGBA( void *args ) { struct ISteamUtils_SteamUtils004_GetImageRGBA_params *params = (struct ISteamUtils_SteamUtils004_GetImageRGBA_params *)args; - struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->linux_side; + struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->u_iface; params->_ret = iface->GetImageRGBA( params->iImage, params->pubDest, params->nDestBufferSize ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUtils_SteamUtils004_GetImageRGBA( void *args ) NTSTATUS ISteamUtils_SteamUtils004_GetCSERIPPort( void *args ) { struct ISteamUtils_SteamUtils004_GetCSERIPPort_params *params = (struct ISteamUtils_SteamUtils004_GetCSERIPPort_params *)args; - struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->linux_side; + struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->u_iface; params->_ret = iface->GetCSERIPPort( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUtils_SteamUtils004_GetCSERIPPort( void *args ) NTSTATUS ISteamUtils_SteamUtils004_GetCurrentBatteryPower( void *args ) { struct ISteamUtils_SteamUtils004_GetCurrentBatteryPower_params *params = (struct ISteamUtils_SteamUtils004_GetCurrentBatteryPower_params *)args; - struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->linux_side; + struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->u_iface; params->_ret = iface->GetCurrentBatteryPower( ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUtils_SteamUtils004_GetCurrentBatteryPower( void *args ) NTSTATUS ISteamUtils_SteamUtils004_GetAppID( void *args ) { struct ISteamUtils_SteamUtils004_GetAppID_params *params = (struct ISteamUtils_SteamUtils004_GetAppID_params *)args; - struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->linux_side; + struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->u_iface; params->_ret = iface->GetAppID( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUtils_SteamUtils004_GetAppID( void *args ) NTSTATUS ISteamUtils_SteamUtils004_SetOverlayNotificationPosition( void *args ) { struct ISteamUtils_SteamUtils004_SetOverlayNotificationPosition_params *params = (struct ISteamUtils_SteamUtils004_SetOverlayNotificationPosition_params *)args; - struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->linux_side; + struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->u_iface; iface->SetOverlayNotificationPosition( params->eNotificationPosition ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUtils_SteamUtils004_SetOverlayNotificationPosition( void *args ) NTSTATUS ISteamUtils_SteamUtils004_IsAPICallCompleted( void *args ) { struct ISteamUtils_SteamUtils004_IsAPICallCompleted_params *params = (struct ISteamUtils_SteamUtils004_IsAPICallCompleted_params *)args; - struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->linux_side; + struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->u_iface; params->_ret = iface->IsAPICallCompleted( params->hSteamAPICall, params->pbFailed ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUtils_SteamUtils004_IsAPICallCompleted( void *args ) NTSTATUS ISteamUtils_SteamUtils004_GetAPICallFailureReason( void *args ) { struct ISteamUtils_SteamUtils004_GetAPICallFailureReason_params *params = (struct ISteamUtils_SteamUtils004_GetAPICallFailureReason_params *)args; - struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->linux_side; + struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->u_iface; params->_ret = iface->GetAPICallFailureReason( params->hSteamAPICall ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUtils_SteamUtils004_GetAPICallFailureReason( void *args ) NTSTATUS ISteamUtils_SteamUtils004_RunFrame( void *args ) { struct ISteamUtils_SteamUtils004_RunFrame_params *params = (struct ISteamUtils_SteamUtils004_RunFrame_params *)args; - struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->linux_side; + struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUtils_SteamUtils004_RunFrame( void *args ) NTSTATUS ISteamUtils_SteamUtils004_GetIPCCallCount( void *args ) { struct ISteamUtils_SteamUtils004_GetIPCCallCount_params *params = (struct ISteamUtils_SteamUtils004_GetIPCCallCount_params *)args; - struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->linux_side; + struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUtils_SteamUtils004_GetIPCCallCount( void *args ) NTSTATUS ISteamUtils_SteamUtils004_SetWarningMessageHook( void *args ) { struct ISteamUtils_SteamUtils004_SetWarningMessageHook_params *params = (struct ISteamUtils_SteamUtils004_SetWarningMessageHook_params *)args; - struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->linux_side; + struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -137,7 +137,7 @@ NTSTATUS ISteamUtils_SteamUtils004_SetWarningMessageHook( void *args ) NTSTATUS ISteamUtils_SteamUtils004_IsOverlayEnabled( void *args ) { struct ISteamUtils_SteamUtils004_IsOverlayEnabled_params *params = (struct ISteamUtils_SteamUtils004_IsOverlayEnabled_params *)args; - struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->linux_side; + struct u_ISteamUtils_SteamUtils004 *iface = (struct u_ISteamUtils_SteamUtils004 *)params->u_iface; params->_ret = iface->IsOverlayEnabled( ); return 0; } diff --git a/lsteamclient/cppISteamUtils_SteamUtils005.cpp b/lsteamclient/cppISteamUtils_SteamUtils005.cpp index 95b808f0..15a2f2fa 100644 --- a/lsteamclient/cppISteamUtils_SteamUtils005.cpp +++ b/lsteamclient/cppISteamUtils_SteamUtils005.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUtils_SteamUtils005_GetSecondsSinceAppActive( void *args ) { struct ISteamUtils_SteamUtils005_GetSecondsSinceAppActive_params *params = (struct ISteamUtils_SteamUtils005_GetSecondsSinceAppActive_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; params->_ret = iface->GetSecondsSinceAppActive( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUtils_SteamUtils005_GetSecondsSinceAppActive( void *args ) NTSTATUS ISteamUtils_SteamUtils005_GetSecondsSinceComputerActive( void *args ) { struct ISteamUtils_SteamUtils005_GetSecondsSinceComputerActive_params *params = (struct ISteamUtils_SteamUtils005_GetSecondsSinceComputerActive_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; params->_ret = iface->GetSecondsSinceComputerActive( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUtils_SteamUtils005_GetSecondsSinceComputerActive( void *args ) NTSTATUS ISteamUtils_SteamUtils005_GetConnectedUniverse( void *args ) { struct ISteamUtils_SteamUtils005_GetConnectedUniverse_params *params = (struct ISteamUtils_SteamUtils005_GetConnectedUniverse_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; params->_ret = iface->GetConnectedUniverse( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUtils_SteamUtils005_GetConnectedUniverse( void *args ) NTSTATUS ISteamUtils_SteamUtils005_GetServerRealTime( void *args ) { struct ISteamUtils_SteamUtils005_GetServerRealTime_params *params = (struct ISteamUtils_SteamUtils005_GetServerRealTime_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; params->_ret = iface->GetServerRealTime( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUtils_SteamUtils005_GetServerRealTime( void *args ) NTSTATUS ISteamUtils_SteamUtils005_GetIPCountry( void *args ) { struct ISteamUtils_SteamUtils005_GetIPCountry_params *params = (struct ISteamUtils_SteamUtils005_GetIPCountry_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; params->_ret = iface->GetIPCountry( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUtils_SteamUtils005_GetIPCountry( void *args ) NTSTATUS ISteamUtils_SteamUtils005_GetImageSize( void *args ) { struct ISteamUtils_SteamUtils005_GetImageSize_params *params = (struct ISteamUtils_SteamUtils005_GetImageSize_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; params->_ret = iface->GetImageSize( params->iImage, params->pnWidth, params->pnHeight ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUtils_SteamUtils005_GetImageSize( void *args ) NTSTATUS ISteamUtils_SteamUtils005_GetImageRGBA( void *args ) { struct ISteamUtils_SteamUtils005_GetImageRGBA_params *params = (struct ISteamUtils_SteamUtils005_GetImageRGBA_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; params->_ret = iface->GetImageRGBA( params->iImage, params->pubDest, params->nDestBufferSize ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUtils_SteamUtils005_GetImageRGBA( void *args ) NTSTATUS ISteamUtils_SteamUtils005_GetCSERIPPort( void *args ) { struct ISteamUtils_SteamUtils005_GetCSERIPPort_params *params = (struct ISteamUtils_SteamUtils005_GetCSERIPPort_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; params->_ret = iface->GetCSERIPPort( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUtils_SteamUtils005_GetCSERIPPort( void *args ) NTSTATUS ISteamUtils_SteamUtils005_GetCurrentBatteryPower( void *args ) { struct ISteamUtils_SteamUtils005_GetCurrentBatteryPower_params *params = (struct ISteamUtils_SteamUtils005_GetCurrentBatteryPower_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; params->_ret = iface->GetCurrentBatteryPower( ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUtils_SteamUtils005_GetCurrentBatteryPower( void *args ) NTSTATUS ISteamUtils_SteamUtils005_GetAppID( void *args ) { struct ISteamUtils_SteamUtils005_GetAppID_params *params = (struct ISteamUtils_SteamUtils005_GetAppID_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; params->_ret = iface->GetAppID( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUtils_SteamUtils005_GetAppID( void *args ) NTSTATUS ISteamUtils_SteamUtils005_SetOverlayNotificationPosition( void *args ) { struct ISteamUtils_SteamUtils005_SetOverlayNotificationPosition_params *params = (struct ISteamUtils_SteamUtils005_SetOverlayNotificationPosition_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; iface->SetOverlayNotificationPosition( params->eNotificationPosition ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUtils_SteamUtils005_SetOverlayNotificationPosition( void *args ) NTSTATUS ISteamUtils_SteamUtils005_IsAPICallCompleted( void *args ) { struct ISteamUtils_SteamUtils005_IsAPICallCompleted_params *params = (struct ISteamUtils_SteamUtils005_IsAPICallCompleted_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; params->_ret = iface->IsAPICallCompleted( params->hSteamAPICall, params->pbFailed ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUtils_SteamUtils005_IsAPICallCompleted( void *args ) NTSTATUS ISteamUtils_SteamUtils005_GetAPICallFailureReason( void *args ) { struct ISteamUtils_SteamUtils005_GetAPICallFailureReason_params *params = (struct ISteamUtils_SteamUtils005_GetAPICallFailureReason_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; params->_ret = iface->GetAPICallFailureReason( params->hSteamAPICall ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUtils_SteamUtils005_GetAPICallFailureReason( void *args ) NTSTATUS ISteamUtils_SteamUtils005_RunFrame( void *args ) { struct ISteamUtils_SteamUtils005_RunFrame_params *params = (struct ISteamUtils_SteamUtils005_RunFrame_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUtils_SteamUtils005_RunFrame( void *args ) NTSTATUS ISteamUtils_SteamUtils005_GetIPCCallCount( void *args ) { struct ISteamUtils_SteamUtils005_GetIPCCallCount_params *params = (struct ISteamUtils_SteamUtils005_GetIPCCallCount_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUtils_SteamUtils005_GetIPCCallCount( void *args ) NTSTATUS ISteamUtils_SteamUtils005_SetWarningMessageHook( void *args ) { struct ISteamUtils_SteamUtils005_SetWarningMessageHook_params *params = (struct ISteamUtils_SteamUtils005_SetWarningMessageHook_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -137,7 +137,7 @@ NTSTATUS ISteamUtils_SteamUtils005_SetWarningMessageHook( void *args ) NTSTATUS ISteamUtils_SteamUtils005_IsOverlayEnabled( void *args ) { struct ISteamUtils_SteamUtils005_IsOverlayEnabled_params *params = (struct ISteamUtils_SteamUtils005_IsOverlayEnabled_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; params->_ret = iface->IsOverlayEnabled( ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamUtils_SteamUtils005_IsOverlayEnabled( void *args ) NTSTATUS ISteamUtils_SteamUtils005_BOverlayNeedsPresent( void *args ) { struct ISteamUtils_SteamUtils005_BOverlayNeedsPresent_params *params = (struct ISteamUtils_SteamUtils005_BOverlayNeedsPresent_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; params->_ret = iface->BOverlayNeedsPresent( ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamUtils_SteamUtils005_BOverlayNeedsPresent( void *args ) NTSTATUS ISteamUtils_SteamUtils005_CheckFileSignature( void *args ) { struct ISteamUtils_SteamUtils005_CheckFileSignature_params *params = (struct ISteamUtils_SteamUtils005_CheckFileSignature_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; char *u_szFileName = steamclient_dos_to_unix_path( params->szFileName, 0 ); params->_ret = iface->CheckFileSignature( u_szFileName ); steamclient_free_path( u_szFileName ); @@ -163,7 +163,7 @@ NTSTATUS ISteamUtils_SteamUtils005_CheckFileSignature( void *args ) NTSTATUS ISteamUtils_SteamUtils005_ShowGamepadTextInput( void *args ) { struct ISteamUtils_SteamUtils005_ShowGamepadTextInput_params *params = (struct ISteamUtils_SteamUtils005_ShowGamepadTextInput_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; params->_ret = iface->ShowGamepadTextInput( params->eInputMode, params->eLineInputMode, params->pchDescription, params->unCharMax ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUtils_SteamUtils005_ShowGamepadTextInput( void *args ) NTSTATUS ISteamUtils_SteamUtils005_GetEnteredGamepadTextLength( void *args ) { struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextLength_params *params = (struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextLength_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; params->_ret = iface->GetEnteredGamepadTextLength( ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUtils_SteamUtils005_GetEnteredGamepadTextLength( void *args ) NTSTATUS ISteamUtils_SteamUtils005_GetEnteredGamepadTextInput( void *args ) { struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextInput_params *params = (struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextInput_params *)args; - struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side; + struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->u_iface; params->_ret = iface->GetEnteredGamepadTextInput( params->pchText, params->cchText ); return 0; } diff --git a/lsteamclient/cppISteamUtils_SteamUtils006.cpp b/lsteamclient/cppISteamUtils_SteamUtils006.cpp index 1fc9b261..24089b26 100644 --- a/lsteamclient/cppISteamUtils_SteamUtils006.cpp +++ b/lsteamclient/cppISteamUtils_SteamUtils006.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUtils_SteamUtils006_GetSecondsSinceAppActive( void *args ) { struct ISteamUtils_SteamUtils006_GetSecondsSinceAppActive_params *params = (struct ISteamUtils_SteamUtils006_GetSecondsSinceAppActive_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->GetSecondsSinceAppActive( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUtils_SteamUtils006_GetSecondsSinceAppActive( void *args ) NTSTATUS ISteamUtils_SteamUtils006_GetSecondsSinceComputerActive( void *args ) { struct ISteamUtils_SteamUtils006_GetSecondsSinceComputerActive_params *params = (struct ISteamUtils_SteamUtils006_GetSecondsSinceComputerActive_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->GetSecondsSinceComputerActive( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUtils_SteamUtils006_GetSecondsSinceComputerActive( void *args ) NTSTATUS ISteamUtils_SteamUtils006_GetConnectedUniverse( void *args ) { struct ISteamUtils_SteamUtils006_GetConnectedUniverse_params *params = (struct ISteamUtils_SteamUtils006_GetConnectedUniverse_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->GetConnectedUniverse( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUtils_SteamUtils006_GetConnectedUniverse( void *args ) NTSTATUS ISteamUtils_SteamUtils006_GetServerRealTime( void *args ) { struct ISteamUtils_SteamUtils006_GetServerRealTime_params *params = (struct ISteamUtils_SteamUtils006_GetServerRealTime_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->GetServerRealTime( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUtils_SteamUtils006_GetServerRealTime( void *args ) NTSTATUS ISteamUtils_SteamUtils006_GetIPCountry( void *args ) { struct ISteamUtils_SteamUtils006_GetIPCountry_params *params = (struct ISteamUtils_SteamUtils006_GetIPCountry_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->GetIPCountry( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUtils_SteamUtils006_GetIPCountry( void *args ) NTSTATUS ISteamUtils_SteamUtils006_GetImageSize( void *args ) { struct ISteamUtils_SteamUtils006_GetImageSize_params *params = (struct ISteamUtils_SteamUtils006_GetImageSize_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->GetImageSize( params->iImage, params->pnWidth, params->pnHeight ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUtils_SteamUtils006_GetImageSize( void *args ) NTSTATUS ISteamUtils_SteamUtils006_GetImageRGBA( void *args ) { struct ISteamUtils_SteamUtils006_GetImageRGBA_params *params = (struct ISteamUtils_SteamUtils006_GetImageRGBA_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->GetImageRGBA( params->iImage, params->pubDest, params->nDestBufferSize ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUtils_SteamUtils006_GetImageRGBA( void *args ) NTSTATUS ISteamUtils_SteamUtils006_GetCSERIPPort( void *args ) { struct ISteamUtils_SteamUtils006_GetCSERIPPort_params *params = (struct ISteamUtils_SteamUtils006_GetCSERIPPort_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->GetCSERIPPort( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUtils_SteamUtils006_GetCSERIPPort( void *args ) NTSTATUS ISteamUtils_SteamUtils006_GetCurrentBatteryPower( void *args ) { struct ISteamUtils_SteamUtils006_GetCurrentBatteryPower_params *params = (struct ISteamUtils_SteamUtils006_GetCurrentBatteryPower_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->GetCurrentBatteryPower( ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUtils_SteamUtils006_GetCurrentBatteryPower( void *args ) NTSTATUS ISteamUtils_SteamUtils006_GetAppID( void *args ) { struct ISteamUtils_SteamUtils006_GetAppID_params *params = (struct ISteamUtils_SteamUtils006_GetAppID_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->GetAppID( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUtils_SteamUtils006_GetAppID( void *args ) NTSTATUS ISteamUtils_SteamUtils006_SetOverlayNotificationPosition( void *args ) { struct ISteamUtils_SteamUtils006_SetOverlayNotificationPosition_params *params = (struct ISteamUtils_SteamUtils006_SetOverlayNotificationPosition_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; iface->SetOverlayNotificationPosition( params->eNotificationPosition ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUtils_SteamUtils006_SetOverlayNotificationPosition( void *args ) NTSTATUS ISteamUtils_SteamUtils006_IsAPICallCompleted( void *args ) { struct ISteamUtils_SteamUtils006_IsAPICallCompleted_params *params = (struct ISteamUtils_SteamUtils006_IsAPICallCompleted_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->IsAPICallCompleted( params->hSteamAPICall, params->pbFailed ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUtils_SteamUtils006_IsAPICallCompleted( void *args ) NTSTATUS ISteamUtils_SteamUtils006_GetAPICallFailureReason( void *args ) { struct ISteamUtils_SteamUtils006_GetAPICallFailureReason_params *params = (struct ISteamUtils_SteamUtils006_GetAPICallFailureReason_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->GetAPICallFailureReason( params->hSteamAPICall ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUtils_SteamUtils006_GetAPICallFailureReason( void *args ) NTSTATUS ISteamUtils_SteamUtils006_RunFrame( void *args ) { struct ISteamUtils_SteamUtils006_RunFrame_params *params = (struct ISteamUtils_SteamUtils006_RunFrame_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUtils_SteamUtils006_RunFrame( void *args ) NTSTATUS ISteamUtils_SteamUtils006_GetIPCCallCount( void *args ) { struct ISteamUtils_SteamUtils006_GetIPCCallCount_params *params = (struct ISteamUtils_SteamUtils006_GetIPCCallCount_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUtils_SteamUtils006_GetIPCCallCount( void *args ) NTSTATUS ISteamUtils_SteamUtils006_SetWarningMessageHook( void *args ) { struct ISteamUtils_SteamUtils006_SetWarningMessageHook_params *params = (struct ISteamUtils_SteamUtils006_SetWarningMessageHook_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -137,7 +137,7 @@ NTSTATUS ISteamUtils_SteamUtils006_SetWarningMessageHook( void *args ) NTSTATUS ISteamUtils_SteamUtils006_IsOverlayEnabled( void *args ) { struct ISteamUtils_SteamUtils006_IsOverlayEnabled_params *params = (struct ISteamUtils_SteamUtils006_IsOverlayEnabled_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->IsOverlayEnabled( ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamUtils_SteamUtils006_IsOverlayEnabled( void *args ) NTSTATUS ISteamUtils_SteamUtils006_BOverlayNeedsPresent( void *args ) { struct ISteamUtils_SteamUtils006_BOverlayNeedsPresent_params *params = (struct ISteamUtils_SteamUtils006_BOverlayNeedsPresent_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->BOverlayNeedsPresent( ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamUtils_SteamUtils006_BOverlayNeedsPresent( void *args ) NTSTATUS ISteamUtils_SteamUtils006_CheckFileSignature( void *args ) { struct ISteamUtils_SteamUtils006_CheckFileSignature_params *params = (struct ISteamUtils_SteamUtils006_CheckFileSignature_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; char *u_szFileName = steamclient_dos_to_unix_path( params->szFileName, 0 ); params->_ret = iface->CheckFileSignature( u_szFileName ); steamclient_free_path( u_szFileName ); @@ -163,7 +163,7 @@ NTSTATUS ISteamUtils_SteamUtils006_CheckFileSignature( void *args ) NTSTATUS ISteamUtils_SteamUtils006_ShowGamepadTextInput( void *args ) { struct ISteamUtils_SteamUtils006_ShowGamepadTextInput_params *params = (struct ISteamUtils_SteamUtils006_ShowGamepadTextInput_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->ShowGamepadTextInput( params->eInputMode, params->eLineInputMode, params->pchDescription, params->unCharMax ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUtils_SteamUtils006_ShowGamepadTextInput( void *args ) NTSTATUS ISteamUtils_SteamUtils006_GetEnteredGamepadTextLength( void *args ) { struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextLength_params *params = (struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextLength_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->GetEnteredGamepadTextLength( ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUtils_SteamUtils006_GetEnteredGamepadTextLength( void *args ) NTSTATUS ISteamUtils_SteamUtils006_GetEnteredGamepadTextInput( void *args ) { struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextInput_params *params = (struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextInput_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->GetEnteredGamepadTextInput( params->pchText, params->cchText ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUtils_SteamUtils006_GetEnteredGamepadTextInput( void *args ) NTSTATUS ISteamUtils_SteamUtils006_GetSteamUILanguage( void *args ) { struct ISteamUtils_SteamUtils006_GetSteamUILanguage_params *params = (struct ISteamUtils_SteamUtils006_GetSteamUILanguage_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->GetSteamUILanguage( ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUtils_SteamUtils006_GetSteamUILanguage( void *args ) NTSTATUS ISteamUtils_SteamUtils006_IsSteamRunningInVR( void *args ) { struct ISteamUtils_SteamUtils006_IsSteamRunningInVR_params *params = (struct ISteamUtils_SteamUtils006_IsSteamRunningInVR_params *)args; - struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->linux_side; + struct u_ISteamUtils_SteamUtils006 *iface = (struct u_ISteamUtils_SteamUtils006 *)params->u_iface; params->_ret = iface->IsSteamRunningInVR( ); return 0; } diff --git a/lsteamclient/cppISteamUtils_SteamUtils007.cpp b/lsteamclient/cppISteamUtils_SteamUtils007.cpp index 38e10d2b..c5716e9f 100644 --- a/lsteamclient/cppISteamUtils_SteamUtils007.cpp +++ b/lsteamclient/cppISteamUtils_SteamUtils007.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUtils_SteamUtils007_GetSecondsSinceAppActive( void *args ) { struct ISteamUtils_SteamUtils007_GetSecondsSinceAppActive_params *params = (struct ISteamUtils_SteamUtils007_GetSecondsSinceAppActive_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->GetSecondsSinceAppActive( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUtils_SteamUtils007_GetSecondsSinceAppActive( void *args ) NTSTATUS ISteamUtils_SteamUtils007_GetSecondsSinceComputerActive( void *args ) { struct ISteamUtils_SteamUtils007_GetSecondsSinceComputerActive_params *params = (struct ISteamUtils_SteamUtils007_GetSecondsSinceComputerActive_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->GetSecondsSinceComputerActive( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUtils_SteamUtils007_GetSecondsSinceComputerActive( void *args ) NTSTATUS ISteamUtils_SteamUtils007_GetConnectedUniverse( void *args ) { struct ISteamUtils_SteamUtils007_GetConnectedUniverse_params *params = (struct ISteamUtils_SteamUtils007_GetConnectedUniverse_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->GetConnectedUniverse( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUtils_SteamUtils007_GetConnectedUniverse( void *args ) NTSTATUS ISteamUtils_SteamUtils007_GetServerRealTime( void *args ) { struct ISteamUtils_SteamUtils007_GetServerRealTime_params *params = (struct ISteamUtils_SteamUtils007_GetServerRealTime_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->GetServerRealTime( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUtils_SteamUtils007_GetServerRealTime( void *args ) NTSTATUS ISteamUtils_SteamUtils007_GetIPCountry( void *args ) { struct ISteamUtils_SteamUtils007_GetIPCountry_params *params = (struct ISteamUtils_SteamUtils007_GetIPCountry_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->GetIPCountry( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUtils_SteamUtils007_GetIPCountry( void *args ) NTSTATUS ISteamUtils_SteamUtils007_GetImageSize( void *args ) { struct ISteamUtils_SteamUtils007_GetImageSize_params *params = (struct ISteamUtils_SteamUtils007_GetImageSize_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->GetImageSize( params->iImage, params->pnWidth, params->pnHeight ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUtils_SteamUtils007_GetImageSize( void *args ) NTSTATUS ISteamUtils_SteamUtils007_GetImageRGBA( void *args ) { struct ISteamUtils_SteamUtils007_GetImageRGBA_params *params = (struct ISteamUtils_SteamUtils007_GetImageRGBA_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->GetImageRGBA( params->iImage, params->pubDest, params->nDestBufferSize ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUtils_SteamUtils007_GetImageRGBA( void *args ) NTSTATUS ISteamUtils_SteamUtils007_GetCSERIPPort( void *args ) { struct ISteamUtils_SteamUtils007_GetCSERIPPort_params *params = (struct ISteamUtils_SteamUtils007_GetCSERIPPort_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->GetCSERIPPort( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUtils_SteamUtils007_GetCSERIPPort( void *args ) NTSTATUS ISteamUtils_SteamUtils007_GetCurrentBatteryPower( void *args ) { struct ISteamUtils_SteamUtils007_GetCurrentBatteryPower_params *params = (struct ISteamUtils_SteamUtils007_GetCurrentBatteryPower_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->GetCurrentBatteryPower( ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUtils_SteamUtils007_GetCurrentBatteryPower( void *args ) NTSTATUS ISteamUtils_SteamUtils007_GetAppID( void *args ) { struct ISteamUtils_SteamUtils007_GetAppID_params *params = (struct ISteamUtils_SteamUtils007_GetAppID_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->GetAppID( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUtils_SteamUtils007_GetAppID( void *args ) NTSTATUS ISteamUtils_SteamUtils007_SetOverlayNotificationPosition( void *args ) { struct ISteamUtils_SteamUtils007_SetOverlayNotificationPosition_params *params = (struct ISteamUtils_SteamUtils007_SetOverlayNotificationPosition_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; iface->SetOverlayNotificationPosition( params->eNotificationPosition ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUtils_SteamUtils007_SetOverlayNotificationPosition( void *args ) NTSTATUS ISteamUtils_SteamUtils007_IsAPICallCompleted( void *args ) { struct ISteamUtils_SteamUtils007_IsAPICallCompleted_params *params = (struct ISteamUtils_SteamUtils007_IsAPICallCompleted_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->IsAPICallCompleted( params->hSteamAPICall, params->pbFailed ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUtils_SteamUtils007_IsAPICallCompleted( void *args ) NTSTATUS ISteamUtils_SteamUtils007_GetAPICallFailureReason( void *args ) { struct ISteamUtils_SteamUtils007_GetAPICallFailureReason_params *params = (struct ISteamUtils_SteamUtils007_GetAPICallFailureReason_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->GetAPICallFailureReason( params->hSteamAPICall ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUtils_SteamUtils007_GetAPICallFailureReason( void *args ) NTSTATUS ISteamUtils_SteamUtils007_RunFrame( void *args ) { struct ISteamUtils_SteamUtils007_RunFrame_params *params = (struct ISteamUtils_SteamUtils007_RunFrame_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUtils_SteamUtils007_RunFrame( void *args ) NTSTATUS ISteamUtils_SteamUtils007_GetIPCCallCount( void *args ) { struct ISteamUtils_SteamUtils007_GetIPCCallCount_params *params = (struct ISteamUtils_SteamUtils007_GetIPCCallCount_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUtils_SteamUtils007_GetIPCCallCount( void *args ) NTSTATUS ISteamUtils_SteamUtils007_SetWarningMessageHook( void *args ) { struct ISteamUtils_SteamUtils007_SetWarningMessageHook_params *params = (struct ISteamUtils_SteamUtils007_SetWarningMessageHook_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -137,7 +137,7 @@ NTSTATUS ISteamUtils_SteamUtils007_SetWarningMessageHook( void *args ) NTSTATUS ISteamUtils_SteamUtils007_IsOverlayEnabled( void *args ) { struct ISteamUtils_SteamUtils007_IsOverlayEnabled_params *params = (struct ISteamUtils_SteamUtils007_IsOverlayEnabled_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->IsOverlayEnabled( ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamUtils_SteamUtils007_IsOverlayEnabled( void *args ) NTSTATUS ISteamUtils_SteamUtils007_BOverlayNeedsPresent( void *args ) { struct ISteamUtils_SteamUtils007_BOverlayNeedsPresent_params *params = (struct ISteamUtils_SteamUtils007_BOverlayNeedsPresent_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->BOverlayNeedsPresent( ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamUtils_SteamUtils007_BOverlayNeedsPresent( void *args ) NTSTATUS ISteamUtils_SteamUtils007_CheckFileSignature( void *args ) { struct ISteamUtils_SteamUtils007_CheckFileSignature_params *params = (struct ISteamUtils_SteamUtils007_CheckFileSignature_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; char *u_szFileName = steamclient_dos_to_unix_path( params->szFileName, 0 ); params->_ret = iface->CheckFileSignature( u_szFileName ); steamclient_free_path( u_szFileName ); @@ -163,7 +163,7 @@ NTSTATUS ISteamUtils_SteamUtils007_CheckFileSignature( void *args ) NTSTATUS ISteamUtils_SteamUtils007_ShowGamepadTextInput( void *args ) { struct ISteamUtils_SteamUtils007_ShowGamepadTextInput_params *params = (struct ISteamUtils_SteamUtils007_ShowGamepadTextInput_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->ShowGamepadTextInput( params->eInputMode, params->eLineInputMode, params->pchDescription, params->unCharMax, params->pchExistingText ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUtils_SteamUtils007_ShowGamepadTextInput( void *args ) NTSTATUS ISteamUtils_SteamUtils007_GetEnteredGamepadTextLength( void *args ) { struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextLength_params *params = (struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextLength_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->GetEnteredGamepadTextLength( ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUtils_SteamUtils007_GetEnteredGamepadTextLength( void *args ) NTSTATUS ISteamUtils_SteamUtils007_GetEnteredGamepadTextInput( void *args ) { struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextInput_params *params = (struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextInput_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->GetEnteredGamepadTextInput( params->pchText, params->cchText ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUtils_SteamUtils007_GetEnteredGamepadTextInput( void *args ) NTSTATUS ISteamUtils_SteamUtils007_GetSteamUILanguage( void *args ) { struct ISteamUtils_SteamUtils007_GetSteamUILanguage_params *params = (struct ISteamUtils_SteamUtils007_GetSteamUILanguage_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->GetSteamUILanguage( ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUtils_SteamUtils007_GetSteamUILanguage( void *args ) NTSTATUS ISteamUtils_SteamUtils007_IsSteamRunningInVR( void *args ) { struct ISteamUtils_SteamUtils007_IsSteamRunningInVR_params *params = (struct ISteamUtils_SteamUtils007_IsSteamRunningInVR_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; params->_ret = iface->IsSteamRunningInVR( ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUtils_SteamUtils007_IsSteamRunningInVR( void *args ) NTSTATUS ISteamUtils_SteamUtils007_SetOverlayNotificationInset( void *args ) { struct ISteamUtils_SteamUtils007_SetOverlayNotificationInset_params *params = (struct ISteamUtils_SteamUtils007_SetOverlayNotificationInset_params *)args; - struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->linux_side; + struct u_ISteamUtils_SteamUtils007 *iface = (struct u_ISteamUtils_SteamUtils007 *)params->u_iface; iface->SetOverlayNotificationInset( params->nHorizontalInset, params->nVerticalInset ); return 0; } diff --git a/lsteamclient/cppISteamUtils_SteamUtils008.cpp b/lsteamclient/cppISteamUtils_SteamUtils008.cpp index 91417991..4d92ae1d 100644 --- a/lsteamclient/cppISteamUtils_SteamUtils008.cpp +++ b/lsteamclient/cppISteamUtils_SteamUtils008.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUtils_SteamUtils008_GetSecondsSinceAppActive( void *args ) { struct ISteamUtils_SteamUtils008_GetSecondsSinceAppActive_params *params = (struct ISteamUtils_SteamUtils008_GetSecondsSinceAppActive_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->GetSecondsSinceAppActive( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUtils_SteamUtils008_GetSecondsSinceAppActive( void *args ) NTSTATUS ISteamUtils_SteamUtils008_GetSecondsSinceComputerActive( void *args ) { struct ISteamUtils_SteamUtils008_GetSecondsSinceComputerActive_params *params = (struct ISteamUtils_SteamUtils008_GetSecondsSinceComputerActive_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->GetSecondsSinceComputerActive( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUtils_SteamUtils008_GetSecondsSinceComputerActive( void *args ) NTSTATUS ISteamUtils_SteamUtils008_GetConnectedUniverse( void *args ) { struct ISteamUtils_SteamUtils008_GetConnectedUniverse_params *params = (struct ISteamUtils_SteamUtils008_GetConnectedUniverse_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->GetConnectedUniverse( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUtils_SteamUtils008_GetConnectedUniverse( void *args ) NTSTATUS ISteamUtils_SteamUtils008_GetServerRealTime( void *args ) { struct ISteamUtils_SteamUtils008_GetServerRealTime_params *params = (struct ISteamUtils_SteamUtils008_GetServerRealTime_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->GetServerRealTime( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUtils_SteamUtils008_GetServerRealTime( void *args ) NTSTATUS ISteamUtils_SteamUtils008_GetIPCountry( void *args ) { struct ISteamUtils_SteamUtils008_GetIPCountry_params *params = (struct ISteamUtils_SteamUtils008_GetIPCountry_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->GetIPCountry( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUtils_SteamUtils008_GetIPCountry( void *args ) NTSTATUS ISteamUtils_SteamUtils008_GetImageSize( void *args ) { struct ISteamUtils_SteamUtils008_GetImageSize_params *params = (struct ISteamUtils_SteamUtils008_GetImageSize_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->GetImageSize( params->iImage, params->pnWidth, params->pnHeight ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUtils_SteamUtils008_GetImageSize( void *args ) NTSTATUS ISteamUtils_SteamUtils008_GetImageRGBA( void *args ) { struct ISteamUtils_SteamUtils008_GetImageRGBA_params *params = (struct ISteamUtils_SteamUtils008_GetImageRGBA_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->GetImageRGBA( params->iImage, params->pubDest, params->nDestBufferSize ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUtils_SteamUtils008_GetImageRGBA( void *args ) NTSTATUS ISteamUtils_SteamUtils008_GetCSERIPPort( void *args ) { struct ISteamUtils_SteamUtils008_GetCSERIPPort_params *params = (struct ISteamUtils_SteamUtils008_GetCSERIPPort_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->GetCSERIPPort( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUtils_SteamUtils008_GetCSERIPPort( void *args ) NTSTATUS ISteamUtils_SteamUtils008_GetCurrentBatteryPower( void *args ) { struct ISteamUtils_SteamUtils008_GetCurrentBatteryPower_params *params = (struct ISteamUtils_SteamUtils008_GetCurrentBatteryPower_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->GetCurrentBatteryPower( ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUtils_SteamUtils008_GetCurrentBatteryPower( void *args ) NTSTATUS ISteamUtils_SteamUtils008_GetAppID( void *args ) { struct ISteamUtils_SteamUtils008_GetAppID_params *params = (struct ISteamUtils_SteamUtils008_GetAppID_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->GetAppID( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUtils_SteamUtils008_GetAppID( void *args ) NTSTATUS ISteamUtils_SteamUtils008_SetOverlayNotificationPosition( void *args ) { struct ISteamUtils_SteamUtils008_SetOverlayNotificationPosition_params *params = (struct ISteamUtils_SteamUtils008_SetOverlayNotificationPosition_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; iface->SetOverlayNotificationPosition( params->eNotificationPosition ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUtils_SteamUtils008_SetOverlayNotificationPosition( void *args ) NTSTATUS ISteamUtils_SteamUtils008_IsAPICallCompleted( void *args ) { struct ISteamUtils_SteamUtils008_IsAPICallCompleted_params *params = (struct ISteamUtils_SteamUtils008_IsAPICallCompleted_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->IsAPICallCompleted( params->hSteamAPICall, params->pbFailed ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUtils_SteamUtils008_IsAPICallCompleted( void *args ) NTSTATUS ISteamUtils_SteamUtils008_GetAPICallFailureReason( void *args ) { struct ISteamUtils_SteamUtils008_GetAPICallFailureReason_params *params = (struct ISteamUtils_SteamUtils008_GetAPICallFailureReason_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->GetAPICallFailureReason( params->hSteamAPICall ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUtils_SteamUtils008_GetAPICallFailureReason( void *args ) NTSTATUS ISteamUtils_SteamUtils008_RunFrame( void *args ) { struct ISteamUtils_SteamUtils008_RunFrame_params *params = (struct ISteamUtils_SteamUtils008_RunFrame_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUtils_SteamUtils008_RunFrame( void *args ) NTSTATUS ISteamUtils_SteamUtils008_GetIPCCallCount( void *args ) { struct ISteamUtils_SteamUtils008_GetIPCCallCount_params *params = (struct ISteamUtils_SteamUtils008_GetIPCCallCount_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUtils_SteamUtils008_GetIPCCallCount( void *args ) NTSTATUS ISteamUtils_SteamUtils008_SetWarningMessageHook( void *args ) { struct ISteamUtils_SteamUtils008_SetWarningMessageHook_params *params = (struct ISteamUtils_SteamUtils008_SetWarningMessageHook_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -137,7 +137,7 @@ NTSTATUS ISteamUtils_SteamUtils008_SetWarningMessageHook( void *args ) NTSTATUS ISteamUtils_SteamUtils008_IsOverlayEnabled( void *args ) { struct ISteamUtils_SteamUtils008_IsOverlayEnabled_params *params = (struct ISteamUtils_SteamUtils008_IsOverlayEnabled_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->IsOverlayEnabled( ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamUtils_SteamUtils008_IsOverlayEnabled( void *args ) NTSTATUS ISteamUtils_SteamUtils008_BOverlayNeedsPresent( void *args ) { struct ISteamUtils_SteamUtils008_BOverlayNeedsPresent_params *params = (struct ISteamUtils_SteamUtils008_BOverlayNeedsPresent_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->BOverlayNeedsPresent( ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamUtils_SteamUtils008_BOverlayNeedsPresent( void *args ) NTSTATUS ISteamUtils_SteamUtils008_CheckFileSignature( void *args ) { struct ISteamUtils_SteamUtils008_CheckFileSignature_params *params = (struct ISteamUtils_SteamUtils008_CheckFileSignature_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; char *u_szFileName = steamclient_dos_to_unix_path( params->szFileName, 0 ); params->_ret = iface->CheckFileSignature( u_szFileName ); steamclient_free_path( u_szFileName ); @@ -163,7 +163,7 @@ NTSTATUS ISteamUtils_SteamUtils008_CheckFileSignature( void *args ) NTSTATUS ISteamUtils_SteamUtils008_ShowGamepadTextInput( void *args ) { struct ISteamUtils_SteamUtils008_ShowGamepadTextInput_params *params = (struct ISteamUtils_SteamUtils008_ShowGamepadTextInput_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->ShowGamepadTextInput( params->eInputMode, params->eLineInputMode, params->pchDescription, params->unCharMax, params->pchExistingText ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUtils_SteamUtils008_ShowGamepadTextInput( void *args ) NTSTATUS ISteamUtils_SteamUtils008_GetEnteredGamepadTextLength( void *args ) { struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextLength_params *params = (struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextLength_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->GetEnteredGamepadTextLength( ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUtils_SteamUtils008_GetEnteredGamepadTextLength( void *args ) NTSTATUS ISteamUtils_SteamUtils008_GetEnteredGamepadTextInput( void *args ) { struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextInput_params *params = (struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextInput_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->GetEnteredGamepadTextInput( params->pchText, params->cchText ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUtils_SteamUtils008_GetEnteredGamepadTextInput( void *args ) NTSTATUS ISteamUtils_SteamUtils008_GetSteamUILanguage( void *args ) { struct ISteamUtils_SteamUtils008_GetSteamUILanguage_params *params = (struct ISteamUtils_SteamUtils008_GetSteamUILanguage_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->GetSteamUILanguage( ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUtils_SteamUtils008_GetSteamUILanguage( void *args ) NTSTATUS ISteamUtils_SteamUtils008_IsSteamRunningInVR( void *args ) { struct ISteamUtils_SteamUtils008_IsSteamRunningInVR_params *params = (struct ISteamUtils_SteamUtils008_IsSteamRunningInVR_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->IsSteamRunningInVR( ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUtils_SteamUtils008_IsSteamRunningInVR( void *args ) NTSTATUS ISteamUtils_SteamUtils008_SetOverlayNotificationInset( void *args ) { struct ISteamUtils_SteamUtils008_SetOverlayNotificationInset_params *params = (struct ISteamUtils_SteamUtils008_SetOverlayNotificationInset_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; iface->SetOverlayNotificationInset( params->nHorizontalInset, params->nVerticalInset ); return 0; } @@ -211,7 +211,7 @@ NTSTATUS ISteamUtils_SteamUtils008_SetOverlayNotificationInset( void *args ) NTSTATUS ISteamUtils_SteamUtils008_IsSteamInBigPictureMode( void *args ) { struct ISteamUtils_SteamUtils008_IsSteamInBigPictureMode_params *params = (struct ISteamUtils_SteamUtils008_IsSteamInBigPictureMode_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; params->_ret = iface->IsSteamInBigPictureMode( ); return 0; } @@ -219,7 +219,7 @@ NTSTATUS ISteamUtils_SteamUtils008_IsSteamInBigPictureMode( void *args ) NTSTATUS ISteamUtils_SteamUtils008_StartVRDashboard( void *args ) { struct ISteamUtils_SteamUtils008_StartVRDashboard_params *params = (struct ISteamUtils_SteamUtils008_StartVRDashboard_params *)args; - struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->linux_side; + struct u_ISteamUtils_SteamUtils008 *iface = (struct u_ISteamUtils_SteamUtils008 *)params->u_iface; iface->StartVRDashboard( ); return 0; } diff --git a/lsteamclient/cppISteamUtils_SteamUtils009.cpp b/lsteamclient/cppISteamUtils_SteamUtils009.cpp index 03e0f706..c9eefbc7 100644 --- a/lsteamclient/cppISteamUtils_SteamUtils009.cpp +++ b/lsteamclient/cppISteamUtils_SteamUtils009.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUtils_SteamUtils009_GetSecondsSinceAppActive( void *args ) { struct ISteamUtils_SteamUtils009_GetSecondsSinceAppActive_params *params = (struct ISteamUtils_SteamUtils009_GetSecondsSinceAppActive_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->GetSecondsSinceAppActive( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUtils_SteamUtils009_GetSecondsSinceAppActive( void *args ) NTSTATUS ISteamUtils_SteamUtils009_GetSecondsSinceComputerActive( void *args ) { struct ISteamUtils_SteamUtils009_GetSecondsSinceComputerActive_params *params = (struct ISteamUtils_SteamUtils009_GetSecondsSinceComputerActive_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->GetSecondsSinceComputerActive( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUtils_SteamUtils009_GetSecondsSinceComputerActive( void *args ) NTSTATUS ISteamUtils_SteamUtils009_GetConnectedUniverse( void *args ) { struct ISteamUtils_SteamUtils009_GetConnectedUniverse_params *params = (struct ISteamUtils_SteamUtils009_GetConnectedUniverse_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->GetConnectedUniverse( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUtils_SteamUtils009_GetConnectedUniverse( void *args ) NTSTATUS ISteamUtils_SteamUtils009_GetServerRealTime( void *args ) { struct ISteamUtils_SteamUtils009_GetServerRealTime_params *params = (struct ISteamUtils_SteamUtils009_GetServerRealTime_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->GetServerRealTime( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUtils_SteamUtils009_GetServerRealTime( void *args ) NTSTATUS ISteamUtils_SteamUtils009_GetIPCountry( void *args ) { struct ISteamUtils_SteamUtils009_GetIPCountry_params *params = (struct ISteamUtils_SteamUtils009_GetIPCountry_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->GetIPCountry( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUtils_SteamUtils009_GetIPCountry( void *args ) NTSTATUS ISteamUtils_SteamUtils009_GetImageSize( void *args ) { struct ISteamUtils_SteamUtils009_GetImageSize_params *params = (struct ISteamUtils_SteamUtils009_GetImageSize_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->GetImageSize( params->iImage, params->pnWidth, params->pnHeight ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUtils_SteamUtils009_GetImageSize( void *args ) NTSTATUS ISteamUtils_SteamUtils009_GetImageRGBA( void *args ) { struct ISteamUtils_SteamUtils009_GetImageRGBA_params *params = (struct ISteamUtils_SteamUtils009_GetImageRGBA_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->GetImageRGBA( params->iImage, params->pubDest, params->nDestBufferSize ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUtils_SteamUtils009_GetImageRGBA( void *args ) NTSTATUS ISteamUtils_SteamUtils009_GetCSERIPPort( void *args ) { struct ISteamUtils_SteamUtils009_GetCSERIPPort_params *params = (struct ISteamUtils_SteamUtils009_GetCSERIPPort_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->GetCSERIPPort( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUtils_SteamUtils009_GetCSERIPPort( void *args ) NTSTATUS ISteamUtils_SteamUtils009_GetCurrentBatteryPower( void *args ) { struct ISteamUtils_SteamUtils009_GetCurrentBatteryPower_params *params = (struct ISteamUtils_SteamUtils009_GetCurrentBatteryPower_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->GetCurrentBatteryPower( ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUtils_SteamUtils009_GetCurrentBatteryPower( void *args ) NTSTATUS ISteamUtils_SteamUtils009_GetAppID( void *args ) { struct ISteamUtils_SteamUtils009_GetAppID_params *params = (struct ISteamUtils_SteamUtils009_GetAppID_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->GetAppID( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUtils_SteamUtils009_GetAppID( void *args ) NTSTATUS ISteamUtils_SteamUtils009_SetOverlayNotificationPosition( void *args ) { struct ISteamUtils_SteamUtils009_SetOverlayNotificationPosition_params *params = (struct ISteamUtils_SteamUtils009_SetOverlayNotificationPosition_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; iface->SetOverlayNotificationPosition( params->eNotificationPosition ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUtils_SteamUtils009_SetOverlayNotificationPosition( void *args ) NTSTATUS ISteamUtils_SteamUtils009_IsAPICallCompleted( void *args ) { struct ISteamUtils_SteamUtils009_IsAPICallCompleted_params *params = (struct ISteamUtils_SteamUtils009_IsAPICallCompleted_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->IsAPICallCompleted( params->hSteamAPICall, params->pbFailed ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUtils_SteamUtils009_IsAPICallCompleted( void *args ) NTSTATUS ISteamUtils_SteamUtils009_GetAPICallFailureReason( void *args ) { struct ISteamUtils_SteamUtils009_GetAPICallFailureReason_params *params = (struct ISteamUtils_SteamUtils009_GetAPICallFailureReason_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->GetAPICallFailureReason( params->hSteamAPICall ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUtils_SteamUtils009_GetAPICallFailureReason( void *args ) NTSTATUS ISteamUtils_SteamUtils009_RunFrame( void *args ) { struct ISteamUtils_SteamUtils009_RunFrame_params *params = (struct ISteamUtils_SteamUtils009_RunFrame_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUtils_SteamUtils009_RunFrame( void *args ) NTSTATUS ISteamUtils_SteamUtils009_GetIPCCallCount( void *args ) { struct ISteamUtils_SteamUtils009_GetIPCCallCount_params *params = (struct ISteamUtils_SteamUtils009_GetIPCCallCount_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUtils_SteamUtils009_GetIPCCallCount( void *args ) NTSTATUS ISteamUtils_SteamUtils009_SetWarningMessageHook( void *args ) { struct ISteamUtils_SteamUtils009_SetWarningMessageHook_params *params = (struct ISteamUtils_SteamUtils009_SetWarningMessageHook_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -137,7 +137,7 @@ NTSTATUS ISteamUtils_SteamUtils009_SetWarningMessageHook( void *args ) NTSTATUS ISteamUtils_SteamUtils009_IsOverlayEnabled( void *args ) { struct ISteamUtils_SteamUtils009_IsOverlayEnabled_params *params = (struct ISteamUtils_SteamUtils009_IsOverlayEnabled_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->IsOverlayEnabled( ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamUtils_SteamUtils009_IsOverlayEnabled( void *args ) NTSTATUS ISteamUtils_SteamUtils009_BOverlayNeedsPresent( void *args ) { struct ISteamUtils_SteamUtils009_BOverlayNeedsPresent_params *params = (struct ISteamUtils_SteamUtils009_BOverlayNeedsPresent_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->BOverlayNeedsPresent( ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamUtils_SteamUtils009_BOverlayNeedsPresent( void *args ) NTSTATUS ISteamUtils_SteamUtils009_CheckFileSignature( void *args ) { struct ISteamUtils_SteamUtils009_CheckFileSignature_params *params = (struct ISteamUtils_SteamUtils009_CheckFileSignature_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; char *u_szFileName = steamclient_dos_to_unix_path( params->szFileName, 0 ); params->_ret = iface->CheckFileSignature( u_szFileName ); steamclient_free_path( u_szFileName ); @@ -163,7 +163,7 @@ NTSTATUS ISteamUtils_SteamUtils009_CheckFileSignature( void *args ) NTSTATUS ISteamUtils_SteamUtils009_ShowGamepadTextInput( void *args ) { struct ISteamUtils_SteamUtils009_ShowGamepadTextInput_params *params = (struct ISteamUtils_SteamUtils009_ShowGamepadTextInput_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->ShowGamepadTextInput( params->eInputMode, params->eLineInputMode, params->pchDescription, params->unCharMax, params->pchExistingText ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUtils_SteamUtils009_ShowGamepadTextInput( void *args ) NTSTATUS ISteamUtils_SteamUtils009_GetEnteredGamepadTextLength( void *args ) { struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextLength_params *params = (struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextLength_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->GetEnteredGamepadTextLength( ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUtils_SteamUtils009_GetEnteredGamepadTextLength( void *args ) NTSTATUS ISteamUtils_SteamUtils009_GetEnteredGamepadTextInput( void *args ) { struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextInput_params *params = (struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextInput_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->GetEnteredGamepadTextInput( params->pchText, params->cchText ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUtils_SteamUtils009_GetEnteredGamepadTextInput( void *args ) NTSTATUS ISteamUtils_SteamUtils009_GetSteamUILanguage( void *args ) { struct ISteamUtils_SteamUtils009_GetSteamUILanguage_params *params = (struct ISteamUtils_SteamUtils009_GetSteamUILanguage_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->GetSteamUILanguage( ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUtils_SteamUtils009_GetSteamUILanguage( void *args ) NTSTATUS ISteamUtils_SteamUtils009_IsSteamRunningInVR( void *args ) { struct ISteamUtils_SteamUtils009_IsSteamRunningInVR_params *params = (struct ISteamUtils_SteamUtils009_IsSteamRunningInVR_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->IsSteamRunningInVR( ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUtils_SteamUtils009_IsSteamRunningInVR( void *args ) NTSTATUS ISteamUtils_SteamUtils009_SetOverlayNotificationInset( void *args ) { struct ISteamUtils_SteamUtils009_SetOverlayNotificationInset_params *params = (struct ISteamUtils_SteamUtils009_SetOverlayNotificationInset_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; iface->SetOverlayNotificationInset( params->nHorizontalInset, params->nVerticalInset ); return 0; } @@ -211,7 +211,7 @@ NTSTATUS ISteamUtils_SteamUtils009_SetOverlayNotificationInset( void *args ) NTSTATUS ISteamUtils_SteamUtils009_IsSteamInBigPictureMode( void *args ) { struct ISteamUtils_SteamUtils009_IsSteamInBigPictureMode_params *params = (struct ISteamUtils_SteamUtils009_IsSteamInBigPictureMode_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->IsSteamInBigPictureMode( ); return 0; } @@ -219,7 +219,7 @@ NTSTATUS ISteamUtils_SteamUtils009_IsSteamInBigPictureMode( void *args ) NTSTATUS ISteamUtils_SteamUtils009_StartVRDashboard( void *args ) { struct ISteamUtils_SteamUtils009_StartVRDashboard_params *params = (struct ISteamUtils_SteamUtils009_StartVRDashboard_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; iface->StartVRDashboard( ); return 0; } @@ -227,7 +227,7 @@ NTSTATUS ISteamUtils_SteamUtils009_StartVRDashboard( void *args ) NTSTATUS ISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled( void *args ) { struct ISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled_params *params = (struct ISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->IsVRHeadsetStreamingEnabled( ); return 0; } @@ -235,7 +235,7 @@ NTSTATUS ISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled( void *args ) NTSTATUS ISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled( void *args ) { struct ISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled_params *params = (struct ISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; iface->SetVRHeadsetStreamingEnabled( params->bEnabled ); return 0; } @@ -243,7 +243,7 @@ NTSTATUS ISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled( void *args ) NTSTATUS ISteamUtils_SteamUtils009_IsSteamChinaLauncher( void *args ) { struct ISteamUtils_SteamUtils009_IsSteamChinaLauncher_params *params = (struct ISteamUtils_SteamUtils009_IsSteamChinaLauncher_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->IsSteamChinaLauncher( ); return 0; } @@ -251,7 +251,7 @@ NTSTATUS ISteamUtils_SteamUtils009_IsSteamChinaLauncher( void *args ) NTSTATUS ISteamUtils_SteamUtils009_InitFilterText( void *args ) { struct ISteamUtils_SteamUtils009_InitFilterText_params *params = (struct ISteamUtils_SteamUtils009_InitFilterText_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->InitFilterText( ); return 0; } @@ -259,7 +259,7 @@ NTSTATUS ISteamUtils_SteamUtils009_InitFilterText( void *args ) NTSTATUS ISteamUtils_SteamUtils009_FilterText( void *args ) { struct ISteamUtils_SteamUtils009_FilterText_params *params = (struct ISteamUtils_SteamUtils009_FilterText_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->FilterText( params->pchOutFilteredText, params->nByteSizeOutFilteredText, params->pchInputMessage, params->bLegalOnly ); return 0; } @@ -267,7 +267,7 @@ NTSTATUS ISteamUtils_SteamUtils009_FilterText( void *args ) NTSTATUS ISteamUtils_SteamUtils009_GetIPv6ConnectivityState( void *args ) { struct ISteamUtils_SteamUtils009_GetIPv6ConnectivityState_params *params = (struct ISteamUtils_SteamUtils009_GetIPv6ConnectivityState_params *)args; - struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->linux_side; + struct u_ISteamUtils_SteamUtils009 *iface = (struct u_ISteamUtils_SteamUtils009 *)params->u_iface; params->_ret = iface->GetIPv6ConnectivityState( params->eProtocol ); return 0; } diff --git a/lsteamclient/cppISteamUtils_SteamUtils010.cpp b/lsteamclient/cppISteamUtils_SteamUtils010.cpp index a4a9e893..6d545c47 100644 --- a/lsteamclient/cppISteamUtils_SteamUtils010.cpp +++ b/lsteamclient/cppISteamUtils_SteamUtils010.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamUtils_SteamUtils010_GetSecondsSinceAppActive( void *args ) { struct ISteamUtils_SteamUtils010_GetSecondsSinceAppActive_params *params = (struct ISteamUtils_SteamUtils010_GetSecondsSinceAppActive_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->GetSecondsSinceAppActive( ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamUtils_SteamUtils010_GetSecondsSinceAppActive( void *args ) NTSTATUS ISteamUtils_SteamUtils010_GetSecondsSinceComputerActive( void *args ) { struct ISteamUtils_SteamUtils010_GetSecondsSinceComputerActive_params *params = (struct ISteamUtils_SteamUtils010_GetSecondsSinceComputerActive_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->GetSecondsSinceComputerActive( ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamUtils_SteamUtils010_GetSecondsSinceComputerActive( void *args ) NTSTATUS ISteamUtils_SteamUtils010_GetConnectedUniverse( void *args ) { struct ISteamUtils_SteamUtils010_GetConnectedUniverse_params *params = (struct ISteamUtils_SteamUtils010_GetConnectedUniverse_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->GetConnectedUniverse( ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamUtils_SteamUtils010_GetConnectedUniverse( void *args ) NTSTATUS ISteamUtils_SteamUtils010_GetServerRealTime( void *args ) { struct ISteamUtils_SteamUtils010_GetServerRealTime_params *params = (struct ISteamUtils_SteamUtils010_GetServerRealTime_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->GetServerRealTime( ); return 0; } @@ -40,7 +40,7 @@ NTSTATUS ISteamUtils_SteamUtils010_GetServerRealTime( void *args ) NTSTATUS ISteamUtils_SteamUtils010_GetIPCountry( void *args ) { struct ISteamUtils_SteamUtils010_GetIPCountry_params *params = (struct ISteamUtils_SteamUtils010_GetIPCountry_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->GetIPCountry( ); return 0; } @@ -48,7 +48,7 @@ NTSTATUS ISteamUtils_SteamUtils010_GetIPCountry( void *args ) NTSTATUS ISteamUtils_SteamUtils010_GetImageSize( void *args ) { struct ISteamUtils_SteamUtils010_GetImageSize_params *params = (struct ISteamUtils_SteamUtils010_GetImageSize_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->GetImageSize( params->iImage, params->pnWidth, params->pnHeight ); return 0; } @@ -56,7 +56,7 @@ NTSTATUS ISteamUtils_SteamUtils010_GetImageSize( void *args ) NTSTATUS ISteamUtils_SteamUtils010_GetImageRGBA( void *args ) { struct ISteamUtils_SteamUtils010_GetImageRGBA_params *params = (struct ISteamUtils_SteamUtils010_GetImageRGBA_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->GetImageRGBA( params->iImage, params->pubDest, params->nDestBufferSize ); return 0; } @@ -64,7 +64,7 @@ NTSTATUS ISteamUtils_SteamUtils010_GetImageRGBA( void *args ) NTSTATUS ISteamUtils_SteamUtils010_GetCSERIPPort( void *args ) { struct ISteamUtils_SteamUtils010_GetCSERIPPort_params *params = (struct ISteamUtils_SteamUtils010_GetCSERIPPort_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->GetCSERIPPort( params->unIP, params->usPort ); return 0; } @@ -72,7 +72,7 @@ NTSTATUS ISteamUtils_SteamUtils010_GetCSERIPPort( void *args ) NTSTATUS ISteamUtils_SteamUtils010_GetCurrentBatteryPower( void *args ) { struct ISteamUtils_SteamUtils010_GetCurrentBatteryPower_params *params = (struct ISteamUtils_SteamUtils010_GetCurrentBatteryPower_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->GetCurrentBatteryPower( ); return 0; } @@ -80,7 +80,7 @@ NTSTATUS ISteamUtils_SteamUtils010_GetCurrentBatteryPower( void *args ) NTSTATUS ISteamUtils_SteamUtils010_GetAppID( void *args ) { struct ISteamUtils_SteamUtils010_GetAppID_params *params = (struct ISteamUtils_SteamUtils010_GetAppID_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->GetAppID( ); return 0; } @@ -88,7 +88,7 @@ NTSTATUS ISteamUtils_SteamUtils010_GetAppID( void *args ) NTSTATUS ISteamUtils_SteamUtils010_SetOverlayNotificationPosition( void *args ) { struct ISteamUtils_SteamUtils010_SetOverlayNotificationPosition_params *params = (struct ISteamUtils_SteamUtils010_SetOverlayNotificationPosition_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; iface->SetOverlayNotificationPosition( params->eNotificationPosition ); return 0; } @@ -96,7 +96,7 @@ NTSTATUS ISteamUtils_SteamUtils010_SetOverlayNotificationPosition( void *args ) NTSTATUS ISteamUtils_SteamUtils010_IsAPICallCompleted( void *args ) { struct ISteamUtils_SteamUtils010_IsAPICallCompleted_params *params = (struct ISteamUtils_SteamUtils010_IsAPICallCompleted_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->IsAPICallCompleted( params->hSteamAPICall, params->pbFailed ); return 0; } @@ -104,7 +104,7 @@ NTSTATUS ISteamUtils_SteamUtils010_IsAPICallCompleted( void *args ) NTSTATUS ISteamUtils_SteamUtils010_GetAPICallFailureReason( void *args ) { struct ISteamUtils_SteamUtils010_GetAPICallFailureReason_params *params = (struct ISteamUtils_SteamUtils010_GetAPICallFailureReason_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->GetAPICallFailureReason( params->hSteamAPICall ); return 0; } @@ -112,7 +112,7 @@ NTSTATUS ISteamUtils_SteamUtils010_GetAPICallFailureReason( void *args ) NTSTATUS ISteamUtils_SteamUtils010_RunFrame( void *args ) { struct ISteamUtils_SteamUtils010_RunFrame_params *params = (struct ISteamUtils_SteamUtils010_RunFrame_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; iface->RunFrame( ); return 0; } @@ -120,7 +120,7 @@ NTSTATUS ISteamUtils_SteamUtils010_RunFrame( void *args ) NTSTATUS ISteamUtils_SteamUtils010_GetIPCCallCount( void *args ) { struct ISteamUtils_SteamUtils010_GetIPCCallCount_params *params = (struct ISteamUtils_SteamUtils010_GetIPCCallCount_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->GetIPCCallCount( ); return 0; } @@ -128,7 +128,7 @@ NTSTATUS ISteamUtils_SteamUtils010_GetIPCCallCount( void *args ) NTSTATUS ISteamUtils_SteamUtils010_SetWarningMessageHook( void *args ) { struct ISteamUtils_SteamUtils010_SetWarningMessageHook_params *params = (struct ISteamUtils_SteamUtils010_SetWarningMessageHook_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; void (*U_CDECL u_pFunction)(int32_t, const char *) = manual_convert_SetWarningMessageHook_pFunction( params->pFunction ); iface->SetWarningMessageHook( u_pFunction ); return 0; @@ -137,7 +137,7 @@ NTSTATUS ISteamUtils_SteamUtils010_SetWarningMessageHook( void *args ) NTSTATUS ISteamUtils_SteamUtils010_IsOverlayEnabled( void *args ) { struct ISteamUtils_SteamUtils010_IsOverlayEnabled_params *params = (struct ISteamUtils_SteamUtils010_IsOverlayEnabled_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->IsOverlayEnabled( ); return 0; } @@ -145,7 +145,7 @@ NTSTATUS ISteamUtils_SteamUtils010_IsOverlayEnabled( void *args ) NTSTATUS ISteamUtils_SteamUtils010_BOverlayNeedsPresent( void *args ) { struct ISteamUtils_SteamUtils010_BOverlayNeedsPresent_params *params = (struct ISteamUtils_SteamUtils010_BOverlayNeedsPresent_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->BOverlayNeedsPresent( ); return 0; } @@ -153,7 +153,7 @@ NTSTATUS ISteamUtils_SteamUtils010_BOverlayNeedsPresent( void *args ) NTSTATUS ISteamUtils_SteamUtils010_CheckFileSignature( void *args ) { struct ISteamUtils_SteamUtils010_CheckFileSignature_params *params = (struct ISteamUtils_SteamUtils010_CheckFileSignature_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; char *u_szFileName = steamclient_dos_to_unix_path( params->szFileName, 0 ); params->_ret = iface->CheckFileSignature( u_szFileName ); steamclient_free_path( u_szFileName ); @@ -163,7 +163,7 @@ NTSTATUS ISteamUtils_SteamUtils010_CheckFileSignature( void *args ) NTSTATUS ISteamUtils_SteamUtils010_ShowGamepadTextInput( void *args ) { struct ISteamUtils_SteamUtils010_ShowGamepadTextInput_params *params = (struct ISteamUtils_SteamUtils010_ShowGamepadTextInput_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->ShowGamepadTextInput( params->eInputMode, params->eLineInputMode, params->pchDescription, params->unCharMax, params->pchExistingText ); return 0; } @@ -171,7 +171,7 @@ NTSTATUS ISteamUtils_SteamUtils010_ShowGamepadTextInput( void *args ) NTSTATUS ISteamUtils_SteamUtils010_GetEnteredGamepadTextLength( void *args ) { struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextLength_params *params = (struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextLength_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->GetEnteredGamepadTextLength( ); return 0; } @@ -179,7 +179,7 @@ NTSTATUS ISteamUtils_SteamUtils010_GetEnteredGamepadTextLength( void *args ) NTSTATUS ISteamUtils_SteamUtils010_GetEnteredGamepadTextInput( void *args ) { struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextInput_params *params = (struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextInput_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->GetEnteredGamepadTextInput( params->pchText, params->cchText ); return 0; } @@ -187,7 +187,7 @@ NTSTATUS ISteamUtils_SteamUtils010_GetEnteredGamepadTextInput( void *args ) NTSTATUS ISteamUtils_SteamUtils010_GetSteamUILanguage( void *args ) { struct ISteamUtils_SteamUtils010_GetSteamUILanguage_params *params = (struct ISteamUtils_SteamUtils010_GetSteamUILanguage_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->GetSteamUILanguage( ); return 0; } @@ -195,7 +195,7 @@ NTSTATUS ISteamUtils_SteamUtils010_GetSteamUILanguage( void *args ) NTSTATUS ISteamUtils_SteamUtils010_IsSteamRunningInVR( void *args ) { struct ISteamUtils_SteamUtils010_IsSteamRunningInVR_params *params = (struct ISteamUtils_SteamUtils010_IsSteamRunningInVR_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->IsSteamRunningInVR( ); return 0; } @@ -203,7 +203,7 @@ NTSTATUS ISteamUtils_SteamUtils010_IsSteamRunningInVR( void *args ) NTSTATUS ISteamUtils_SteamUtils010_SetOverlayNotificationInset( void *args ) { struct ISteamUtils_SteamUtils010_SetOverlayNotificationInset_params *params = (struct ISteamUtils_SteamUtils010_SetOverlayNotificationInset_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; iface->SetOverlayNotificationInset( params->nHorizontalInset, params->nVerticalInset ); return 0; } @@ -211,7 +211,7 @@ NTSTATUS ISteamUtils_SteamUtils010_SetOverlayNotificationInset( void *args ) NTSTATUS ISteamUtils_SteamUtils010_IsSteamInBigPictureMode( void *args ) { struct ISteamUtils_SteamUtils010_IsSteamInBigPictureMode_params *params = (struct ISteamUtils_SteamUtils010_IsSteamInBigPictureMode_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->IsSteamInBigPictureMode( ); return 0; } @@ -219,7 +219,7 @@ NTSTATUS ISteamUtils_SteamUtils010_IsSteamInBigPictureMode( void *args ) NTSTATUS ISteamUtils_SteamUtils010_StartVRDashboard( void *args ) { struct ISteamUtils_SteamUtils010_StartVRDashboard_params *params = (struct ISteamUtils_SteamUtils010_StartVRDashboard_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; iface->StartVRDashboard( ); return 0; } @@ -227,7 +227,7 @@ NTSTATUS ISteamUtils_SteamUtils010_StartVRDashboard( void *args ) NTSTATUS ISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled( void *args ) { struct ISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled_params *params = (struct ISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->IsVRHeadsetStreamingEnabled( ); return 0; } @@ -235,7 +235,7 @@ NTSTATUS ISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled( void *args ) NTSTATUS ISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled( void *args ) { struct ISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled_params *params = (struct ISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; iface->SetVRHeadsetStreamingEnabled( params->bEnabled ); return 0; } @@ -243,7 +243,7 @@ NTSTATUS ISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled( void *args ) NTSTATUS ISteamUtils_SteamUtils010_IsSteamChinaLauncher( void *args ) { struct ISteamUtils_SteamUtils010_IsSteamChinaLauncher_params *params = (struct ISteamUtils_SteamUtils010_IsSteamChinaLauncher_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->IsSteamChinaLauncher( ); return 0; } @@ -251,7 +251,7 @@ NTSTATUS ISteamUtils_SteamUtils010_IsSteamChinaLauncher( void *args ) NTSTATUS ISteamUtils_SteamUtils010_InitFilterText( void *args ) { struct ISteamUtils_SteamUtils010_InitFilterText_params *params = (struct ISteamUtils_SteamUtils010_InitFilterText_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->InitFilterText( params->unFilterOptions ); return 0; } @@ -259,7 +259,7 @@ NTSTATUS ISteamUtils_SteamUtils010_InitFilterText( void *args ) NTSTATUS ISteamUtils_SteamUtils010_FilterText( void *args ) { struct ISteamUtils_SteamUtils010_FilterText_params *params = (struct ISteamUtils_SteamUtils010_FilterText_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->FilterText( params->eContext, params->sourceSteamID, params->pchInputMessage, params->pchOutFilteredText, params->nByteSizeOutFilteredText ); return 0; } @@ -267,7 +267,7 @@ NTSTATUS ISteamUtils_SteamUtils010_FilterText( void *args ) NTSTATUS ISteamUtils_SteamUtils010_GetIPv6ConnectivityState( void *args ) { struct ISteamUtils_SteamUtils010_GetIPv6ConnectivityState_params *params = (struct ISteamUtils_SteamUtils010_GetIPv6ConnectivityState_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->GetIPv6ConnectivityState( params->eProtocol ); return 0; } @@ -275,7 +275,7 @@ NTSTATUS ISteamUtils_SteamUtils010_GetIPv6ConnectivityState( void *args ) NTSTATUS ISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck( void *args ) { struct ISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck_params *params = (struct ISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->IsSteamRunningOnSteamDeck( ); return 0; } @@ -283,7 +283,7 @@ NTSTATUS ISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck( void *args ) NTSTATUS ISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput( void *args ) { struct ISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput_params *params = (struct ISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->ShowFloatingGamepadTextInput( params->eKeyboardMode, params->nTextFieldXPosition, params->nTextFieldYPosition, params->nTextFieldWidth, params->nTextFieldHeight ); return 0; } @@ -291,7 +291,7 @@ NTSTATUS ISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput( void *args ) NTSTATUS ISteamUtils_SteamUtils010_SetGameLauncherMode( void *args ) { struct ISteamUtils_SteamUtils010_SetGameLauncherMode_params *params = (struct ISteamUtils_SteamUtils010_SetGameLauncherMode_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; iface->SetGameLauncherMode( params->bLauncherMode ); return 0; } @@ -299,7 +299,7 @@ NTSTATUS ISteamUtils_SteamUtils010_SetGameLauncherMode( void *args ) NTSTATUS ISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput( void *args ) { struct ISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput_params *params = (struct ISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->DismissFloatingGamepadTextInput( ); return 0; } @@ -307,7 +307,7 @@ NTSTATUS ISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput( void *args ) NTSTATUS ISteamUtils_SteamUtils010_DismissGamepadTextInput( void *args ) { struct ISteamUtils_SteamUtils010_DismissGamepadTextInput_params *params = (struct ISteamUtils_SteamUtils010_DismissGamepadTextInput_params *)args; - struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->linux_side; + struct u_ISteamUtils_SteamUtils010 *iface = (struct u_ISteamUtils_SteamUtils010 *)params->u_iface; params->_ret = iface->DismissGamepadTextInput( ); return 0; } diff --git a/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V001.cpp b/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V001.cpp index 415862c5..dcc81d6f 100644 --- a/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V001.cpp +++ b/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V001.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL( void *args ) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL_params *params = (struct ISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL_params *)args; - struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V001 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V001 *)params->linux_side; + struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V001 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V001 *)params->u_iface; iface->GetVideoURL( params->unVideoAppID ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL( void *args ) NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting( void *args ) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting_params *params = (struct ISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting_params *)args; - struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V001 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V001 *)params->linux_side; + struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V001 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V001 *)params->u_iface; params->_ret = iface->IsBroadcasting( params->pnNumViewers ); return 0; } diff --git a/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V002.cpp b/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V002.cpp index 92a2b0bf..0f0c765f 100644 --- a/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V002.cpp +++ b/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V002.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL( void *args ) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL_params *params = (struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL_params *)args; - struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V002 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V002 *)params->linux_side; + struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V002 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V002 *)params->u_iface; iface->GetVideoURL( params->unVideoAppID ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL( void *args ) NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting( void *args ) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting_params *params = (struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting_params *)args; - struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V002 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V002 *)params->linux_side; + struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V002 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V002 *)params->u_iface; params->_ret = iface->IsBroadcasting( params->pnNumViewers ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting( void *args ) NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings( void *args ) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings_params *params = (struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings_params *)args; - struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V002 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V002 *)params->linux_side; + struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V002 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V002 *)params->u_iface; iface->GetOPFSettings( params->unVideoAppID ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings( void *args ) NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp( void *args ) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp_params *params = (struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp_params *)args; - struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V002 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V002 *)params->linux_side; + struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V002 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V002 *)params->u_iface; params->_ret = iface->GetOPFStringForApp( params->unVideoAppID, params->pchBuffer, params->pnBufferSize ); return 0; } diff --git a/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V007.cpp b/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V007.cpp index c3d56fbb..ba361b8d 100644 --- a/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V007.cpp +++ b/lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V007.cpp @@ -8,7 +8,7 @@ NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetVideoURL( void *args ) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetVideoURL_params *params = (struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetVideoURL_params *)args; - struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V007 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V007 *)params->linux_side; + struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V007 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V007 *)params->u_iface; iface->GetVideoURL( params->unVideoAppID ); return 0; } @@ -16,7 +16,7 @@ NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetVideoURL( void *args ) NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V007_IsBroadcasting( void *args ) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_IsBroadcasting_params *params = (struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_IsBroadcasting_params *)args; - struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V007 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V007 *)params->linux_side; + struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V007 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V007 *)params->u_iface; params->_ret = iface->IsBroadcasting( params->pnNumViewers ); return 0; } @@ -24,7 +24,7 @@ NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V007_IsBroadcasting( void *args ) NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFSettings( void *args ) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFSettings_params *params = (struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFSettings_params *)args; - struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V007 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V007 *)params->linux_side; + struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V007 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V007 *)params->u_iface; iface->GetOPFSettings( params->unVideoAppID ); return 0; } @@ -32,7 +32,7 @@ NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFSettings( void *args ) NTSTATUS ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFStringForApp( void *args ) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFStringForApp_params *params = (struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFStringForApp_params *)args; - struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V007 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V007 *)params->linux_side; + struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V007 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V007 *)params->u_iface; params->_ret = iface->GetOPFStringForApp( params->unVideoAppID, params->pchBuffer, params->pnBufferSize ); return 0; } diff --git a/lsteamclient/gen_wrapper.py b/lsteamclient/gen_wrapper.py index 68e1b1b7..d0749260 100755 --- a/lsteamclient/gen_wrapper.py +++ b/lsteamclient/gen_wrapper.py @@ -673,8 +673,8 @@ class Method: params = [ret] + params names = ['_ret'] + names - params = ['struct u_steam_iface *linux_side'] + params - names = ['linux_side'] + names + params = ['struct u_iface *u_iface'] + params + names = ['u_iface'] + names out(f'struct {self.full_name}_params\n') out(u'{\n') @@ -951,12 +951,12 @@ def handle_method_cpp(method, classname, out): if underlying_type(p).spelling in MANUAL_TYPES or p.spelling in MANUAL_PARAMS} - names = ['linux_side'] + names + names = ['u_iface'] + names out(f'NTSTATUS {method.full_name}( void *args )\n') out(u'{\n') out(f' struct {method.full_name}_params *params = (struct {method.full_name}_params *)args;\n') - out(f' struct u_{klass.full_name} *iface = (struct u_{klass.full_name} *)params->linux_side;\n') + out(f' struct u_{klass.full_name} *iface = (struct u_{klass.full_name} *)params->u_iface;\n') params = list(zip(names[1:], method.get_arguments())) for i, (name, param) in enumerate(params[:-1]): @@ -1083,7 +1083,7 @@ def handle_method_c(klass, method, winclassname, out): params = [f'{declspec(method.result_type, "*_ret", "w_")}'] + params names = ['_ret'] + names - params = ['struct w_steam_iface *_this'] + params + params = ['struct w_iface *_this'] + params names = ['_this'] + names out(f'{ret}__thiscall {winclassname}_{method.name}({", ".join(params)})\n') @@ -1091,7 +1091,7 @@ def handle_method_c(klass, method, winclassname, out): out(f' struct {method.full_name}_params params =\n') out(u' {\n') - out(u' .linux_side = _this->u_iface,\n') + out(u' .u_iface = _this->u_iface,\n') for name in names[1:]: out(f' .{name} = {name},\n') out(u' };\n') @@ -1150,7 +1150,7 @@ def handle_class(klass): if is_manual_method(klass, method, "w"): continue if type(method) is Destructor: - out(f'void __thiscall {winclassname}_{method.name}(struct w_steam_iface *_this)\n{{/* never called */}}\n\n') + out(f'void __thiscall {winclassname}_{method.name}(struct w_iface *_this)\n{{/* never called */}}\n\n') else: handle_method_c(klass, method, winclassname, out) @@ -1165,9 +1165,9 @@ def handle_class(klass): out(u' );\n') out(u'__ASM_BLOCK_END\n') out(u'\n') - out(f'struct w_steam_iface *create_{winclassname}(void *u_iface)\n') + out(f'struct w_iface *create_{winclassname}( struct u_iface *u_iface )\n') out(u'{\n') - out(f' struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "{klass.version}");\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') out(f' r->vtable = alloc_vtable(&{winclassname}_vtable, {len(klass.methods)}, "{klass.version}");\n') out(u' r->u_iface = u_iface;\n') @@ -1390,7 +1390,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_steam_iface *create_win{klass.full_name}(void *);\n") + out(f"extern struct w_iface *create_win{klass.full_name}( struct u_iface * );\n") with open("steamclient_generated.c", "w") as file: diff --git a/lsteamclient/steam_input_manual.c b/lsteamclient/steam_input_manual.c index f27670b5..044ec9e9 100644 --- a/lsteamclient/steam_input_manual.c +++ b/lsteamclient/steam_input_manual.c @@ -4,11 +4,11 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); /* ISteamController_SteamController005 */ -const char *__thiscall winISteamController_SteamController005_GetGlyphForActionOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) +const char *__thiscall winISteamController_SteamController005_GetGlyphForActionOrigin( struct w_iface *_this, uint32_t eOrigin ) { struct ISteamController_SteamController005_GetGlyphForActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; @@ -20,11 +20,11 @@ const char *__thiscall winISteamController_SteamController005_GetGlyphForActionO /* ISteamController_SteamController006 */ -const char *__thiscall winISteamController_SteamController006_GetGlyphForActionOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) +const char *__thiscall winISteamController_SteamController006_GetGlyphForActionOrigin( struct w_iface *_this, uint32_t eOrigin ) { struct ISteamController_SteamController006_GetGlyphForActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; @@ -36,11 +36,11 @@ const char *__thiscall winISteamController_SteamController006_GetGlyphForActionO /* ISteamController_SteamController007 */ -const char *__thiscall winISteamController_SteamController007_GetGlyphForActionOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) +const char *__thiscall winISteamController_SteamController007_GetGlyphForActionOrigin( struct w_iface *_this, uint32_t eOrigin ) { struct ISteamController_SteamController007_GetGlyphForActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; @@ -50,11 +50,11 @@ const char *__thiscall winISteamController_SteamController007_GetGlyphForActionO return params._ret; } -const char *__thiscall winISteamController_SteamController007_GetGlyphForXboxOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) +const char *__thiscall winISteamController_SteamController007_GetGlyphForXboxOrigin( struct w_iface *_this, uint32_t eOrigin ) { struct ISteamController_SteamController007_GetGlyphForXboxOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; @@ -66,11 +66,11 @@ const char *__thiscall winISteamController_SteamController007_GetGlyphForXboxOri /* ISteamController_SteamController008 */ -const char *__thiscall winISteamController_SteamController008_GetGlyphForActionOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) +const char *__thiscall winISteamController_SteamController008_GetGlyphForActionOrigin( struct w_iface *_this, uint32_t eOrigin ) { struct ISteamController_SteamController008_GetGlyphForActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; @@ -80,11 +80,11 @@ const char *__thiscall winISteamController_SteamController008_GetGlyphForActionO return params._ret; } -const char *__thiscall winISteamController_SteamController008_GetGlyphForXboxOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) +const char *__thiscall winISteamController_SteamController008_GetGlyphForXboxOrigin( struct w_iface *_this, uint32_t eOrigin ) { struct ISteamController_SteamController008_GetGlyphForXboxOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; @@ -96,11 +96,11 @@ const char *__thiscall winISteamController_SteamController008_GetGlyphForXboxOri /* ISteamInput_SteamInput001 */ -const char *__thiscall winISteamInput_SteamInput001_GetGlyphForActionOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) +const char *__thiscall winISteamInput_SteamInput001_GetGlyphForActionOrigin( struct w_iface *_this, uint32_t eOrigin ) { struct ISteamInput_SteamInput001_GetGlyphForActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; @@ -110,11 +110,11 @@ const char *__thiscall winISteamInput_SteamInput001_GetGlyphForActionOrigin( str return params._ret; } -const char *__thiscall winISteamInput_SteamInput001_GetGlyphForXboxOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) +const char *__thiscall winISteamInput_SteamInput001_GetGlyphForXboxOrigin( struct w_iface *_this, uint32_t eOrigin ) { struct ISteamInput_SteamInput001_GetGlyphForXboxOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; @@ -126,11 +126,11 @@ const char *__thiscall winISteamInput_SteamInput001_GetGlyphForXboxOrigin( struc /* ISteamInput_SteamInput002 */ -const char *__thiscall winISteamInput_SteamInput002_GetGlyphForActionOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) +const char *__thiscall winISteamInput_SteamInput002_GetGlyphForActionOrigin( struct w_iface *_this, uint32_t eOrigin ) { struct ISteamInput_SteamInput002_GetGlyphForActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; @@ -140,11 +140,11 @@ const char *__thiscall winISteamInput_SteamInput002_GetGlyphForActionOrigin( str return params._ret; } -const char *__thiscall winISteamInput_SteamInput002_GetGlyphForXboxOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) +const char *__thiscall winISteamInput_SteamInput002_GetGlyphForXboxOrigin( struct w_iface *_this, uint32_t eOrigin ) { struct ISteamInput_SteamInput002_GetGlyphForXboxOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; @@ -156,12 +156,12 @@ const char *__thiscall winISteamInput_SteamInput002_GetGlyphForXboxOrigin( struc /* ISteamInput_SteamInput005 */ -const char *__thiscall winISteamInput_SteamInput005_GetGlyphPNGForActionOrigin( struct w_steam_iface *_this, uint32_t eOrigin, +const char *__thiscall winISteamInput_SteamInput005_GetGlyphPNGForActionOrigin( struct w_iface *_this, uint32_t eOrigin, uint32_t eSize, uint32_t unFlags ) { struct ISteamInput_SteamInput005_GetGlyphPNGForActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, .eSize = eSize, .unFlags = unFlags, @@ -173,12 +173,12 @@ const char *__thiscall winISteamInput_SteamInput005_GetGlyphPNGForActionOrigin( return params._ret; } -const char *__thiscall winISteamInput_SteamInput005_GetGlyphSVGForActionOrigin( struct w_steam_iface *_this, +const char *__thiscall winISteamInput_SteamInput005_GetGlyphSVGForActionOrigin( struct w_iface *_this, uint32_t eOrigin, uint32_t unFlags ) { struct ISteamInput_SteamInput005_GetGlyphSVGForActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, .unFlags = unFlags, }; @@ -189,11 +189,11 @@ const char *__thiscall winISteamInput_SteamInput005_GetGlyphSVGForActionOrigin( return params._ret; } -const char *__thiscall winISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy( struct w_steam_iface *_this, uint32_t eOrigin ) +const char *__thiscall winISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy( struct w_iface *_this, uint32_t eOrigin ) { struct ISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; @@ -203,11 +203,11 @@ const char *__thiscall winISteamInput_SteamInput005_GetGlyphForActionOrigin_Lega return params._ret; } -const char *__thiscall winISteamInput_SteamInput005_GetGlyphForXboxOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) +const char *__thiscall winISteamInput_SteamInput005_GetGlyphForXboxOrigin( struct w_iface *_this, uint32_t eOrigin ) { struct ISteamInput_SteamInput005_GetGlyphForXboxOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; @@ -219,12 +219,12 @@ const char *__thiscall winISteamInput_SteamInput005_GetGlyphForXboxOrigin( struc /* ISteamInput_SteamInput006 */ -const char *__thiscall winISteamInput_SteamInput006_GetGlyphPNGForActionOrigin( struct w_steam_iface *_this, uint32_t eOrigin, +const char *__thiscall winISteamInput_SteamInput006_GetGlyphPNGForActionOrigin( struct w_iface *_this, uint32_t eOrigin, uint32_t eSize, uint32_t unFlags ) { struct ISteamInput_SteamInput006_GetGlyphPNGForActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, .eSize = eSize, .unFlags = unFlags, @@ -236,12 +236,12 @@ const char *__thiscall winISteamInput_SteamInput006_GetGlyphPNGForActionOrigin( return params._ret; } -const char *__thiscall winISteamInput_SteamInput006_GetGlyphSVGForActionOrigin( struct w_steam_iface *_this, +const char *__thiscall winISteamInput_SteamInput006_GetGlyphSVGForActionOrigin( struct w_iface *_this, uint32_t eOrigin, uint32_t unFlags ) { struct ISteamInput_SteamInput006_GetGlyphSVGForActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, .unFlags = unFlags, }; @@ -252,11 +252,11 @@ const char *__thiscall winISteamInput_SteamInput006_GetGlyphSVGForActionOrigin( return params._ret; } -const char *__thiscall winISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy( struct w_steam_iface *_this, uint32_t eOrigin ) +const char *__thiscall winISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy( struct w_iface *_this, uint32_t eOrigin ) { struct ISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; @@ -266,11 +266,11 @@ const char *__thiscall winISteamInput_SteamInput006_GetGlyphForActionOrigin_Lega return params._ret; } -const char *__thiscall winISteamInput_SteamInput006_GetGlyphForXboxOrigin( struct w_steam_iface *_this, uint32_t eOrigin ) +const char *__thiscall winISteamInput_SteamInput006_GetGlyphForXboxOrigin( struct w_iface *_this, uint32_t eOrigin ) { struct ISteamInput_SteamInput006_GetGlyphForXboxOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; diff --git a/lsteamclient/steam_networking_manual.c b/lsteamclient/steam_networking_manual.c index 37636a4d..866f5379 100644 --- a/lsteamclient/steam_networking_manual.c +++ b/lsteamclient/steam_networking_manual.c @@ -256,13 +256,13 @@ static BOOL networking_message_pool_receive_153a( uint32_t capacity, int32_t cou /* ISteamNetworkingSockets_SteamNetworkingSockets002 */ -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection( struct w_steam_iface *_this, +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection( struct w_iface *_this, uint32_t hConn, w_SteamNetworkingMessage_t_144 **ppOutMessages, int32_t nMaxMessages ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .ppOutMessages = ppOutMessages, .nMaxMessages = nMaxMessages, @@ -277,12 +277,12 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveM return params._ret; } -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket( struct w_steam_iface *_this, uint32_t hSocket, +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket( struct w_iface *_this, uint32_t hSocket, w_SteamNetworkingMessage_t_144 **ppOutMessages, int32_t nMaxMessages ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .ppOutMessages = ppOutMessages, .nMaxMessages = nMaxMessages, @@ -299,13 +299,13 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveM /* ISteamNetworkingSockets_SteamNetworkingSockets004 */ -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection( struct w_steam_iface *_this, +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection( struct w_iface *_this, uint32_t hConn, w_SteamNetworkingMessage_t_144 **ppOutMessages, int32_t nMaxMessages ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .ppOutMessages = ppOutMessages, .nMaxMessages = nMaxMessages, @@ -320,12 +320,12 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveM return params._ret; } -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket( struct w_steam_iface *_this, uint32_t hSocket, +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket( struct w_iface *_this, uint32_t hSocket, w_SteamNetworkingMessage_t_144 **ppOutMessages, int32_t nMaxMessages ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .ppOutMessages = ppOutMessages, .nMaxMessages = nMaxMessages, @@ -342,13 +342,13 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveM /* ISteamNetworkingSockets_SteamNetworkingSockets006 */ -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection( struct w_steam_iface *_this, +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection( struct w_iface *_this, uint32_t hConn, w_SteamNetworkingMessage_t_147 **ppOutMessages, int32_t nMaxMessages ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .ppOutMessages = ppOutMessages, .nMaxMessages = nMaxMessages, @@ -363,12 +363,12 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveM return params._ret; } -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket( struct w_steam_iface *_this, uint32_t hSocket, +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket( struct w_iface *_this, uint32_t hSocket, w_SteamNetworkingMessage_t_147 **ppOutMessages, int32_t nMaxMessages ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .ppOutMessages = ppOutMessages, .nMaxMessages = nMaxMessages, @@ -383,11 +383,11 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveM return params._ret; } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages(struct w_steam_iface *_this, int32_t nMessages, w_SteamNetworkingMessage_t_147 **pMessages, int64_t *pOutMessageNumberOrResult) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages(struct w_iface *_this, int32_t nMessages, w_SteamNetworkingMessage_t_147 **pMessages, int64_t *pOutMessageNumberOrResult) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nMessages = nMessages, .pMessages = pMessages, .pOutMessageNumberOrResult = pOutMessageNumberOrResult, @@ -402,13 +402,13 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SendMessage /* ISteamNetworkingSockets_SteamNetworkingSockets008 */ -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection( struct w_steam_iface *_this, +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection( struct w_iface *_this, uint32_t hConn, w_SteamNetworkingMessage_t_147 **ppOutMessages, int32_t nMaxMessages ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .ppOutMessages = ppOutMessages, .nMaxMessages = nMaxMessages, @@ -423,13 +423,13 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveM return params._ret; } -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup( struct w_steam_iface *_this, uint32_t hPollGroup, +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup( struct w_iface *_this, uint32_t hPollGroup, w_SteamNetworkingMessage_t_147 **ppOutMessages, int32_t nMaxMessages ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPollGroup = hPollGroup, .ppOutMessages = ppOutMessages, .nMaxMessages = nMaxMessages, @@ -444,11 +444,11 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveM return params._ret; } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages(struct w_steam_iface *_this, int32_t nMessages, w_SteamNetworkingMessage_t_147 *const *pMessages, int64_t *pOutMessageNumberOrResult) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages(struct w_iface *_this, int32_t nMessages, w_SteamNetworkingMessage_t_147 *const *pMessages, int64_t *pOutMessageNumberOrResult) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nMessages = nMessages, .pMessages = pMessages, .pOutMessageNumberOrResult = pOutMessageNumberOrResult, @@ -463,13 +463,13 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SendMessage /* ISteamNetworkingSockets_SteamNetworkingSockets009 */ -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection( struct w_steam_iface *_this, +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection( struct w_iface *_this, uint32_t hConn, w_SteamNetworkingMessage_t_147 **ppOutMessages, int32_t nMaxMessages ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .ppOutMessages = ppOutMessages, .nMaxMessages = nMaxMessages, @@ -484,13 +484,13 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveM return params._ret; } -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup( struct w_steam_iface *_this, uint32_t hPollGroup, +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup( struct w_iface *_this, uint32_t hPollGroup, w_SteamNetworkingMessage_t_147 **ppOutMessages, int32_t nMaxMessages ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPollGroup = hPollGroup, .ppOutMessages = ppOutMessages, .nMaxMessages = nMaxMessages, @@ -505,11 +505,11 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveM return params._ret; } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages(struct w_steam_iface *_this, int32_t nMessages, w_SteamNetworkingMessage_t_147 *const *pMessages, int64_t *pOutMessageNumberOrResult) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages(struct w_iface *_this, int32_t nMessages, w_SteamNetworkingMessage_t_147 *const *pMessages, int64_t *pOutMessageNumberOrResult) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nMessages = nMessages, .pMessages = pMessages, .pOutMessageNumberOrResult = pOutMessageNumberOrResult, @@ -524,11 +524,11 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SendMessage /* ISteamNetworkingUtils_SteamNetworkingUtils003 */ -w_SteamNetworkingMessage_t_147 *__thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage( struct w_steam_iface *_this, int32_t cbAllocateBuffer ) +w_SteamNetworkingMessage_t_147 *__thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage( struct w_iface *_this, int32_t cbAllocateBuffer ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cbAllocateBuffer = cbAllocateBuffer, }; struct networking_message *message; @@ -553,21 +553,21 @@ w_SteamNetworkingMessage_t_147 *__thiscall winISteamNetworkingUtils_SteamNetwork /* ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 */ -void __thiscall winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort( struct w_steam_iface *_this ) +void __thiscall winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort( struct w_iface *_this ) { - struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort_params params = {.linux_side = _this->u_iface}; + struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort_params params = {.u_iface = _this->u_iface}; TRACE( "%p\n", _this ); STEAMCLIENT_CALL( ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort, ¶ms ); HeapFree( GetProcessHeap(), 0, _this ); } -int32_t __thiscall winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages( struct w_steam_iface *_this, +int32_t __thiscall winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages( struct w_iface *_this, w_SteamNetworkingMessage_t_153a **ppOutMessages, int32_t nMaxMessages ) { struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ppOutMessages = ppOutMessages, .nMaxMessages = nMaxMessages, }; @@ -583,13 +583,13 @@ int32_t __thiscall winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ /* ISteamNetworkingMessages_SteamNetworkingMessages002 */ -int32_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel( struct w_steam_iface *_this, int32_t nLocalChannel, +int32_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel( struct w_iface *_this, int32_t nLocalChannel, w_SteamNetworkingMessage_t_153a **ppOutMessages, int32_t nMaxMessages ) { struct ISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nLocalChannel = nLocalChannel, .ppOutMessages = ppOutMessages, .nMaxMessages = nMaxMessages, @@ -606,13 +606,13 @@ int32_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_Receiv /* ISteamNetworkingSockets_SteamNetworkingSockets012 */ -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection( struct w_steam_iface *_this, +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection( struct w_iface *_this, uint32_t hConn, w_SteamNetworkingMessage_t_153a **ppOutMessages, int32_t nMaxMessages ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .ppOutMessages = ppOutMessages, .nMaxMessages = nMaxMessages, @@ -627,13 +627,13 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveM return params._ret; } -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup( struct w_steam_iface *_this, uint32_t hPollGroup, +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup( struct w_iface *_this, uint32_t hPollGroup, w_SteamNetworkingMessage_t_153a **ppOutMessages, int32_t nMaxMessages ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPollGroup = hPollGroup, .ppOutMessages = ppOutMessages, .nMaxMessages = nMaxMessages, @@ -650,11 +650,11 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveM /* ISteamNetworkingUtils_SteamNetworkingUtils004 */ -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages(struct w_steam_iface *_this, int32_t nMessages, w_SteamNetworkingMessage_t_153a *const *pMessages, int64_t *pOutMessageNumberOrResult) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages(struct w_iface *_this, int32_t nMessages, w_SteamNetworkingMessage_t_153a *const *pMessages, int64_t *pOutMessageNumberOrResult) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nMessages = nMessages, .pMessages = pMessages, .pOutMessageNumberOrResult = pOutMessageNumberOrResult, @@ -667,11 +667,11 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SendMessage for (i = 0; i < nMessages; i++) pMessages[i]->m_pfnRelease( pMessages[i] ); } -w_SteamNetworkingMessage_t_153a *__thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage( struct w_steam_iface *_this, int32_t cbAllocateBuffer ) +w_SteamNetworkingMessage_t_153a *__thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage( struct w_iface *_this, int32_t cbAllocateBuffer ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cbAllocateBuffer = cbAllocateBuffer, }; struct networking_message *message; @@ -693,11 +693,11 @@ w_SteamNetworkingMessage_t_153a *__thiscall winISteamNetworkingUtils_SteamNetwor return params._ret; } -void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest( struct w_steam_iface *_this, void *hServerListRequest ) +void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest( struct w_iface *_this, void *hServerListRequest ) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hServerListRequest = hServerListRequest, }; diff --git a/lsteamclient/steamclient_generated.h b/lsteamclient/steamclient_generated.h index 21a4f801..8599d811 100644 --- a/lsteamclient/steamclient_generated.h +++ b/lsteamclient/steamclient_generated.h @@ -1,206 +1,206 @@ /* This file is auto-generated, do not edit. */ -extern struct w_steam_iface *create_winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001(void *); -extern struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION001(void *); -extern struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION002(void *); -extern struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION003(void *); -extern struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION004(void *); -extern struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION005(void *); -extern struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION006(void *); -extern struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION007(void *); -extern struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION008(void *); -extern struct w_steam_iface *create_winISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001(void *); -extern struct w_steam_iface *create_winISteamController_STEAMCONTROLLER_INTERFACE_VERSION(void *); -extern struct w_steam_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001(void *); -extern struct w_steam_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002(void *); -extern struct w_steam_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003(void *); -extern struct w_steam_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004(void *); -extern struct w_steam_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005(void *); -extern struct w_steam_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001(void *); -extern struct w_steam_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002(void *); -extern struct w_steam_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003(void *); -extern struct w_steam_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V001(void *); -extern struct w_steam_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V002(void *); -extern struct w_steam_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V003(void *); -extern struct w_steam_iface *create_winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001(void *); -extern struct w_steam_iface *create_winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001(void *); -extern struct w_steam_iface *create_winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001(void *); -extern struct w_steam_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001(void *); -extern struct w_steam_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002(void *); -extern struct w_steam_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003(void *); -extern struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001(void *); -extern struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002(void *); -extern struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003(void *); -extern struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004(void *); -extern struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005(void *); -extern struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006(void *); -extern struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007(void *); -extern struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008(void *); -extern struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009(void *); -extern struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010(void *); -extern struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011(void *); -extern struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012(void *); -extern struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013(void *); -extern struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014(void *); -extern struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016(void *); -extern struct w_steam_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001(void *); -extern struct w_steam_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002(void *); -extern struct w_steam_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003(void *); -extern struct w_steam_iface *create_winISteamTimeline_STEAMTIMELINE_INTERFACE_V001(void *); -extern struct w_steam_iface *create_winISteamTimeline_STEAMTIMELINE_INTERFACE_V004(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION001(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION002(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION003(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION004(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION005(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION006(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION007(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION008(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION009(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION010(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION012(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION013(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION014(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION015(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION016(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION017(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION018(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION020(void *); -extern struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION021(void *); -extern struct w_steam_iface *create_winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001(void *); -extern struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001(void *); -extern struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002(void *); -extern struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003(void *); -extern struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004(void *); -extern struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005(void *); -extern struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006(void *); -extern struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007(void *); -extern struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008(void *); -extern struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009(void *); -extern struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010(void *); -extern struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011(void *); -extern struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012(void *); -extern struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013(void *); -extern struct w_steam_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V001(void *); -extern struct w_steam_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V002(void *); -extern struct w_steam_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V007(void *); -extern struct w_steam_iface *create_winISteamClient_SteamClient006(void *); -extern struct w_steam_iface *create_winISteamClient_SteamClient007(void *); -extern struct w_steam_iface *create_winISteamClient_SteamClient008(void *); -extern struct w_steam_iface *create_winISteamClient_SteamClient009(void *); -extern struct w_steam_iface *create_winISteamClient_SteamClient010(void *); -extern struct w_steam_iface *create_winISteamClient_SteamClient011(void *); -extern struct w_steam_iface *create_winISteamClient_SteamClient012(void *); -extern struct w_steam_iface *create_winISteamClient_SteamClient013(void *); -extern struct w_steam_iface *create_winISteamClient_SteamClient014(void *); -extern struct w_steam_iface *create_winISteamClient_SteamClient015(void *); -extern struct w_steam_iface *create_winISteamClient_SteamClient016(void *); -extern struct w_steam_iface *create_winISteamClient_SteamClient017(void *); -extern struct w_steam_iface *create_winISteamClient_SteamClient018(void *); -extern struct w_steam_iface *create_winISteamClient_SteamClient019(void *); -extern struct w_steam_iface *create_winISteamClient_SteamClient020(void *); -extern struct w_steam_iface *create_winISteamClient_SteamClient021(void *); -extern struct w_steam_iface *create_winISteamController_SteamController003(void *); -extern struct w_steam_iface *create_winISteamController_SteamController004(void *); -extern struct w_steam_iface *create_winISteamController_SteamController005(void *); -extern struct w_steam_iface *create_winISteamController_SteamController006(void *); -extern struct w_steam_iface *create_winISteamController_SteamController007(void *); -extern struct w_steam_iface *create_winISteamController_SteamController008(void *); -extern struct w_steam_iface *create_winISteamFriends_SteamFriends001(void *); -extern struct w_steam_iface *create_winISteamFriends_SteamFriends002(void *); -extern struct w_steam_iface *create_winISteamFriends_SteamFriends003(void *); -extern struct w_steam_iface *create_winISteamFriends_SteamFriends004(void *); -extern struct w_steam_iface *create_winISteamFriends_SteamFriends005(void *); -extern struct w_steam_iface *create_winISteamFriends_SteamFriends006(void *); -extern struct w_steam_iface *create_winISteamFriends_SteamFriends007(void *); -extern struct w_steam_iface *create_winISteamFriends_SteamFriends008(void *); -extern struct w_steam_iface *create_winISteamFriends_SteamFriends009(void *); -extern struct w_steam_iface *create_winISteamFriends_SteamFriends010(void *); -extern struct w_steam_iface *create_winISteamFriends_SteamFriends011(void *); -extern struct w_steam_iface *create_winISteamFriends_SteamFriends012(void *); -extern struct w_steam_iface *create_winISteamFriends_SteamFriends013(void *); -extern struct w_steam_iface *create_winISteamFriends_SteamFriends014(void *); -extern struct w_steam_iface *create_winISteamFriends_SteamFriends015(void *); -extern struct w_steam_iface *create_winISteamFriends_SteamFriends017(void *); -extern struct w_steam_iface *create_winISteamFriends_SteamFriends018(void *); -extern struct w_steam_iface *create_winISteamGameCoordinator_SteamGameCoordinator001(void *); -extern struct w_steam_iface *create_winISteamGameServer_SteamGameServer002(void *); -extern struct w_steam_iface *create_winISteamGameServer_SteamGameServer003(void *); -extern struct w_steam_iface *create_winISteamGameServer_SteamGameServer004(void *); -extern struct w_steam_iface *create_winISteamGameServer_SteamGameServer005(void *); -extern struct w_steam_iface *create_winISteamGameServer_SteamGameServer008(void *); -extern struct w_steam_iface *create_winISteamGameServer_SteamGameServer009(void *); -extern struct w_steam_iface *create_winISteamGameServer_SteamGameServer010(void *); -extern struct w_steam_iface *create_winISteamGameServer_SteamGameServer011(void *); -extern struct w_steam_iface *create_winISteamGameServer_SteamGameServer012(void *); -extern struct w_steam_iface *create_winISteamGameServer_SteamGameServer013(void *); -extern struct w_steam_iface *create_winISteamGameServer_SteamGameServer014(void *); -extern struct w_steam_iface *create_winISteamGameServer_SteamGameServer015(void *); -extern struct w_steam_iface *create_winISteamGameServerStats_SteamGameServerStats001(void *); -extern struct w_steam_iface *create_winISteamGameStats_SteamGameStats001(void *); -extern struct w_steam_iface *create_winISteamInput_SteamInput001(void *); -extern struct w_steam_iface *create_winISteamInput_SteamInput002(void *); -extern struct w_steam_iface *create_winISteamInput_SteamInput005(void *); -extern struct w_steam_iface *create_winISteamInput_SteamInput006(void *); -extern struct w_steam_iface *create_winISteamMasterServerUpdater_SteamMasterServerUpdater001(void *); -extern struct w_steam_iface *create_winISteamGameSearch_SteamMatchGameSearch001(void *); -extern struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking001(void *); -extern struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking002(void *); -extern struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking003(void *); -extern struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking004(void *); -extern struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking005(void *); -extern struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking006(void *); -extern struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking007(void *); -extern struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking008(void *); -extern struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking009(void *); -extern struct w_steam_iface *create_winISteamMatchmakingServers_SteamMatchMakingServers001(void *); -extern struct w_steam_iface *create_winISteamMatchmakingServers_SteamMatchMakingServers002(void *); -extern struct w_steam_iface *create_winISteamNetworking_SteamNetworking001(void *); -extern struct w_steam_iface *create_winISteamNetworking_SteamNetworking002(void *); -extern struct w_steam_iface *create_winISteamNetworking_SteamNetworking003(void *); -extern struct w_steam_iface *create_winISteamNetworking_SteamNetworking004(void *); -extern struct w_steam_iface *create_winISteamNetworking_SteamNetworking005(void *); -extern struct w_steam_iface *create_winISteamNetworking_SteamNetworking006(void *); -extern struct w_steam_iface *create_winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001(void *); -extern struct w_steam_iface *create_winISteamNetworkingMessages_SteamNetworkingMessages002(void *); -extern struct w_steam_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets002(void *); -extern struct w_steam_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets004(void *); -extern struct w_steam_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets006(void *); -extern struct w_steam_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets008(void *); -extern struct w_steam_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets009(void *); -extern struct w_steam_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets012(void *); -extern struct w_steam_iface *create_winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002(void *); -extern struct w_steam_iface *create_winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003(void *); -extern struct w_steam_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils001(void *); -extern struct w_steam_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils002(void *); -extern struct w_steam_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils003(void *); -extern struct w_steam_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils004(void *); -extern struct w_steam_iface *create_winISteamParties_SteamParties002(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser004(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser005(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser006(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser007(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser008(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser009(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser010(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser011(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser012(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser013(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser014(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser015(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser016(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser017(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser018(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser019(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser020(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser021(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser022(void *); -extern struct w_steam_iface *create_winISteamUser_SteamUser023(void *); -extern struct w_steam_iface *create_winISteamUtils_SteamUtils002(void *); -extern struct w_steam_iface *create_winISteamUtils_SteamUtils004(void *); -extern struct w_steam_iface *create_winISteamUtils_SteamUtils005(void *); -extern struct w_steam_iface *create_winISteamUtils_SteamUtils006(void *); -extern struct w_steam_iface *create_winISteamUtils_SteamUtils007(void *); -extern struct w_steam_iface *create_winISteamUtils_SteamUtils008(void *); -extern struct w_steam_iface *create_winISteamUtils_SteamUtils009(void *); -extern struct w_steam_iface *create_winISteamUtils_SteamUtils010(void *); +extern struct w_iface *create_winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001( struct u_iface * ); +extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION001( struct u_iface * ); +extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION002( struct u_iface * ); +extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION003( struct u_iface * ); +extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION004( struct u_iface * ); +extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION005( struct u_iface * ); +extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION006( struct u_iface * ); +extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION007( struct u_iface * ); +extern struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION008( struct u_iface * ); +extern struct w_iface *create_winISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001( struct u_iface * ); +extern struct w_iface *create_winISteamController_STEAMCONTROLLER_INTERFACE_VERSION( struct u_iface * ); +extern struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001( struct u_iface * ); +extern struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002( struct u_iface * ); +extern struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003( struct u_iface * ); +extern struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004( struct u_iface * ); +extern struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005( struct u_iface * ); +extern struct w_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001( struct u_iface * ); +extern struct w_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002( struct u_iface * ); +extern struct w_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003( struct u_iface * ); +extern struct w_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V001( struct u_iface * ); +extern struct w_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V002( struct u_iface * ); +extern struct w_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V003( struct u_iface * ); +extern struct w_iface *create_winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001( struct u_iface * ); +extern struct w_iface *create_winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001( struct u_iface * ); +extern struct w_iface *create_winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001( struct u_iface * ); +extern struct w_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001( struct u_iface * ); +extern struct w_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002( struct u_iface * ); +extern struct w_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003( struct u_iface * ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001( struct u_iface * ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002( struct u_iface * ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003( struct u_iface * ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004( struct u_iface * ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005( struct u_iface * ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006( struct u_iface * ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007( struct u_iface * ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008( struct u_iface * ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009( struct u_iface * ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010( struct u_iface * ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011( struct u_iface * ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012( struct u_iface * ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013( struct u_iface * ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014( struct u_iface * ); +extern struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016( struct u_iface * ); +extern struct w_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001( struct u_iface * ); +extern struct w_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002( struct u_iface * ); +extern struct w_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003( struct u_iface * ); +extern struct w_iface *create_winISteamTimeline_STEAMTIMELINE_INTERFACE_V001( struct u_iface * ); +extern struct w_iface *create_winISteamTimeline_STEAMTIMELINE_INTERFACE_V004( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION001( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION002( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION003( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION004( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION005( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION006( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION007( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION008( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION009( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION010( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION012( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION013( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION014( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION015( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION016( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION017( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION018( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION020( struct u_iface * ); +extern struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION021( struct u_iface * ); +extern struct w_iface *create_winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001( struct u_iface * ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001( struct u_iface * ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002( struct u_iface * ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003( struct u_iface * ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004( struct u_iface * ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005( struct u_iface * ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006( struct u_iface * ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007( struct u_iface * ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008( struct u_iface * ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009( struct u_iface * ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010( struct u_iface * ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011( struct u_iface * ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012( struct u_iface * ); +extern struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013( struct u_iface * ); +extern struct w_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V001( struct u_iface * ); +extern struct w_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V002( struct u_iface * ); +extern struct w_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V007( struct u_iface * ); +extern struct w_iface *create_winISteamClient_SteamClient006( struct u_iface * ); +extern struct w_iface *create_winISteamClient_SteamClient007( struct u_iface * ); +extern struct w_iface *create_winISteamClient_SteamClient008( struct u_iface * ); +extern struct w_iface *create_winISteamClient_SteamClient009( struct u_iface * ); +extern struct w_iface *create_winISteamClient_SteamClient010( struct u_iface * ); +extern struct w_iface *create_winISteamClient_SteamClient011( struct u_iface * ); +extern struct w_iface *create_winISteamClient_SteamClient012( struct u_iface * ); +extern struct w_iface *create_winISteamClient_SteamClient013( struct u_iface * ); +extern struct w_iface *create_winISteamClient_SteamClient014( struct u_iface * ); +extern struct w_iface *create_winISteamClient_SteamClient015( struct u_iface * ); +extern struct w_iface *create_winISteamClient_SteamClient016( struct u_iface * ); +extern struct w_iface *create_winISteamClient_SteamClient017( struct u_iface * ); +extern struct w_iface *create_winISteamClient_SteamClient018( struct u_iface * ); +extern struct w_iface *create_winISteamClient_SteamClient019( struct u_iface * ); +extern struct w_iface *create_winISteamClient_SteamClient020( struct u_iface * ); +extern struct w_iface *create_winISteamClient_SteamClient021( struct u_iface * ); +extern struct w_iface *create_winISteamController_SteamController003( struct u_iface * ); +extern struct w_iface *create_winISteamController_SteamController004( struct u_iface * ); +extern struct w_iface *create_winISteamController_SteamController005( struct u_iface * ); +extern struct w_iface *create_winISteamController_SteamController006( struct u_iface * ); +extern struct w_iface *create_winISteamController_SteamController007( struct u_iface * ); +extern struct w_iface *create_winISteamController_SteamController008( struct u_iface * ); +extern struct w_iface *create_winISteamFriends_SteamFriends001( struct u_iface * ); +extern struct w_iface *create_winISteamFriends_SteamFriends002( struct u_iface * ); +extern struct w_iface *create_winISteamFriends_SteamFriends003( struct u_iface * ); +extern struct w_iface *create_winISteamFriends_SteamFriends004( struct u_iface * ); +extern struct w_iface *create_winISteamFriends_SteamFriends005( struct u_iface * ); +extern struct w_iface *create_winISteamFriends_SteamFriends006( struct u_iface * ); +extern struct w_iface *create_winISteamFriends_SteamFriends007( struct u_iface * ); +extern struct w_iface *create_winISteamFriends_SteamFriends008( struct u_iface * ); +extern struct w_iface *create_winISteamFriends_SteamFriends009( struct u_iface * ); +extern struct w_iface *create_winISteamFriends_SteamFriends010( struct u_iface * ); +extern struct w_iface *create_winISteamFriends_SteamFriends011( struct u_iface * ); +extern struct w_iface *create_winISteamFriends_SteamFriends012( struct u_iface * ); +extern struct w_iface *create_winISteamFriends_SteamFriends013( struct u_iface * ); +extern struct w_iface *create_winISteamFriends_SteamFriends014( struct u_iface * ); +extern struct w_iface *create_winISteamFriends_SteamFriends015( struct u_iface * ); +extern struct w_iface *create_winISteamFriends_SteamFriends017( struct u_iface * ); +extern struct w_iface *create_winISteamFriends_SteamFriends018( struct u_iface * ); +extern struct w_iface *create_winISteamGameCoordinator_SteamGameCoordinator001( struct u_iface * ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer002( struct u_iface * ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer003( struct u_iface * ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer004( struct u_iface * ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer005( struct u_iface * ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer008( struct u_iface * ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer009( struct u_iface * ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer010( struct u_iface * ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer011( struct u_iface * ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer012( struct u_iface * ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer013( struct u_iface * ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer014( struct u_iface * ); +extern struct w_iface *create_winISteamGameServer_SteamGameServer015( struct u_iface * ); +extern struct w_iface *create_winISteamGameServerStats_SteamGameServerStats001( struct u_iface * ); +extern struct w_iface *create_winISteamGameStats_SteamGameStats001( struct u_iface * ); +extern struct w_iface *create_winISteamInput_SteamInput001( struct u_iface * ); +extern struct w_iface *create_winISteamInput_SteamInput002( struct u_iface * ); +extern struct w_iface *create_winISteamInput_SteamInput005( struct u_iface * ); +extern struct w_iface *create_winISteamInput_SteamInput006( struct u_iface * ); +extern struct w_iface *create_winISteamMasterServerUpdater_SteamMasterServerUpdater001( struct u_iface * ); +extern struct w_iface *create_winISteamGameSearch_SteamMatchGameSearch001( struct u_iface * ); +extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking001( struct u_iface * ); +extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking002( struct u_iface * ); +extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking003( struct u_iface * ); +extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking004( struct u_iface * ); +extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking005( struct u_iface * ); +extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking006( struct u_iface * ); +extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking007( struct u_iface * ); +extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking008( struct u_iface * ); +extern struct w_iface *create_winISteamMatchmaking_SteamMatchMaking009( struct u_iface * ); +extern struct w_iface *create_winISteamMatchmakingServers_SteamMatchMakingServers001( struct u_iface * ); +extern struct w_iface *create_winISteamMatchmakingServers_SteamMatchMakingServers002( struct u_iface * ); +extern struct w_iface *create_winISteamNetworking_SteamNetworking001( struct u_iface * ); +extern struct w_iface *create_winISteamNetworking_SteamNetworking002( struct u_iface * ); +extern struct w_iface *create_winISteamNetworking_SteamNetworking003( struct u_iface * ); +extern struct w_iface *create_winISteamNetworking_SteamNetworking004( struct u_iface * ); +extern struct w_iface *create_winISteamNetworking_SteamNetworking005( struct u_iface * ); +extern struct w_iface *create_winISteamNetworking_SteamNetworking006( struct u_iface * ); +extern struct w_iface *create_winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001( struct u_iface * ); +extern struct w_iface *create_winISteamNetworkingMessages_SteamNetworkingMessages002( struct u_iface * ); +extern struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets002( struct u_iface * ); +extern struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets004( struct u_iface * ); +extern struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets006( struct u_iface * ); +extern struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets008( struct u_iface * ); +extern struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets009( struct u_iface * ); +extern struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets012( struct u_iface * ); +extern struct w_iface *create_winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002( struct u_iface * ); +extern struct w_iface *create_winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003( struct u_iface * ); +extern struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils001( struct u_iface * ); +extern struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils002( struct u_iface * ); +extern struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils003( struct u_iface * ); +extern struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils004( struct u_iface * ); +extern struct w_iface *create_winISteamParties_SteamParties002( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser004( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser005( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser006( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser007( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser008( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser009( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser010( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser011( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser012( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser013( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser014( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser015( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser016( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser017( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser018( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser019( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser020( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser021( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser022( struct u_iface * ); +extern struct w_iface *create_winISteamUser_SteamUser023( struct u_iface * ); +extern struct w_iface *create_winISteamUtils_SteamUtils002( struct u_iface * ); +extern struct w_iface *create_winISteamUtils_SteamUtils004( struct u_iface * ); +extern struct w_iface *create_winISteamUtils_SteamUtils005( struct u_iface * ); +extern struct w_iface *create_winISteamUtils_SteamUtils006( struct u_iface * ); +extern struct w_iface *create_winISteamUtils_SteamUtils007( struct u_iface * ); +extern struct w_iface *create_winISteamUtils_SteamUtils008( struct u_iface * ); +extern struct w_iface *create_winISteamUtils_SteamUtils009( struct u_iface * ); +extern struct w_iface *create_winISteamUtils_SteamUtils010( struct u_iface * ); diff --git a/lsteamclient/steamclient_main.c b/lsteamclient/steamclient_main.c index cd2fc70c..95ac556f 100644 --- a/lsteamclient/steamclient_main.c +++ b/lsteamclient/steamclient_main.c @@ -270,15 +270,15 @@ struct steamclient_interface struct list entry; const char *name; void *u_iface; - struct w_steam_iface *w_iface; + struct w_iface *w_iface; }; static struct list steamclient_interfaces = LIST_INIT(steamclient_interfaces); -struct w_steam_iface *create_win_interface(const char *name, void *u_iface) +struct w_iface *create_win_interface( const char *name, struct u_iface *u_iface ) { struct steamclient_interface *e; - struct w_steam_iface *ret = NULL; + struct w_iface *ret = NULL; iface_constructor constructor; TRACE("trying to create %s\n", name); diff --git a/lsteamclient/steamclient_private.h b/lsteamclient/steamclient_private.h index dc754c70..6592c59b 100644 --- a/lsteamclient/steamclient_private.h +++ b/lsteamclient/steamclient_private.h @@ -30,19 +30,20 @@ extern "C" { #define U_CDECL __attribute__((sysv_abi)) #define U_STDCALL __attribute__((sysv_abi)) -struct w_steam_iface +struct u_iface; +struct w_iface { vtable_ptr *vtable; void *u_iface; }; -typedef struct w_steam_iface *(*iface_constructor)( void * ); +typedef struct w_iface *(*iface_constructor)( struct u_iface * ); extern iface_constructor find_iface_constructor( const char *iface_version ); -extern struct w_steam_iface *create_winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001( void * ); +extern struct w_iface *create_winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001( struct u_iface * ); extern void execute_pending_callbacks(void); -struct w_steam_iface *create_win_interface(const char *name, void *linux_side); +struct w_iface *create_win_interface( const char *name, struct u_iface *u_iface ); void *alloc_mem_for_iface(size_t size, const char *iface_version); void *alloc_vtable(void *vtable, unsigned int method_count, const char *iface_version); diff --git a/lsteamclient/unix_private.h b/lsteamclient/unix_private.h index 9e4b6766..08a31db3 100644 --- a/lsteamclient/unix_private.h +++ b/lsteamclient/unix_private.h @@ -20,11 +20,11 @@ extern "C" { #endif /* __cplusplus */ -struct w_steam_iface; -extern void queue_vtable_callback( struct w_steam_iface *w_iface, enum callback_type type, uint64_t arg0, uint64_t arg1, uint64_t arg2 ); -extern void queue_vtable_callback_0_server_responded( struct w_steam_iface *w_iface, gameserveritem_t_105 *server ); -extern void queue_vtable_callback_0_add_player_to_list( struct w_steam_iface *w_iface, const char *pchName, int nScore, float flTimePlayed ); -extern void queue_vtable_callback_0_rules_responded( struct w_steam_iface *w_iface, const char *pchRule, const char *pchValue ); +struct w_iface; +extern void queue_vtable_callback( struct w_iface *w_iface, enum callback_type type, uint64_t arg0, uint64_t arg1, uint64_t arg2 ); +extern void queue_vtable_callback_0_server_responded( struct w_iface *w_iface, gameserveritem_t_105 *server ); +extern void queue_vtable_callback_0_add_player_to_list( struct w_iface *w_iface, const char *pchName, int nScore, float flTimePlayed ); +extern void queue_vtable_callback_0_rules_responded( struct w_iface *w_iface, const char *pchRule, const char *pchValue ); typedef void (*W_CDECL w_cdecl_func)( void * ); extern void queue_cdecl_func_callback( w_cdecl_func func, void *data, uint32_t data_size ); @@ -100,7 +100,7 @@ extern unsigned int steamclient_unix_path_to_dos_path( bool api_result, const ch NTSTATUS iface ## _ ## version ## _ ## method( void *args ) \ { \ auto params = (struct iface ## _ ## version ## _ ## method ## _params *)args; \ - auto u_iface = (struct u_ ## iface ## _ ## version *)params->linux_side; \ + auto u_iface = (struct u_ ## iface ## _ ## version *)params->u_iface; \ return iface ## _ ## method( u_iface, params, ## __VA_ARGS__ ); \ } diff --git a/lsteamclient/unix_steam_input_manual.cpp b/lsteamclient/unix_steam_input_manual.cpp index c839be57..26bdf002 100644 --- a/lsteamclient/unix_steam_input_manual.cpp +++ b/lsteamclient/unix_steam_input_manual.cpp @@ -219,7 +219,7 @@ static const char *glyph_cache_lookup( glyph_cache &cache, const char *lin_path, NTSTATUS ISteamController_SteamController005_GetGlyphForActionOrigin( void *args ) { struct ISteamController_SteamController005_GetGlyphForActionOrigin_params *params = (struct ISteamController_SteamController005_GetGlyphForActionOrigin_params *)args; - struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->linux_side; + struct u_ISteamController_SteamController005 *iface = (struct u_ISteamController_SteamController005 *)params->u_iface; if (!(params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( controller_cache, params->_ret, params->eOrigin, 0, 0 ); return 0; @@ -230,7 +230,7 @@ NTSTATUS ISteamController_SteamController005_GetGlyphForActionOrigin( void *args NTSTATUS ISteamController_SteamController006_GetGlyphForActionOrigin( void *args ) { struct ISteamController_SteamController006_GetGlyphForActionOrigin_params *params = (struct ISteamController_SteamController006_GetGlyphForActionOrigin_params *)args; - struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->linux_side; + struct u_ISteamController_SteamController006 *iface = (struct u_ISteamController_SteamController006 *)params->u_iface; if (!(params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( controller_cache, params->_ret, params->eOrigin, 0, 0 ); return 0; @@ -241,7 +241,7 @@ NTSTATUS ISteamController_SteamController006_GetGlyphForActionOrigin( void *args NTSTATUS ISteamController_SteamController007_GetGlyphForActionOrigin( void *args ) { struct ISteamController_SteamController007_GetGlyphForActionOrigin_params *params = (struct ISteamController_SteamController007_GetGlyphForActionOrigin_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; if (!(params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( controller_cache, params->_ret, params->eOrigin, 0, 0 ); return 0; @@ -250,7 +250,7 @@ NTSTATUS ISteamController_SteamController007_GetGlyphForActionOrigin( void *args NTSTATUS ISteamController_SteamController007_GetGlyphForXboxOrigin( void *args ) { struct ISteamController_SteamController007_GetGlyphForXboxOrigin_params *params = (struct ISteamController_SteamController007_GetGlyphForXboxOrigin_params *)args; - struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->linux_side; + struct u_ISteamController_SteamController007 *iface = (struct u_ISteamController_SteamController007 *)params->u_iface; if (!(params->_ret = iface->GetGlyphForXboxOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( xbox_cache, params->_ret, params->eOrigin, 0, 0 ); return 0; @@ -261,7 +261,7 @@ NTSTATUS ISteamController_SteamController007_GetGlyphForXboxOrigin( void *args ) NTSTATUS ISteamController_SteamController008_GetGlyphForActionOrigin( void *args ) { struct ISteamController_SteamController008_GetGlyphForActionOrigin_params *params = (struct ISteamController_SteamController008_GetGlyphForActionOrigin_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; if (!(params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( controller_cache, params->_ret, params->eOrigin, 0, 0 ); return 0; @@ -270,7 +270,7 @@ NTSTATUS ISteamController_SteamController008_GetGlyphForActionOrigin( void *args NTSTATUS ISteamController_SteamController008_GetGlyphForXboxOrigin( void *args ) { struct ISteamController_SteamController008_GetGlyphForXboxOrigin_params *params = (struct ISteamController_SteamController008_GetGlyphForXboxOrigin_params *)args; - struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->linux_side; + struct u_ISteamController_SteamController008 *iface = (struct u_ISteamController_SteamController008 *)params->u_iface; if (!(params->_ret = iface->GetGlyphForXboxOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( xbox_cache, params->_ret, params->eOrigin, 0, 0 ); return 0; @@ -281,7 +281,7 @@ NTSTATUS ISteamController_SteamController008_GetGlyphForXboxOrigin( void *args ) NTSTATUS ISteamInput_SteamInput001_GetGlyphForActionOrigin( void *args ) { struct ISteamInput_SteamInput001_GetGlyphForActionOrigin_params *params = (struct ISteamInput_SteamInput001_GetGlyphForActionOrigin_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; if (!(params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( input_cache, params->_ret, params->eOrigin, 0, 0 ); return 0; @@ -290,7 +290,7 @@ NTSTATUS ISteamInput_SteamInput001_GetGlyphForActionOrigin( void *args ) NTSTATUS ISteamInput_SteamInput001_GetGlyphForXboxOrigin( void *args ) { struct ISteamInput_SteamInput001_GetGlyphForXboxOrigin_params *params = (struct ISteamInput_SteamInput001_GetGlyphForXboxOrigin_params *)args; - struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->linux_side; + struct u_ISteamInput_SteamInput001 *iface = (struct u_ISteamInput_SteamInput001 *)params->u_iface; if (!(params->_ret = iface->GetGlyphForXboxOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( xbox_cache, params->_ret, params->eOrigin, 0, 0 ); return 0; @@ -301,7 +301,7 @@ NTSTATUS ISteamInput_SteamInput001_GetGlyphForXboxOrigin( void *args ) NTSTATUS ISteamInput_SteamInput002_GetGlyphForActionOrigin( void *args ) { struct ISteamInput_SteamInput002_GetGlyphForActionOrigin_params *params = (struct ISteamInput_SteamInput002_GetGlyphForActionOrigin_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; if (!(params->_ret = iface->GetGlyphForActionOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( input_cache, params->_ret, params->eOrigin, 0, 0 ); return 0; @@ -310,7 +310,7 @@ NTSTATUS ISteamInput_SteamInput002_GetGlyphForActionOrigin( void *args ) NTSTATUS ISteamInput_SteamInput002_GetGlyphForXboxOrigin( void *args ) { struct ISteamInput_SteamInput002_GetGlyphForXboxOrigin_params *params = (struct ISteamInput_SteamInput002_GetGlyphForXboxOrigin_params *)args; - struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->linux_side; + struct u_ISteamInput_SteamInput002 *iface = (struct u_ISteamInput_SteamInput002 *)params->u_iface; if (!(params->_ret = iface->GetGlyphForXboxOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( xbox_cache, params->_ret, params->eOrigin, 0, 0 ); return 0; @@ -327,7 +327,7 @@ static void U_CDECL u_SteamInputActionEventCallbackPointer_152( SteamInputAction NTSTATUS ISteamInput_SteamInput005_EnableActionEventCallbacks( void *args ) { struct ISteamInput_SteamInput005_EnableActionEventCallbacks_params *params = (struct ISteamInput_SteamInput005_EnableActionEventCallbacks_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; w_EnableActionEventCallbacks_152 = params->pCallback; iface->EnableActionEventCallbacks( params->pCallback ? &u_SteamInputActionEventCallbackPointer_152 : NULL ); return 0; @@ -336,7 +336,7 @@ NTSTATUS ISteamInput_SteamInput005_EnableActionEventCallbacks( void *args ) NTSTATUS ISteamInput_SteamInput005_GetGlyphPNGForActionOrigin( void *args ) { struct ISteamInput_SteamInput005_GetGlyphPNGForActionOrigin_params *params = (struct ISteamInput_SteamInput005_GetGlyphPNGForActionOrigin_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; if (!(params->_ret = iface->GetGlyphPNGForActionOrigin( params->eOrigin, params->eSize, params->unFlags ))) return 0; params->_ret = glyph_cache_lookup( input_cache_png, params->_ret, params->eOrigin, params->unFlags, params->eSize ); return 0; @@ -345,7 +345,7 @@ NTSTATUS ISteamInput_SteamInput005_GetGlyphPNGForActionOrigin( void *args ) NTSTATUS ISteamInput_SteamInput005_GetGlyphSVGForActionOrigin( void *args ) { struct ISteamInput_SteamInput005_GetGlyphSVGForActionOrigin_params *params = (struct ISteamInput_SteamInput005_GetGlyphSVGForActionOrigin_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; if (!(params->_ret = iface->GetGlyphSVGForActionOrigin( params->eOrigin, params->unFlags ))) return 0; params->_ret = glyph_cache_lookup( input_cache_svg, params->_ret, params->eOrigin, params->unFlags, 0 ); return 0; @@ -354,7 +354,7 @@ NTSTATUS ISteamInput_SteamInput005_GetGlyphSVGForActionOrigin( void *args ) NTSTATUS ISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy( void *args ) { struct ISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy_params *params = (struct ISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; if (!(params->_ret = iface->GetGlyphForActionOrigin_Legacy( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( input_cache, params->_ret, params->eOrigin, 0, 0 ); return 0; @@ -363,7 +363,7 @@ NTSTATUS ISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy( void *args ) NTSTATUS ISteamInput_SteamInput005_GetGlyphForXboxOrigin( void *args ) { struct ISteamInput_SteamInput005_GetGlyphForXboxOrigin_params *params = (struct ISteamInput_SteamInput005_GetGlyphForXboxOrigin_params *)args; - struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->linux_side; + struct u_ISteamInput_SteamInput005 *iface = (struct u_ISteamInput_SteamInput005 *)params->u_iface; if (!(params->_ret = iface->GetGlyphForXboxOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( xbox_cache, params->_ret, params->eOrigin, 0, 0 ); return 0; @@ -374,7 +374,7 @@ NTSTATUS ISteamInput_SteamInput005_GetGlyphForXboxOrigin( void *args ) NTSTATUS ISteamInput_SteamInput006_EnableActionEventCallbacks( void *args ) { struct ISteamInput_SteamInput006_EnableActionEventCallbacks_params *params = (struct ISteamInput_SteamInput006_EnableActionEventCallbacks_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; w_EnableActionEventCallbacks_152 = params->pCallback; iface->EnableActionEventCallbacks( params->pCallback ? &u_SteamInputActionEventCallbackPointer_152 : NULL ); return 0; @@ -383,7 +383,7 @@ NTSTATUS ISteamInput_SteamInput006_EnableActionEventCallbacks( void *args ) NTSTATUS ISteamInput_SteamInput006_GetGlyphPNGForActionOrigin( void *args ) { struct ISteamInput_SteamInput006_GetGlyphPNGForActionOrigin_params *params = (struct ISteamInput_SteamInput006_GetGlyphPNGForActionOrigin_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; if (!(params->_ret = iface->GetGlyphPNGForActionOrigin( params->eOrigin, params->eSize, params->unFlags ))) return 0; params->_ret = glyph_cache_lookup( input_cache_png, params->_ret, params->eOrigin, params->unFlags, params->eSize ); return 0; @@ -392,7 +392,7 @@ NTSTATUS ISteamInput_SteamInput006_GetGlyphPNGForActionOrigin( void *args ) NTSTATUS ISteamInput_SteamInput006_GetGlyphSVGForActionOrigin( void *args ) { struct ISteamInput_SteamInput006_GetGlyphSVGForActionOrigin_params *params = (struct ISteamInput_SteamInput006_GetGlyphSVGForActionOrigin_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; if (!(params->_ret = iface->GetGlyphSVGForActionOrigin( params->eOrigin, params->unFlags ))) return 0; params->_ret = glyph_cache_lookup( input_cache_svg, params->_ret, params->eOrigin, params->unFlags, 0 ); return 0; @@ -401,7 +401,7 @@ NTSTATUS ISteamInput_SteamInput006_GetGlyphSVGForActionOrigin( void *args ) NTSTATUS ISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy( void *args ) { struct ISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy_params *params = (struct ISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; if (!(params->_ret = iface->GetGlyphForActionOrigin_Legacy( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( input_cache, params->_ret, params->eOrigin, 0, 0 ); return 0; @@ -410,7 +410,7 @@ NTSTATUS ISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy( void *args ) NTSTATUS ISteamInput_SteamInput006_GetGlyphForXboxOrigin( void *args ) { struct ISteamInput_SteamInput006_GetGlyphForXboxOrigin_params *params = (struct ISteamInput_SteamInput006_GetGlyphForXboxOrigin_params *)args; - struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->linux_side; + struct u_ISteamInput_SteamInput006 *iface = (struct u_ISteamInput_SteamInput006 *)params->u_iface; if (!(params->_ret = iface->GetGlyphForXboxOrigin( params->eOrigin ))) return 0; params->_ret = glyph_cache_lookup( xbox_cache, params->_ret, params->eOrigin, 0, 0 ); return 0; diff --git a/lsteamclient/unix_steam_networking_manual.cpp b/lsteamclient/unix_steam_networking_manual.cpp index cfbaf7d7..61bfe3ed 100644 --- a/lsteamclient/unix_steam_networking_manual.cpp +++ b/lsteamclient/unix_steam_networking_manual.cpp @@ -54,7 +54,7 @@ NTSTATUS steamclient_networking_messages_receive_144( void *args ) NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; u_SteamNetworkingMessage_t_144 *u_msgs[params->nMaxMessages]; params->_ret = iface->ReceiveMessagesOnConnection( params->hConn, u_msgs, params->nMaxMessages ); if (params->_ret > 0) receive_messages_utow_144( params->_ret, u_msgs, params->ppOutMessages ); @@ -64,7 +64,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConn NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets002 *)params->u_iface; u_SteamNetworkingMessage_t_144 *u_msgs[params->nMaxMessages]; params->_ret = iface->ReceiveMessagesOnListenSocket( params->hSocket, u_msgs, params->nMaxMessages ); if (params->_ret > 0) receive_messages_utow_144( params->_ret, u_msgs, params->ppOutMessages ); @@ -76,7 +76,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnList NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; u_SteamNetworkingMessage_t_144 *u_msgs[params->nMaxMessages]; params->_ret = iface->ReceiveMessagesOnConnection( params->hConn, u_msgs, params->nMaxMessages ); if (params->_ret > 0) receive_messages_utow_144( params->_ret, u_msgs, params->ppOutMessages ); @@ -86,7 +86,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConn NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets004 *)params->u_iface; u_SteamNetworkingMessage_t_144 *u_msgs[params->nMaxMessages]; params->_ret = iface->ReceiveMessagesOnListenSocket( params->hSocket, u_msgs, params->nMaxMessages ); if (params->_ret > 0) receive_messages_utow_144( params->_ret, u_msgs, params->ppOutMessages ); @@ -198,7 +198,7 @@ NTSTATUS steamclient_networking_message_release_147( void *args ) NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; u_SteamNetworkingMessage_t_147 *u_msgs[params->nMaxMessages]; params->_ret = iface->ReceiveMessagesOnConnection( params->hConn, u_msgs, params->nMaxMessages ); if (params->_ret > 0) receive_messages_utow_147( params->_ret, u_msgs, params->ppOutMessages ); @@ -208,7 +208,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConn NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; u_SteamNetworkingMessage_t_147 *u_msgs[params->nMaxMessages]; params->_ret = iface->ReceiveMessagesOnListenSocket( params->hSocket, u_msgs, params->nMaxMessages ); if (params->_ret > 0) receive_messages_utow_147( params->_ret, u_msgs, params->ppOutMessages ); @@ -218,7 +218,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnList NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; u_SteamNetworkingMessage_t_147 *u_msgs[params->nMessages]; send_messages_wtou_147( params->nMessages, params->pMessages, u_msgs ); iface->SendMessages( params->nMessages, u_msgs, params->pOutMessageNumberOrResult ); @@ -230,7 +230,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages( void *a NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; u_SteamNetworkingMessage_t_147 *u_msgs[params->nMaxMessages]; params->_ret = iface->ReceiveMessagesOnConnection( params->hConn, u_msgs, params->nMaxMessages ); if (params->_ret > 0) receive_messages_utow_147( params->_ret, u_msgs, params->ppOutMessages ); @@ -240,7 +240,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConn NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; u_SteamNetworkingMessage_t_147 *u_msgs[params->nMaxMessages]; params->_ret = iface->ReceiveMessagesOnPollGroup( params->hPollGroup, u_msgs, params->nMaxMessages ); if (params->_ret > 0) receive_messages_utow_147( params->_ret, u_msgs, params->ppOutMessages ); @@ -250,7 +250,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPoll NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; u_SteamNetworkingMessage_t_147 *u_msgs[params->nMessages]; send_messages_wtou_147( params->nMessages, params->pMessages, u_msgs ); iface->SendMessages( params->nMessages, u_msgs, params->pOutMessageNumberOrResult ); @@ -262,7 +262,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages( void *a NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; u_SteamNetworkingMessage_t_147 *u_msgs[params->nMaxMessages]; params->_ret = iface->ReceiveMessagesOnConnection( params->hConn, u_msgs, params->nMaxMessages ); if (params->_ret > 0) receive_messages_utow_147( params->_ret, u_msgs, params->ppOutMessages ); @@ -272,7 +272,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConn NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; u_SteamNetworkingMessage_t_147 *u_msgs[params->nMaxMessages]; params->_ret = iface->ReceiveMessagesOnPollGroup( params->hPollGroup, u_msgs, params->nMaxMessages ); if (params->_ret > 0) receive_messages_utow_147( params->_ret, u_msgs, params->ppOutMessages ); @@ -282,7 +282,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPoll NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets009 *)params->u_iface; u_SteamNetworkingMessage_t_147 *u_msgs[params->nMessages]; send_messages_wtou_147( params->nMessages, params->pMessages, u_msgs ); iface->SendMessages( params->nMessages, u_msgs, params->pOutMessageNumberOrResult ); @@ -294,7 +294,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages( void *a NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; u_SteamNetworkingMessage_t_147 *u_msg = iface->AllocateMessage( params->cbAllocateBuffer ); if (u_msg) receive_messages_utow_147( 1, &u_msg, ¶ms->_ret ); return 0; @@ -334,7 +334,7 @@ static void U_CDECL u_SteamNetworkingMessagesSessionFailed( SteamNetworkingMessa NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils003 *)params->u_iface; void *u_fn; /* api requires passing pointer-to-pointer */ switch (params->eValue) @@ -478,7 +478,7 @@ NTSTATUS steamclient_networking_message_release_153a( void *args ) NTSTATUS ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages( void *args ) { struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages_params *params = (struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages_params *)args; - struct u_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 *iface = (struct u_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 *)params->linux_side; + struct u_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 *iface = (struct u_ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 *)params->u_iface; u_SteamNetworkingMessage_t_153a *u_msgs[params->nMaxMessages]; params->_ret = iface->ReceiveMessages( u_msgs, params->nMaxMessages ); if (params->_ret > 0) receive_messages_utow_153a( params->_ret, u_msgs, params->ppOutMessages ); @@ -490,7 +490,7 @@ NTSTATUS ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessag NTSTATUS ISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel( void *args ) { struct ISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel_params *params = (struct ISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel_params *)args; - struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *iface = (struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *)params->linux_side; + struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *iface = (struct u_ISteamNetworkingMessages_SteamNetworkingMessages002 *)params->u_iface; u_SteamNetworkingMessage_t_153a *u_msgs[params->nMaxMessages]; params->_ret = iface->ReceiveMessagesOnChannel( params->nLocalChannel, u_msgs, params->nMaxMessages ); if (params->_ret > 0) receive_messages_utow_153a( params->_ret, u_msgs, params->ppOutMessages ); @@ -502,7 +502,7 @@ NTSTATUS ISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnCh NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; u_SteamNetworkingMessage_t_153a *u_msgs[params->nMaxMessages]; params->_ret = iface->ReceiveMessagesOnConnection( params->hConn, u_msgs, params->nMaxMessages ); if (params->_ret > 0) receive_messages_utow_153a( params->_ret, u_msgs, params->ppOutMessages ); @@ -512,7 +512,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConn NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; u_SteamNetworkingMessage_t_153a *u_msgs[params->nMaxMessages]; params->_ret = iface->ReceiveMessagesOnPollGroup( params->hPollGroup, u_msgs, params->nMaxMessages ); if (params->_ret > 0) receive_messages_utow_153a( params->_ret, u_msgs, params->ppOutMessages ); @@ -522,7 +522,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPoll NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets012 *)params->u_iface; u_SteamNetworkingMessage_t_153a *u_msgs[params->nMessages]; send_messages_wtou_153a( params->nMessages, params->pMessages, u_msgs ); iface->SendMessages( params->nMessages, u_msgs, params->pOutMessageNumberOrResult ); @@ -534,7 +534,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages( void *a NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; u_SteamNetworkingMessage_t_153a *u_msg = iface->AllocateMessage( params->cbAllocateBuffer ); if (u_msg) receive_messages_utow_153a( 1, &u_msg, ¶ms->_ret ); return 0; @@ -556,7 +556,7 @@ static void U_CDECL u_SteamNetworkingMessagesSessionFailed_153a( SteamNetworking NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue( void *args ) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue_params *params = (struct ISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue_params *)args; - struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->linux_side; + struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *iface = (struct u_ISteamNetworkingUtils_SteamNetworkingUtils004 *)params->u_iface; bool ret; void *u_fn; /* api requires passing pointer-to-pointer */ @@ -597,7 +597,7 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue( void *arg template void free_callback_obj(T *obj) { - obj->w_iface = (struct w_steam_iface *)0xdeadbeef; + obj->w_iface = (struct w_iface *)0xdeadbeef; *(void **)obj = (void *)0xdeadbeef; delete obj; } @@ -639,7 +639,7 @@ template class callback_obj_tracker struct SteamMatchmakingServerListResponse_099u : u_ISteamMatchmakingServerListResponse_099u { - struct w_steam_iface *w_iface; + struct w_iface *w_iface; virtual void ServerResponded( int32_t ); virtual void ServerFailedToRespond( int32_t ); virtual void RefreshComplete( uint32_t ); @@ -668,7 +668,7 @@ u_ISteamMatchmakingServerListResponse_099u *create_LinuxISteamMatchmakingServerL if (!win) return NULL; if (!(ret = new SteamMatchmakingServerListResponse_099u())) return NULL; - ret->w_iface = (struct w_steam_iface *)win; + ret->w_iface = (struct w_iface *)win; TRACE("-> %p.\n", ret); return ret; @@ -676,7 +676,7 @@ u_ISteamMatchmakingServerListResponse_099u *create_LinuxISteamMatchmakingServerL struct SteamMatchmakingServerListResponse_106 : u_ISteamMatchmakingServerListResponse_106 { - struct w_steam_iface *w_iface; + struct w_iface *w_iface; static class callback_obj_tracker track; void add_request( void *hrequest) @@ -722,7 +722,7 @@ SteamMatchmakingServerListResponse_106 *create_LinuxISteamMatchmakingServerListR if (!win) return NULL; if (!(ret = new SteamMatchmakingServerListResponse_106())) return NULL; - ret->w_iface = (struct w_steam_iface *)win; + ret->w_iface = (struct w_iface *)win; TRACE("-> %p.\n", ret); return ret; @@ -730,7 +730,7 @@ SteamMatchmakingServerListResponse_106 *create_LinuxISteamMatchmakingServerListR struct SteamMatchmakingPingResponse : u_ISteamMatchmakingPingResponse { - struct w_steam_iface *w_iface; + struct w_iface *w_iface; virtual void ServerResponded( gameserveritem_t_105 * ); virtual void ServerFailedToRespond( ); }; @@ -755,7 +755,7 @@ struct u_ISteamMatchmakingPingResponse *create_LinuxISteamMatchmakingPingRespons if (!win) return NULL; if (!(ret = new SteamMatchmakingPingResponse())) return NULL; - ret->w_iface = (struct w_steam_iface *)win; + ret->w_iface = (struct w_iface *)win; TRACE("-> %p.\n", ret); return ret; @@ -763,7 +763,7 @@ struct u_ISteamMatchmakingPingResponse *create_LinuxISteamMatchmakingPingRespons struct SteamMatchmakingPlayersResponse : u_ISteamMatchmakingPlayersResponse { - struct w_steam_iface *w_iface; + struct w_iface *w_iface; virtual void AddPlayerToList( const char *, int32_t, float ); virtual void PlayersFailedToRespond( ); virtual void PlayersRefreshComplete( ); @@ -794,7 +794,7 @@ struct u_ISteamMatchmakingPlayersResponse *create_LinuxISteamMatchmakingPlayersR if (!win) return NULL; if (!(ret = new SteamMatchmakingPlayersResponse())) return NULL; - ret->w_iface = (struct w_steam_iface *)win; + ret->w_iface = (struct w_iface *)win; TRACE("-> %p.\n", ret); return ret; @@ -802,7 +802,7 @@ struct u_ISteamMatchmakingPlayersResponse *create_LinuxISteamMatchmakingPlayersR struct SteamMatchmakingRulesResponse : u_ISteamMatchmakingRulesResponse { - struct w_steam_iface *w_iface; + struct w_iface *w_iface; virtual void RulesResponded( const char *, const char * ); virtual void RulesFailedToRespond( ); virtual void RulesRefreshComplete( ); @@ -833,7 +833,7 @@ struct u_ISteamMatchmakingRulesResponse *create_LinuxISteamMatchmakingRulesRespo if (!win) return NULL; if (!(ret = new SteamMatchmakingRulesResponse())) return NULL; - ret->w_iface = (struct w_steam_iface *)win; + ret->w_iface = (struct w_iface *)win; TRACE("-> %p.\n", ret); return ret; @@ -854,7 +854,7 @@ struct u_ISteamNetworkingCustomSignalingRecvContext *create_LinuxISteamNetworkin NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->u_iface; u_ISteamMatchmakingServerListResponse_099u *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse_099u( params->pRequestServersResponse ); iface->RequestInternetServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); return 0; @@ -863,7 +863,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->u_iface; u_ISteamMatchmakingServerListResponse_099u *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse_099u( params->pRequestServersResponse ); iface->RequestLANServerList( params->iApp, u_pRequestServersResponse ); return 0; @@ -872,7 +872,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerLis NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->u_iface; u_ISteamMatchmakingServerListResponse_099u *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse_099u( params->pRequestServersResponse ); iface->RequestFriendsServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); return 0; @@ -881,7 +881,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServe NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->u_iface; u_ISteamMatchmakingServerListResponse_099u *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse_099u( params->pRequestServersResponse ); iface->RequestFavoritesServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); return 0; @@ -890,7 +890,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesSer NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->u_iface; u_ISteamMatchmakingServerListResponse_099u *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse_099u( params->pRequestServersResponse ); iface->RequestHistoryServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); return 0; @@ -899,7 +899,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServe NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->u_iface; u_ISteamMatchmakingServerListResponse_099u *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse_099u( params->pRequestServersResponse ); iface->RequestSpectatorServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); return 0; @@ -908,7 +908,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorSer NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_PingServer( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_PingServer_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers001_PingServer_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->u_iface; u_ISteamMatchmakingPingResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingPingResponse( params->pRequestServersResponse ); params->_ret = iface->PingServer( params->unIP, params->usPort, u_pRequestServersResponse ); return 0; @@ -917,7 +917,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_PingServer( void *a NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->u_iface; u_ISteamMatchmakingPlayersResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingPlayersResponse( params->pRequestServersResponse ); params->_ret = iface->PlayerDetails( params->unIP, params->usPort, u_pRequestServersResponse ); return 0; @@ -926,7 +926,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails( void NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers001 *)params->u_iface; u_ISteamMatchmakingRulesResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingRulesResponse( params->pRequestServersResponse ); params->_ret = iface->ServerRules( params->unIP, params->usPort, u_pRequestServersResponse ); return 0; @@ -935,7 +935,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules( void * NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->u_iface; SteamMatchmakingServerListResponse_106 *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse_106( params->pRequestServersResponse ); params->_ret = iface->RequestInternetServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); u_pRequestServersResponse->add_request( params->_ret ); @@ -945,7 +945,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->u_iface; SteamMatchmakingServerListResponse_106 *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse_106( params->pRequestServersResponse ); params->_ret = iface->RequestLANServerList( params->iApp, u_pRequestServersResponse ); u_pRequestServersResponse->add_request( params->_ret ); @@ -955,7 +955,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerLis NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->u_iface; SteamMatchmakingServerListResponse_106 *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse_106( params->pRequestServersResponse ); params->_ret = iface->RequestFriendsServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); u_pRequestServersResponse->add_request( params->_ret ); @@ -965,7 +965,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServe NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->u_iface; SteamMatchmakingServerListResponse_106 *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse_106( params->pRequestServersResponse ); params->_ret = iface->RequestFavoritesServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); u_pRequestServersResponse->add_request( params->_ret ); @@ -975,7 +975,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesSer NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->u_iface; SteamMatchmakingServerListResponse_106 *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse_106( params->pRequestServersResponse ); params->_ret = iface->RequestHistoryServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); u_pRequestServersResponse->add_request( params->_ret ); @@ -985,7 +985,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServe NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->u_iface; SteamMatchmakingServerListResponse_106 *u_pRequestServersResponse = create_LinuxISteamMatchmakingServerListResponse_106( params->pRequestServersResponse ); params->_ret = iface->RequestSpectatorServerList( params->iApp, params->ppchFilters, params->nFilters, u_pRequestServersResponse ); u_pRequestServersResponse->add_request( params->_ret ); @@ -995,7 +995,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorSer NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_PingServer( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_PingServer_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers002_PingServer_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->u_iface; u_ISteamMatchmakingPingResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingPingResponse( params->pRequestServersResponse ); params->_ret = iface->PingServer( params->unIP, params->usPort, u_pRequestServersResponse ); return 0; @@ -1004,7 +1004,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_PingServer( void *a NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->u_iface; u_ISteamMatchmakingPlayersResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingPlayersResponse( params->pRequestServersResponse ); params->_ret = iface->PlayerDetails( params->unIP, params->usPort, u_pRequestServersResponse ); return 0; @@ -1013,7 +1013,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails( void NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->u_iface; u_ISteamMatchmakingRulesResponse *u_pRequestServersResponse = create_LinuxISteamMatchmakingRulesResponse( params->pRequestServersResponse ); params->_ret = iface->ServerRules( params->unIP, params->usPort, u_pRequestServersResponse ); return 0; @@ -1022,7 +1022,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules( void * NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest( void *args ) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest_params *params = (struct ISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest_params *)args; - struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->linux_side; + struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *iface = (struct u_ISteamMatchmakingServers_SteamMatchMakingServers002 *)params->u_iface; iface->ReleaseRequest( params->hServerListRequest ); SteamMatchmakingServerListResponse_106::request_released( params->hServerListRequest ); return 0; @@ -1031,7 +1031,7 @@ NTSTATUS ISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest( voi NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; u_ISteamNetworkingConnectionCustomSignaling *u_pSignaling = create_LinuxISteamNetworkingConnectionCustomSignaling( params->pSignaling ); params->_ret = iface->ConnectP2PCustomSignaling( u_pSignaling, params->pPeerIdentity, params->nOptions, params->pOptions ); return 0; @@ -1040,7 +1040,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSigna NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets006 *)params->u_iface; u_ISteamNetworkingCustomSignalingRecvContext *u_pContext = create_LinuxISteamNetworkingCustomSignalingRecvContext( params->pContext ); params->_ret = iface->ReceivedP2PCustomSignal( params->pMsg, params->cbMsg, u_pContext ); return 0; @@ -1049,7 +1049,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSign NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; u_ISteamNetworkingConnectionCustomSignaling *u_pSignaling = create_LinuxISteamNetworkingConnectionCustomSignaling( params->pSignaling ); params->_ret = iface->ConnectP2PCustomSignaling( u_pSignaling, params->pPeerIdentity, params->nOptions, params->pOptions ); return 0; @@ -1058,7 +1058,7 @@ NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSigna NTSTATUS ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal( void *args ) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal_params *params = (struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal_params *)args; - struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->linux_side; + struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *iface = (struct u_ISteamNetworkingSockets_SteamNetworkingSockets008 *)params->u_iface; u_ISteamNetworkingCustomSignalingRecvContext *u_pContext = create_LinuxISteamNetworkingCustomSignalingRecvContext( params->pContext ); params->_ret = iface->ReceivedP2PCustomSignal( params->pMsg, params->cbMsg, u_pContext ); return 0; diff --git a/lsteamclient/unixlib.cpp b/lsteamclient/unixlib.cpp index 083eb503..33e738d5 100644 --- a/lsteamclient/unixlib.cpp +++ b/lsteamclient/unixlib.cpp @@ -42,7 +42,7 @@ static int callback_len_utow( int cb_id, int u_len ) return find_first_callback_def_by_id( cb_id )->w_callback_len; } -void queue_vtable_callback( struct w_steam_iface *w_iface, enum callback_type type, uint64_t arg0, uint64_t arg1, uint64_t arg2 ) +void queue_vtable_callback( struct w_iface *w_iface, enum callback_type type, uint64_t arg0, uint64_t arg1, uint64_t arg2 ) { struct callback_entry *entry; uint32_t size = 0; @@ -64,7 +64,7 @@ void queue_vtable_callback( struct w_steam_iface *w_iface, enum callback_type ty pthread_mutex_unlock( &callbacks_lock ); } -void queue_vtable_callback_0_server_responded( struct w_steam_iface *w_iface, gameserveritem_t_105 *server ) +void queue_vtable_callback_0_server_responded( struct w_iface *w_iface, gameserveritem_t_105 *server ) { uint32_t size = sizeof(*server); struct callback_entry *entry; @@ -84,7 +84,7 @@ void queue_vtable_callback_0_server_responded( struct w_steam_iface *w_iface, ga pthread_mutex_unlock( &callbacks_lock ); } -void queue_vtable_callback_0_add_player_to_list( struct w_steam_iface *w_iface, const char *pchName, int nScore, float flTimePlayed ) +void queue_vtable_callback_0_add_player_to_list( struct w_iface *w_iface, const char *pchName, int nScore, float flTimePlayed ) { uint32_t name_size = strlen( pchName ) + 1, size = name_size; struct callback_entry *entry; @@ -106,7 +106,7 @@ void queue_vtable_callback_0_add_player_to_list( struct w_steam_iface *w_iface, pthread_mutex_unlock( &callbacks_lock ); } -void queue_vtable_callback_0_rules_responded( struct w_steam_iface *w_iface, const char *pchRule, const char *pchValue ) +void queue_vtable_callback_0_rules_responded( struct w_iface *w_iface, const char *pchRule, const char *pchValue ) { uint32_t rule_size = strlen( pchRule ) + 1, value_size = strlen( pchValue ) + 1, size = rule_size + value_size; struct callback_entry *entry; @@ -260,7 +260,7 @@ u_void_SteamAPI_PostAPIResultInProcess_t manual_convert_DEPRECATED_Remove_SteamA NTSTATUS ISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess( void *args ) { struct ISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *params = (struct ISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *)args; - struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->linux_side; + struct u_ISteamClient_SteamClient020 *iface = (struct u_ISteamClient_SteamClient020 *)params->u_iface; uint32_t (*U_CDECL lin_func)(int32_t) = manual_convert_Set_SteamAPI_CCheckCallbackRegisteredInProcess_func_156( params->func ); iface->Set_SteamAPI_CCheckCallbackRegisteredInProcess( lin_func ); return 0; @@ -269,7 +269,7 @@ NTSTATUS ISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProc NTSTATUS ISteamClient_SteamClient021_Set_SteamAPI_CCheckCallbackRegisteredInProcess( void *args ) { struct ISteamClient_SteamClient021_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *params = (struct ISteamClient_SteamClient021_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params *)args; - struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->linux_side; + struct u_ISteamClient_SteamClient021 *iface = (struct u_ISteamClient_SteamClient021 *)params->u_iface; uint32_t (*U_CDECL lin_func)(int32_t) = manual_convert_Set_SteamAPI_CCheckCallbackRegisteredInProcess_func_156( params->func ); iface->Set_SteamAPI_CCheckCallbackRegisteredInProcess( lin_func ); return 0; diff --git a/lsteamclient/unixlib.h b/lsteamclient/unixlib.h index 1031e6a8..61c6a724 100644 --- a/lsteamclient/unixlib.h +++ b/lsteamclient/unixlib.h @@ -80,7 +80,7 @@ struct callback struct { - struct w_steam_iface *iface; + struct w_iface *iface; uint64_t arg0; uint64_t arg1; uint64_t arg2; @@ -88,13 +88,13 @@ struct callback struct { - struct w_steam_iface *iface; + struct w_iface *iface; gameserveritem_t_105 server[]; } server_responded; struct { - struct w_steam_iface *iface; + struct w_iface *iface; int32_t score; float time_played; const char name[1]; @@ -102,7 +102,7 @@ struct callback struct { - struct w_steam_iface *iface; + struct w_iface *iface; const char rule_and_value[1]; } rules_responded; }; diff --git a/lsteamclient/unixlib_generated.h b/lsteamclient/unixlib_generated.h index 6146e8c1..cf640f84 100644 --- a/lsteamclient/unixlib_generated.h +++ b/lsteamclient/unixlib_generated.h @@ -11,13 +11,13 @@ extern "C" { struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t *pvecAppID; uint32_t unMaxAppIDs; @@ -25,7 +25,7 @@ struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps_params struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t nAppID; char *pchName; @@ -34,7 +34,7 @@ struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName_params struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t nAppID; char *pchDirectory; @@ -43,14 +43,14 @@ struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir_params struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t nAppID; const char *pchKey; @@ -60,169 +60,169 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iDLC; uint32_t *pAppID; @@ -233,88 +233,88 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iDLC; uint32_t *pAppID; @@ -325,25 +325,25 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchName; int32_t cchNameBufferSize; @@ -351,14 +351,14 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bMissingFilesOnly; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t *pvecDepots; uint32_t cMaxDepots; @@ -366,7 +366,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t appID; char *pchFolder; @@ -375,83 +375,83 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iDLC; uint32_t *pAppID; @@ -462,25 +462,25 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchName; int32_t cchNameBufferSize; @@ -488,14 +488,14 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bMissingFilesOnly; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t appID; uint32_t *pvecDepots; @@ -504,7 +504,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t appID; char *pchFolder; @@ -513,96 +513,96 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; const char *pchKey; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iDLC; uint32_t *pAppID; @@ -613,25 +613,25 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchName; int32_t cchNameBufferSize; @@ -639,14 +639,14 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bMissingFilesOnly; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t appID; uint32_t *pvecDepots; @@ -655,7 +655,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t appID; char *pchFolder; @@ -664,27 +664,27 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; const char *pchKey; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nAppID; uint64_t *punBytesDownloaded; @@ -693,82 +693,82 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iDLC; uint32_t *pAppID; @@ -779,25 +779,25 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchName; int32_t cchNameBufferSize; @@ -805,14 +805,14 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bMissingFilesOnly; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t appID; uint32_t *pvecDepots; @@ -821,7 +821,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t appID; char *pchFolder; @@ -830,27 +830,27 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t appID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; const char *pchKey; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nAppID; uint64_t *punBytesDownloaded; @@ -859,25 +859,25 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszFileName; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; char *pszCommandLine; int32_t cubCommandLine; @@ -885,13 +885,13 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *punSecondsAllowed; uint32_t *punSecondsPlayed; @@ -899,14 +899,14 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nAppID; }; struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetNumBetas_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t *pnAvailable; int32_t *pnPrivate; @@ -914,7 +914,7 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetNumBetas_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetBetaInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iBetaIndex; uint32_t *punFlags; @@ -927,14 +927,14 @@ struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetBetaInfo_params struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetActiveBeta_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchBetaName; }; struct ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t nAppID; void *pvBuffer; @@ -947,25 +947,25 @@ struct ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicket struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchAbsolutePathToControllerConfigVDF; }; struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unControllerIndex; SteamControllerState001_t *pState; @@ -973,7 +973,7 @@ struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState_par struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unControllerIndex; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -981,25 +981,25 @@ struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse_par struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchMode; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchUserAgent; const char *pchUserCSS; @@ -1007,13 +1007,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser_pa struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchURL; const char *pchPostData; @@ -1021,7 +1021,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t unWidth; uint32_t unHeight; @@ -1029,31 +1029,31 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchKey; const char *pchValue; @@ -1061,35 +1061,35 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchScript; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -1097,14 +1097,14 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int32_t nDelta; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -1112,7 +1112,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -1120,7 +1120,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t cUnicodeChar; uint32_t eHTMLKeyModifiers; @@ -1128,46 +1128,46 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int8_t bHasKeyFocus; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchSearchStr; int8_t bCurrentlyInFind; @@ -1176,13 +1176,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -1190,40 +1190,40 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPositio struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int8_t bAllowed; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int8_t bResult; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char **pchSelectedFiles; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchUserAgent; const char *pchUserCSS; @@ -1231,13 +1231,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser_pa struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchURL; const char *pchPostData; @@ -1245,7 +1245,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t unWidth; uint32_t unHeight; @@ -1253,31 +1253,31 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchKey; const char *pchValue; @@ -1285,35 +1285,35 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchScript; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -1321,14 +1321,14 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int32_t nDelta; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -1336,7 +1336,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -1344,7 +1344,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t cUnicodeChar; uint32_t eHTMLKeyModifiers; @@ -1352,46 +1352,46 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int8_t bHasKeyFocus; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchSearchStr; int8_t bCurrentlyInFind; @@ -1400,13 +1400,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -1414,7 +1414,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPositio struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchHostname; const char *pchKey; const char *pchValue; @@ -1426,7 +1426,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; float flZoom; int32_t nPointX; @@ -1435,40 +1435,40 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFact struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int8_t bAllowed; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int8_t bResult; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char **pchSelectedFiles; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchUserAgent; const char *pchUserCSS; @@ -1476,13 +1476,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser_pa struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchURL; const char *pchPostData; @@ -1490,7 +1490,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t unWidth; uint32_t unHeight; @@ -1498,31 +1498,31 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchKey; const char *pchValue; @@ -1530,35 +1530,35 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchScript; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -1566,14 +1566,14 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int32_t nDelta; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -1581,7 +1581,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -1589,7 +1589,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t cUnicodeChar; uint32_t eHTMLKeyModifiers; @@ -1597,46 +1597,46 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int8_t bHasKeyFocus; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchSearchStr; int8_t bCurrentlyInFind; @@ -1645,13 +1645,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -1659,7 +1659,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPositio struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchHostname; const char *pchKey; const char *pchValue; @@ -1671,7 +1671,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; float flZoom; int32_t nPointX; @@ -1680,47 +1680,47 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFact struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int8_t bBackgroundMode; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int8_t bAllowed; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int8_t bResult; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char **pchSelectedFiles; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchUserAgent; const char *pchUserCSS; @@ -1728,13 +1728,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser_pa struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchURL; const char *pchPostData; @@ -1742,7 +1742,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t unWidth; uint32_t unHeight; @@ -1750,31 +1750,31 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchKey; const char *pchValue; @@ -1782,35 +1782,35 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchScript; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -1818,14 +1818,14 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int32_t nDelta; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -1833,7 +1833,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -1841,7 +1841,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t cUnicodeChar; uint32_t eHTMLKeyModifiers; @@ -1849,46 +1849,46 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int8_t bHasKeyFocus; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchSearchStr; int8_t bCurrentlyInFind; @@ -1897,13 +1897,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -1911,7 +1911,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPositio struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchHostname; const char *pchKey; const char *pchValue; @@ -1923,7 +1923,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; float flZoom; int32_t nPointX; @@ -1932,54 +1932,54 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFact struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int8_t bBackgroundMode; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; float flDPIScaling; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int8_t bAllowed; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int8_t bResult; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char **pchSelectedFiles; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchUserAgent; const char *pchUserCSS; @@ -1987,13 +1987,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser_pa struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchURL; const char *pchPostData; @@ -2001,7 +2001,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t unWidth; uint32_t unHeight; @@ -2009,31 +2009,31 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchKey; const char *pchValue; @@ -2041,35 +2041,35 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchScript; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t eMouseButton; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -2077,14 +2077,14 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int32_t nDelta; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -2093,7 +2093,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nNativeKeyCode; uint32_t eHTMLKeyModifiers; @@ -2101,7 +2101,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t cUnicodeChar; uint32_t eHTMLKeyModifiers; @@ -2109,46 +2109,46 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; uint32_t nAbsolutePixelScroll; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int8_t bHasKeyFocus; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char *pchSearchStr; int8_t bCurrentlyInFind; @@ -2157,13 +2157,13 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int32_t x; int32_t y; @@ -2171,7 +2171,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPositio struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchHostname; const char *pchKey; const char *pchValue; @@ -2183,7 +2183,7 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie_params struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; float flZoom; int32_t nPointX; @@ -2192,48 +2192,48 @@ struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFact struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int8_t bBackgroundMode; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; float flDPIScaling; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int8_t bAllowed; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; int8_t bResult; }; struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unBrowserHandle; const char **pchSelectedFiles; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t eHTTPRequestMethod; const char *pchAbsoluteURL; @@ -2241,7 +2241,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint64_t ulContextValue; @@ -2249,7 +2249,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint32_t unTimeoutSeconds; @@ -2257,7 +2257,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTi struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; const char *pchHeaderName; @@ -2266,7 +2266,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; const char *pchParamName; @@ -2275,7 +2275,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParamete struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint64_t *pCallHandle; @@ -2283,21 +2283,21 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; const char *pchHeaderName; @@ -2306,7 +2306,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; const char *pchHeaderName; @@ -2316,7 +2316,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint32_t *unBodySize; @@ -2324,7 +2324,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint8_t *pBodyDataBuffer; @@ -2333,14 +2333,14 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; float *pflPercentOut; @@ -2348,7 +2348,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; const char *pchContentType; @@ -2358,7 +2358,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t eHTTPRequestMethod; const char *pchAbsoluteURL; @@ -2366,7 +2366,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint64_t ulContextValue; @@ -2374,7 +2374,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint32_t unTimeoutSeconds; @@ -2382,7 +2382,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTi struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; const char *pchHeaderName; @@ -2391,7 +2391,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; const char *pchParamName; @@ -2400,7 +2400,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParamete struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint64_t *pCallHandle; @@ -2408,7 +2408,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint64_t *pCallHandle; @@ -2416,21 +2416,21 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamRespons struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; const char *pchHeaderName; @@ -2439,7 +2439,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; const char *pchHeaderName; @@ -2449,7 +2449,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint32_t *unBodySize; @@ -2457,7 +2457,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint8_t *pBodyDataBuffer; @@ -2466,7 +2466,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint32_t cOffset; @@ -2476,14 +2476,14 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyDat struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; float *pflPercentOut; @@ -2491,7 +2491,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; const char *pchContentType; @@ -2501,21 +2501,21 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int8_t bAllowResponsesToModify; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hCookieContainer; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hCookieContainer; const char *pchHost; @@ -2525,7 +2525,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint32_t hCookieContainer; @@ -2533,7 +2533,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer_p struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; const char *pchUserAgentInfo; @@ -2541,7 +2541,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo_par struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; int8_t bRequireVerifiedCertificate; @@ -2549,7 +2549,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedC struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint32_t unMilliseconds; @@ -2557,7 +2557,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; int8_t *pbWasTimedOut; @@ -2565,7 +2565,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t eHTTPRequestMethod; const char *pchAbsoluteURL; @@ -2573,7 +2573,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint64_t ulContextValue; @@ -2581,7 +2581,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint32_t unTimeoutSeconds; @@ -2589,7 +2589,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTi struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; const char *pchHeaderName; @@ -2598,7 +2598,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; const char *pchParamName; @@ -2607,7 +2607,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParamete struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint64_t *pCallHandle; @@ -2615,7 +2615,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint64_t *pCallHandle; @@ -2623,21 +2623,21 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamRespons struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; const char *pchHeaderName; @@ -2646,7 +2646,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; const char *pchHeaderName; @@ -2656,7 +2656,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint32_t *unBodySize; @@ -2664,7 +2664,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint8_t *pBodyDataBuffer; @@ -2673,7 +2673,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint32_t cOffset; @@ -2683,14 +2683,14 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyDat struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; float *pflPercentOut; @@ -2698,7 +2698,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct_para struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; const char *pchContentType; @@ -2708,21 +2708,21 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody_param struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int8_t bAllowResponsesToModify; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hCookieContainer; }; struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hCookieContainer; const char *pchHost; @@ -2732,7 +2732,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie_params struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint32_t hCookieContainer; @@ -2740,7 +2740,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer_p struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; const char *pchUserAgentInfo; @@ -2748,7 +2748,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo_par struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; int8_t bRequireVerifiedCertificate; @@ -2756,7 +2756,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedC struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; uint32_t unMilliseconds; @@ -2764,7 +2764,7 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hRequest; int8_t *pbWasTimedOut; @@ -2772,14 +2772,14 @@ struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut_param struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t resultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t resultHandle; SteamItemDetails_t *pOutItemsArray; @@ -2788,14 +2788,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t resultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t resultHandle; CSteamID steamIDExpected; @@ -2803,20 +2803,20 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t resultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; const uint64_t *pInstanceIDs; @@ -2825,7 +2825,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t resultHandle; void *pOutBuffer; @@ -2834,7 +2834,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pOutResultHandle; const void *pBuffer; @@ -2844,7 +2844,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayItemDefs; @@ -2854,14 +2854,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; int32_t itemDef; @@ -2869,7 +2869,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayItemDefs; @@ -2878,7 +2878,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; uint64_t itemConsume; @@ -2887,7 +2887,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayGenerate; @@ -2900,7 +2900,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; uint64_t itemIdSource; @@ -2910,12 +2910,12 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; int32_t dropListDefinition; @@ -2923,7 +2923,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; CSteamID steamIDTradePartner; @@ -2937,13 +2937,13 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pItemDefIDs; uint32_t *punItemDefIDsArraySize; @@ -2951,7 +2951,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iDefinition; const char *pchPropertyName; @@ -2961,14 +2961,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty_p struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamID; int32_t *pItemDefIDs; @@ -2977,14 +2977,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinit struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t resultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t resultHandle; SteamItemDetails_t *pOutItemsArray; @@ -2993,7 +2993,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t resultHandle; uint32_t unItemIndex; @@ -3004,14 +3004,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty_param struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t resultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t resultHandle; CSteamID steamIDExpected; @@ -3019,20 +3019,20 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t resultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; const uint64_t *pInstanceIDs; @@ -3041,7 +3041,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t resultHandle; void *pOutBuffer; @@ -3050,7 +3050,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pOutResultHandle; const void *pBuffer; @@ -3060,7 +3060,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayItemDefs; @@ -3070,14 +3070,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; int32_t itemDef; @@ -3085,7 +3085,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayItemDefs; @@ -3094,7 +3094,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; uint64_t itemConsume; @@ -3103,7 +3103,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayGenerate; @@ -3116,7 +3116,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; uint64_t itemIdSource; @@ -3126,12 +3126,12 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; int32_t dropListDefinition; @@ -3139,7 +3139,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; CSteamID steamIDTradePartner; @@ -3153,13 +3153,13 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pItemDefIDs; uint32_t *punItemDefIDsArraySize; @@ -3167,7 +3167,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iDefinition; const char *pchPropertyName; @@ -3177,14 +3177,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty_p struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamID; int32_t *pItemDefIDs; @@ -3193,7 +3193,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinit struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const int32_t *pArrayItemDefs; const uint32_t *punArrayQuantity; @@ -3202,19 +3202,19 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pArrayItemDefs; uint64_t *pPrices; @@ -3223,7 +3223,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iDefinition; uint64_t *pPrice; @@ -3231,13 +3231,13 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3246,7 +3246,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3256,7 +3256,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3266,7 +3266,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3276,7 +3276,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3286,7 +3286,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int32_t *pResultHandle; @@ -3294,14 +3294,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties_para struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t resultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t resultHandle; SteamItemDetails_t *pOutItemsArray; @@ -3310,7 +3310,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t resultHandle; uint32_t unItemIndex; @@ -3321,14 +3321,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty_param struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t resultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t resultHandle; CSteamID steamIDExpected; @@ -3336,20 +3336,20 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t resultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; const uint64_t *pInstanceIDs; @@ -3358,7 +3358,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t resultHandle; void *pOutBuffer; @@ -3367,7 +3367,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pOutResultHandle; const void *pBuffer; @@ -3377,7 +3377,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayItemDefs; @@ -3387,14 +3387,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; int32_t itemDef; @@ -3402,7 +3402,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayItemDefs; @@ -3411,7 +3411,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; uint64_t itemConsume; @@ -3420,7 +3420,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; const int32_t *pArrayGenerate; @@ -3433,7 +3433,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; uint64_t itemIdSource; @@ -3443,12 +3443,12 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; int32_t dropListDefinition; @@ -3456,7 +3456,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; CSteamID steamIDTradePartner; @@ -3470,13 +3470,13 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pItemDefIDs; uint32_t *punItemDefIDsArraySize; @@ -3484,7 +3484,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iDefinition; const char *pchPropertyName; @@ -3494,14 +3494,14 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty_p struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamID; int32_t *pItemDefIDs; @@ -3510,7 +3510,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinit struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const int32_t *pArrayItemDefs; const uint32_t *punArrayQuantity; @@ -3519,19 +3519,19 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pArrayItemDefs; uint64_t *pCurrentPrices; @@ -3541,7 +3541,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iDefinition; uint64_t *pCurrentPrice; @@ -3550,13 +3550,13 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3565,7 +3565,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3575,7 +3575,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3585,7 +3585,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3595,7 +3595,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint64_t nItemID; @@ -3605,7 +3605,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4_params struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int32_t *pResultHandle; @@ -3613,7 +3613,7 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties_para struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pResultHandle; const char *pchItemToken; @@ -3621,40 +3621,40 @@ struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem_params struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchDisplayName; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *pvBuffer; uint32_t cbBufferLength; @@ -3662,104 +3662,104 @@ struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64_ struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nStatus; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; float flValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bAvailable; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchText; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t nValue; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *pvBuffer; uint32_t cbBufferLength; @@ -3767,25 +3767,25 @@ struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntr struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t nID; int32_t nPosition; @@ -3794,32 +3794,32 @@ struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry_par struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t nID; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t nID; int32_t nPosition; @@ -3828,144 +3828,144 @@ struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry_ struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t nID; }; struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; float flVolume; }; struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; float _ret; }; struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nAppID; }; struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nAppID; }; struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eFeature; }; struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eFeature; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t iSessionIndex; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; uint32_t unSessionID; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t unSessionID; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t unSessionID; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unSessionID; int32_t *pnResolutionX; @@ -3974,48 +3974,48 @@ struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientRe struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t iSessionIndex; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; uint32_t unSessionID; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t unSessionID; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t unSessionID; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unSessionID; int32_t *pnResolutionX; @@ -4024,55 +4024,55 @@ struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientRe struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bShowOverlay; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t iSessionIndex; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; uint32_t unSessionID; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t unSessionID; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientFormFactor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t unSessionID; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BGetSessionClientResolution_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unSessionID; int32_t *pnResolutionX; @@ -4081,31 +4081,31 @@ struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BGetSessionClientRe struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_ShowRemotePlayTogetherUI_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BSendRemotePlayTogetherInvite_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BEnableRemotePlayTogetherDirectInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_DisableRemotePlayTogetherDirectInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; RemotePlayInput_t *pInput; uint32_t unMaxEvents; @@ -4113,14 +4113,14 @@ struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetInput_params struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unSessionID; int8_t bVisible; }; struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMousePosition_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unSessionID; float flNormalizedX; float flNormalizedY; @@ -4128,7 +4128,7 @@ struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMousePosition_pa struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_CreateMouseCursor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nWidth; int32_t nHeight; @@ -4140,14 +4140,14 @@ struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_CreateMouseCursor_p struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseCursor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unSessionID; uint32_t unCursorID; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -4156,14 +4156,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -4172,27 +4172,27 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -4200,7 +4200,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -4208,7 +4208,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -4217,14 +4217,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -4233,20 +4233,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -4254,7 +4254,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -4262,7 +4262,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -4271,7 +4271,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -4280,62 +4280,62 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -4343,7 +4343,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -4351,32 +4351,32 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -4387,7 +4387,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -4396,20 +4396,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -4418,7 +4418,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -4427,28 +4427,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -4456,48 +4456,48 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -4505,7 +4505,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -4513,32 +4513,32 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -4549,7 +4549,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -4558,20 +4558,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -4580,7 +4580,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -4589,28 +4589,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -4618,48 +4618,48 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -4667,7 +4667,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -4675,32 +4675,32 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -4711,7 +4711,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -4720,20 +4720,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -4746,7 +4746,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -4758,56 +4758,56 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; w_RemoteStorageUpdatePublishedFileRequest_t updatePublishedFileRequest; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -4816,7 +4816,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -4825,28 +4825,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -4854,48 +4854,48 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -4903,7 +4903,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -4911,32 +4911,32 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -4945,7 +4945,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -4956,7 +4956,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -4965,20 +4965,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -4992,14 +4992,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -5007,7 +5007,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -5015,7 +5015,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -5023,7 +5023,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -5031,7 +5031,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -5039,7 +5039,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -5047,56 +5047,56 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -5104,14 +5104,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -5119,14 +5119,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -5136,7 +5136,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchVideoURL; const char *pchPreviewFile; @@ -5149,7 +5149,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -5157,7 +5157,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -5165,7 +5165,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -5177,7 +5177,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -5186,7 +5186,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -5195,28 +5195,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -5224,48 +5224,48 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -5273,7 +5273,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -5281,32 +5281,32 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -5315,7 +5315,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -5326,7 +5326,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -5335,20 +5335,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -5362,14 +5362,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -5377,7 +5377,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -5385,7 +5385,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -5393,7 +5393,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -5401,7 +5401,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -5409,7 +5409,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -5417,56 +5417,56 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -5474,14 +5474,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -5489,14 +5489,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -5506,7 +5506,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eVideoProvider; const char *pchVideoAccount; @@ -5521,7 +5521,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -5529,7 +5529,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -5537,7 +5537,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -5549,7 +5549,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -5558,7 +5558,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -5567,28 +5567,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -5596,14 +5596,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; const void *pvData; @@ -5612,62 +5612,62 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -5675,7 +5675,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -5683,32 +5683,32 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -5717,7 +5717,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -5728,7 +5728,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -5737,20 +5737,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -5764,14 +5764,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -5779,7 +5779,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -5787,7 +5787,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -5795,7 +5795,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -5803,7 +5803,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -5811,7 +5811,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -5819,56 +5819,56 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -5876,14 +5876,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -5891,14 +5891,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -5908,7 +5908,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eVideoProvider; const char *pchVideoAccount; @@ -5923,7 +5923,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -5931,7 +5931,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -5939,7 +5939,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -5951,7 +5951,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -5960,7 +5960,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -5969,28 +5969,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -5998,14 +5998,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; const void *pvData; @@ -6014,62 +6014,62 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -6077,7 +6077,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -6085,32 +6085,32 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -6119,7 +6119,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -6130,7 +6130,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -6140,20 +6140,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -6167,14 +6167,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -6182,7 +6182,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -6190,7 +6190,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -6198,7 +6198,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -6206,7 +6206,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -6214,7 +6214,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -6222,56 +6222,56 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -6279,14 +6279,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -6294,14 +6294,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -6311,7 +6311,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eVideoProvider; const char *pchVideoAccount; @@ -6326,7 +6326,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -6334,7 +6334,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -6342,7 +6342,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -6354,7 +6354,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -6363,7 +6363,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -6372,28 +6372,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -6401,14 +6401,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; const void *pvData; @@ -6417,62 +6417,62 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -6480,7 +6480,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -6488,25 +6488,25 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; uint32_t unPriority; @@ -6514,7 +6514,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -6523,7 +6523,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -6534,7 +6534,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -6544,20 +6544,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -6571,14 +6571,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -6586,7 +6586,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -6594,7 +6594,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -6602,7 +6602,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -6610,7 +6610,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -6618,7 +6618,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -6626,56 +6626,56 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -6683,14 +6683,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -6698,14 +6698,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -6715,7 +6715,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eVideoProvider; const char *pchVideoAccount; @@ -6730,7 +6730,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -6738,7 +6738,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -6746,7 +6746,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -6758,7 +6758,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; const char *pchLocation; @@ -6767,7 +6767,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadTo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -6776,7 +6776,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -6785,28 +6785,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -6814,14 +6814,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; const void *pvData; @@ -6830,62 +6830,62 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -6893,7 +6893,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -6901,25 +6901,25 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; uint32_t unPriority; @@ -6927,7 +6927,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -6936,7 +6936,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -6947,7 +6947,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -6957,20 +6957,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -6984,14 +6984,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -6999,7 +6999,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -7007,7 +7007,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -7015,7 +7015,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -7023,7 +7023,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -7031,7 +7031,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -7039,14 +7039,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t unMaxSecondsOld; @@ -7054,42 +7054,42 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedF struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -7097,14 +7097,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -7112,14 +7112,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -7129,7 +7129,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eVideoProvider; const char *pchVideoAccount; @@ -7144,7 +7144,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -7152,7 +7152,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -7160,7 +7160,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -7172,7 +7172,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; const char *pchLocation; @@ -7181,7 +7181,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadTo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -7190,7 +7190,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -7199,28 +7199,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -7228,14 +7228,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; const void *pvData; @@ -7244,62 +7244,62 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -7307,7 +7307,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -7315,25 +7315,25 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; uint32_t unPriority; @@ -7341,7 +7341,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -7350,7 +7350,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -7361,7 +7361,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -7372,20 +7372,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -7399,14 +7399,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -7414,7 +7414,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -7422,7 +7422,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -7430,7 +7430,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -7438,7 +7438,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -7446,7 +7446,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -7454,14 +7454,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t unMaxSecondsOld; @@ -7469,42 +7469,42 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedF struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -7512,14 +7512,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -7527,14 +7527,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -7544,7 +7544,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eVideoProvider; const char *pchVideoAccount; @@ -7559,7 +7559,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -7567,7 +7567,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -7575,7 +7575,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -7587,7 +7587,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; const char *pchLocation; @@ -7596,7 +7596,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadTo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -7605,7 +7605,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -7614,7 +7614,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; const void *pvData; @@ -7623,7 +7623,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsyn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; uint32_t nOffset; @@ -7632,7 +7632,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hReadCall; void *pvBuffer; @@ -7641,28 +7641,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -7670,14 +7670,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; const void *pvData; @@ -7686,62 +7686,62 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -7749,7 +7749,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pnTotalBytes; int32_t *puAvailableBytes; @@ -7757,25 +7757,25 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; uint32_t unPriority; @@ -7783,7 +7783,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -7792,7 +7792,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -7803,7 +7803,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -7814,20 +7814,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -7841,14 +7841,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -7856,7 +7856,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -7864,7 +7864,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -7872,7 +7872,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -7880,7 +7880,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -7888,7 +7888,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -7896,14 +7896,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t unMaxSecondsOld; @@ -7911,42 +7911,42 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedF struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -7954,14 +7954,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -7969,14 +7969,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -7986,7 +7986,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eVideoProvider; const char *pchVideoAccount; @@ -8001,7 +8001,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -8009,7 +8009,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -8017,7 +8017,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -8029,7 +8029,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; const char *pchLocation; @@ -8038,7 +8038,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadTo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -8047,7 +8047,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -8056,7 +8056,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; const void *pvData; @@ -8065,7 +8065,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsyn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; uint32_t nOffset; @@ -8074,7 +8074,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hReadCall; void *pvBuffer; @@ -8083,28 +8083,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -8112,14 +8112,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; const void *pvData; @@ -8128,62 +8128,62 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -8191,7 +8191,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t *pnTotalBytes; uint64_t *puAvailableBytes; @@ -8199,25 +8199,25 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; uint32_t unPriority; @@ -8225,7 +8225,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -8234,7 +8234,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -8245,7 +8245,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -8256,20 +8256,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -8283,14 +8283,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -8298,7 +8298,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -8306,7 +8306,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -8314,7 +8314,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -8322,7 +8322,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -8330,7 +8330,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -8338,14 +8338,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t unMaxSecondsOld; @@ -8353,42 +8353,42 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedF struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -8396,14 +8396,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -8411,14 +8411,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -8428,7 +8428,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eVideoProvider; const char *pchVideoAccount; @@ -8443,7 +8443,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -8451,7 +8451,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -8459,7 +8459,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -8471,7 +8471,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; const char *pchLocation; @@ -8480,7 +8480,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadTo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; const void *pvData; @@ -8489,7 +8489,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite_par struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; void *pvData; @@ -8498,7 +8498,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; const void *pvData; @@ -8507,7 +8507,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsyn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; uint32_t nOffset; @@ -8516,7 +8516,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hReadCall; void *pvBuffer; @@ -8525,28 +8525,28 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; uint32_t eRemoteStoragePlatform; @@ -8554,14 +8554,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatfo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; const void *pvData; @@ -8570,62 +8570,62 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStre struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t writeHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchFile; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int32_t iFile; int32_t *pnFileSizeInBytes; @@ -8633,7 +8633,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAn struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t *pnTotalBytes; uint64_t *puAvailableBytes; @@ -8641,25 +8641,25 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota_para struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bEnabled; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; uint32_t unPriority; @@ -8667,7 +8667,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload_p struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; int32_t *pnBytesDownloaded; @@ -8676,7 +8676,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloa struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hContent; uint32_t *pnAppID; @@ -8687,7 +8687,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hContent; void *pvData; @@ -8698,20 +8698,20 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead_param struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t iCachedContent; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchFile; const char *pchPreviewFile; @@ -8725,14 +8725,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorksh struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchFile; @@ -8740,7 +8740,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchPreviewFile; @@ -8748,7 +8748,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchTitle; @@ -8756,7 +8756,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchDescription; @@ -8764,7 +8764,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; uint32_t eVisibility; @@ -8772,7 +8772,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; w_SteamParamStringArray_t *pTags; @@ -8780,14 +8780,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t updateHandle; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t unMaxSecondsOld; @@ -8795,42 +8795,42 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedF struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const char *pchChangeDescription; @@ -8838,14 +8838,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublish struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; int8_t bVoteUp; @@ -8853,14 +8853,14 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPub struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamId; uint32_t unStartIndex; @@ -8870,7 +8870,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUser struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eVideoProvider; const char *pchVideoAccount; @@ -8885,7 +8885,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo_ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t unPublishedFileId; uint32_t eAction; @@ -8893,7 +8893,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublis struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eAction; uint32_t unStartIndex; @@ -8901,7 +8901,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eEnumerationType; uint32_t unStartIndex; @@ -8913,7 +8913,7 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePubl struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hContent; const char *pchLocation; @@ -8922,13 +8922,13 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadTo struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int32_t iFile; uint32_t *pEChangeType; @@ -8937,19 +8937,19 @@ struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileC struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pubRGB; uint32_t cubRGB; @@ -8959,7 +8959,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot_p struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchFilename; const char *pchThumbnailFilename; @@ -8969,18 +8969,18 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLi struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bHook; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hScreenshot; const char *pchLocation; @@ -8988,7 +8988,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation_param struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hScreenshot; CSteamID steamID; @@ -8996,7 +8996,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser_params struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pubRGB; uint32_t cubRGB; @@ -9006,7 +9006,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot_p struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchFilename; const char *pchThumbnailFilename; @@ -9016,18 +9016,18 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLi struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bHook; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hScreenshot; const char *pchLocation; @@ -9035,7 +9035,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation_param struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hScreenshot; CSteamID steamID; @@ -9043,7 +9043,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser_params struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hScreenshot; uint64_t unPublishedFileID; @@ -9051,7 +9051,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile_ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pubRGB; uint32_t cubRGB; @@ -9061,7 +9061,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot_p struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchFilename; const char *pchThumbnailFilename; @@ -9071,18 +9071,18 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLi struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bHook; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hScreenshot; const char *pchLocation; @@ -9090,7 +9090,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation_param struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hScreenshot; CSteamID steamID; @@ -9098,7 +9098,7 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser_params struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hScreenshot; uint64_t unPublishedFileID; @@ -9106,13 +9106,13 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile_ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t eType; const char *pchFilename; @@ -9121,20 +9121,20 @@ struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotTo struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineStateDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDescription; float flTimeDelta; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_ClearTimelineStateDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; float flTimeDelta; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_AddTimelineEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchIcon; const char *pchTitle; const char *pchDescription; @@ -9146,32 +9146,32 @@ struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_AddTimelineEvent_params struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineGameMode_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eMode; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineTooltip_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDescription; float flTimeDelta; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_ClearTimelineTooltip_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; float flTimeDelta; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineGameMode_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eMode; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddInstantaneousTimelineEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchTitle; const char *pchDescription; @@ -9183,7 +9183,7 @@ struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddInstantaneousTimelineEvent struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddRangeTimelineEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchTitle; const char *pchDescription; @@ -9196,7 +9196,7 @@ struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddRangeTimelineEvent_params struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartRangeTimelineEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchTitle; const char *pchDescription; @@ -9208,7 +9208,7 @@ struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartRangeTimelineEvent_param struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_UpdateRangeTimelineEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t ulEvent; const char *pchTitle; const char *pchDescription; @@ -9219,50 +9219,50 @@ struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_UpdateRangeTimelineEvent_para struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndRangeTimelineEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t ulEvent; float flEndOffsetSeconds; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_RemoveTimelineEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t ulEvent; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesEventRecordingExist_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t ulEvent; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartGamePhase_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndGamePhase_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchPhaseID; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesGamePhaseRecordingExist_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchPhaseID; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddGamePhaseTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchTagName; const char *pchTagIcon; const char *pchTagGroup; @@ -9271,7 +9271,7 @@ struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddGamePhaseTag_params struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseAttribute_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchAttributeGroup; const char *pchAttributeValue; uint32_t unPriority; @@ -9279,19 +9279,19 @@ struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseAttribute_params struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToGamePhase_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchPhaseID; }; struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToTimelineEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const uint64_t ulEvent; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -9304,7 +9304,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -9315,14 +9315,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -9331,14 +9331,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -9346,7 +9346,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -9354,7 +9354,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -9362,7 +9362,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -9370,7 +9370,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -9378,7 +9378,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -9386,7 +9386,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -9394,7 +9394,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -9402,14 +9402,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -9422,7 +9422,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -9433,14 +9433,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -9449,14 +9449,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -9464,7 +9464,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -9472,7 +9472,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -9480,7 +9480,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -9488,7 +9488,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -9496,7 +9496,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -9504,7 +9504,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -9512,7 +9512,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -9520,7 +9520,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -9528,7 +9528,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -9536,7 +9536,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -9544,7 +9544,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -9552,7 +9552,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -9560,7 +9560,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -9568,7 +9568,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -9576,7 +9576,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -9584,7 +9584,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -9592,7 +9592,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -9600,7 +9600,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -9608,7 +9608,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -9617,27 +9617,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -9645,7 +9645,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -9655,7 +9655,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t *pbNeedsUpdate; @@ -9666,7 +9666,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -9679,7 +9679,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -9690,14 +9690,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -9706,14 +9706,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -9721,7 +9721,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -9729,7 +9729,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -9737,7 +9737,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -9745,7 +9745,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -9753,7 +9753,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -9761,7 +9761,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -9769,7 +9769,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -9777,7 +9777,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -9785,7 +9785,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -9793,7 +9793,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -9801,7 +9801,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -9809,7 +9809,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -9817,7 +9817,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -9825,7 +9825,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -9833,7 +9833,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -9841,7 +9841,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -9849,7 +9849,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -9857,7 +9857,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -9865,7 +9865,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -9874,27 +9874,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -9902,7 +9902,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -9913,7 +9913,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t *pbNeedsUpdate; @@ -9924,7 +9924,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -9937,7 +9937,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -9948,14 +9948,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -9964,14 +9964,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -9979,7 +9979,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -9987,7 +9987,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -9995,7 +9995,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -10003,7 +10003,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -10011,7 +10011,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -10019,7 +10019,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -10027,7 +10027,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -10035,7 +10035,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -10043,7 +10043,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -10051,7 +10051,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -10059,7 +10059,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -10067,7 +10067,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -10075,7 +10075,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -10083,7 +10083,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -10091,7 +10091,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -10099,7 +10099,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -10107,7 +10107,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -10115,7 +10115,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -10123,7 +10123,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -10132,27 +10132,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -10160,14 +10160,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -10178,7 +10178,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -10187,7 +10187,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -10195,7 +10195,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -10208,7 +10208,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -10219,7 +10219,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -10227,14 +10227,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10243,7 +10243,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10253,7 +10253,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10263,7 +10263,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10273,7 +10273,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10283,7 +10283,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -10291,7 +10291,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10303,14 +10303,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -10318,7 +10318,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -10326,7 +10326,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -10334,7 +10334,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -10342,7 +10342,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -10350,7 +10350,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -10358,7 +10358,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -10366,7 +10366,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -10374,7 +10374,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -10382,7 +10382,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -10390,7 +10390,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -10398,7 +10398,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -10406,7 +10406,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -10414,7 +10414,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -10422,7 +10422,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -10430,7 +10430,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -10438,7 +10438,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -10446,7 +10446,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -10454,7 +10454,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -10462,7 +10462,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -10470,7 +10470,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -10478,7 +10478,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -10486,7 +10486,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -10494,7 +10494,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -10503,7 +10503,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -10511,7 +10511,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -10519,27 +10519,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -10547,14 +10547,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -10565,7 +10565,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -10574,7 +10574,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -10582,7 +10582,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -10595,7 +10595,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -10606,7 +10606,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -10614,14 +10614,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10630,7 +10630,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10640,7 +10640,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10650,7 +10650,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10660,7 +10660,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10670,7 +10670,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -10678,7 +10678,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -10690,14 +10690,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -10705,7 +10705,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -10713,7 +10713,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -10721,7 +10721,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -10729,7 +10729,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -10737,7 +10737,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -10745,7 +10745,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -10753,7 +10753,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -10761,7 +10761,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -10769,7 +10769,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -10777,7 +10777,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -10785,7 +10785,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -10793,7 +10793,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -10801,7 +10801,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -10809,7 +10809,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -10817,7 +10817,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -10825,7 +10825,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -10833,7 +10833,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -10841,7 +10841,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -10849,7 +10849,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -10857,7 +10857,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -10865,7 +10865,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -10873,7 +10873,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -10881,7 +10881,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -10889,7 +10889,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -10897,7 +10897,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -10906,7 +10906,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -10914,14 +10914,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -10929,7 +10929,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -10937,27 +10937,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -10965,14 +10965,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -10983,7 +10983,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -10992,7 +10992,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -11000,7 +11000,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -11013,7 +11013,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -11024,7 +11024,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -11032,14 +11032,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11048,7 +11048,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11058,7 +11058,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11068,7 +11068,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11078,7 +11078,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11088,7 +11088,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -11096,7 +11096,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11108,7 +11108,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -11116,7 +11116,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11129,14 +11129,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -11144,7 +11144,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -11152,7 +11152,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -11160,7 +11160,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -11168,7 +11168,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -11176,7 +11176,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -11184,7 +11184,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -11192,7 +11192,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -11200,7 +11200,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -11208,7 +11208,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -11216,7 +11216,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -11224,7 +11224,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -11232,7 +11232,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -11240,7 +11240,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -11248,7 +11248,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -11257,7 +11257,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -11265,7 +11265,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -11273,7 +11273,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -11281,7 +11281,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -11289,7 +11289,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -11297,7 +11297,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -11305,7 +11305,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -11313,7 +11313,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -11321,7 +11321,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -11329,7 +11329,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -11337,7 +11337,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -11345,7 +11345,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -11353,7 +11353,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -11362,7 +11362,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -11370,7 +11370,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -11379,7 +11379,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -11387,14 +11387,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -11402,7 +11402,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -11410,27 +11410,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -11438,14 +11438,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -11456,7 +11456,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -11465,7 +11465,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -11473,7 +11473,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -11481,13 +11481,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -11500,7 +11500,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -11511,7 +11511,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -11519,14 +11519,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11535,7 +11535,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11545,7 +11545,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11555,7 +11555,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11565,7 +11565,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11575,7 +11575,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -11583,7 +11583,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11597,7 +11597,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -11605,7 +11605,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11618,14 +11618,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -11633,7 +11633,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -11641,7 +11641,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -11649,7 +11649,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -11657,7 +11657,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -11665,7 +11665,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -11673,7 +11673,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -11681,7 +11681,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -11689,7 +11689,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -11697,7 +11697,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -11705,7 +11705,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -11713,7 +11713,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -11721,7 +11721,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -11729,7 +11729,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -11737,7 +11737,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -11746,7 +11746,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -11754,7 +11754,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -11762,7 +11762,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -11770,7 +11770,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -11778,7 +11778,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -11786,7 +11786,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -11794,7 +11794,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -11802,7 +11802,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -11810,7 +11810,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -11818,7 +11818,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -11826,7 +11826,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -11834,7 +11834,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -11842,7 +11842,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -11851,7 +11851,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -11860,7 +11860,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -11868,7 +11868,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11877,7 +11877,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11886,7 +11886,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -11894,7 +11894,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -11902,7 +11902,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -11911,7 +11911,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -11919,14 +11919,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -11934,7 +11934,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -11942,27 +11942,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -11970,14 +11970,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -11988,7 +11988,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -11997,7 +11997,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -12005,7 +12005,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -12013,13 +12013,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -12032,7 +12032,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -12043,7 +12043,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -12051,14 +12051,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12067,7 +12067,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12077,7 +12077,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12087,7 +12087,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12097,7 +12097,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12107,7 +12107,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -12115,7 +12115,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12129,7 +12129,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -12137,7 +12137,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12150,14 +12150,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -12165,7 +12165,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -12173,7 +12173,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -12181,7 +12181,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -12189,7 +12189,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -12197,7 +12197,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -12205,7 +12205,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -12213,7 +12213,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -12221,7 +12221,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -12229,7 +12229,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -12237,7 +12237,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -12245,7 +12245,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -12253,7 +12253,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -12261,7 +12261,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -12269,7 +12269,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -12277,7 +12277,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -12286,7 +12286,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -12294,7 +12294,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -12302,7 +12302,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -12310,7 +12310,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -12318,7 +12318,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -12326,7 +12326,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -12334,7 +12334,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -12342,7 +12342,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -12350,7 +12350,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -12358,7 +12358,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -12366,7 +12366,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -12374,7 +12374,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -12382,7 +12382,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -12391,7 +12391,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -12400,7 +12400,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -12408,7 +12408,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12417,7 +12417,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12426,7 +12426,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12434,7 +12434,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -12442,7 +12442,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -12451,7 +12451,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -12459,14 +12459,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -12474,7 +12474,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -12482,27 +12482,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -12510,14 +12510,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -12528,7 +12528,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -12537,7 +12537,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -12545,7 +12545,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -12553,13 +12553,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -12567,7 +12567,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -12575,13 +12575,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -12594,7 +12594,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -12605,7 +12605,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -12613,14 +12613,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12629,7 +12629,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12639,7 +12639,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12649,7 +12649,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12659,7 +12659,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12669,7 +12669,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -12677,7 +12677,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12691,7 +12691,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -12699,7 +12699,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12712,14 +12712,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -12727,7 +12727,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -12735,7 +12735,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -12743,7 +12743,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -12751,7 +12751,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -12759,7 +12759,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -12767,7 +12767,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -12775,7 +12775,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -12783,7 +12783,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -12791,7 +12791,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -12799,7 +12799,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -12807,7 +12807,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -12815,7 +12815,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -12823,7 +12823,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -12831,7 +12831,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -12839,7 +12839,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -12847,7 +12847,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -12856,7 +12856,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -12864,7 +12864,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -12872,7 +12872,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -12880,7 +12880,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -12888,7 +12888,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -12896,7 +12896,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -12904,7 +12904,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -12912,7 +12912,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -12920,7 +12920,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -12928,7 +12928,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -12936,7 +12936,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -12944,7 +12944,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -12952,7 +12952,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -12961,7 +12961,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -12970,7 +12970,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -12978,7 +12978,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12987,7 +12987,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -12996,7 +12996,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13004,7 +13004,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -13012,7 +13012,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -13021,7 +13021,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -13029,14 +13029,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -13044,7 +13044,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -13052,27 +13052,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -13080,14 +13080,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -13098,7 +13098,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -13107,7 +13107,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -13115,7 +13115,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -13123,13 +13123,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -13137,7 +13137,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -13145,13 +13145,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -13159,7 +13159,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -13167,7 +13167,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -13175,7 +13175,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -13183,21 +13183,21 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -13210,7 +13210,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -13221,7 +13221,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -13232,7 +13232,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -13240,14 +13240,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13256,7 +13256,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13266,7 +13266,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13276,7 +13276,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13286,7 +13286,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13296,7 +13296,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -13304,7 +13304,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13318,7 +13318,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -13326,7 +13326,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13339,14 +13339,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -13354,7 +13354,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -13362,7 +13362,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -13370,7 +13370,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -13378,7 +13378,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -13386,7 +13386,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -13394,7 +13394,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -13402,7 +13402,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -13410,7 +13410,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -13418,7 +13418,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -13426,7 +13426,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -13434,7 +13434,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -13442,7 +13442,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -13450,7 +13450,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -13458,7 +13458,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -13466,7 +13466,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -13474,7 +13474,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -13483,7 +13483,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -13491,7 +13491,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -13499,7 +13499,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -13507,7 +13507,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -13515,7 +13515,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -13523,7 +13523,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -13531,7 +13531,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -13539,7 +13539,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -13547,7 +13547,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -13555,7 +13555,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -13563,7 +13563,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -13571,7 +13571,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bAllowLegacyUpload; @@ -13579,7 +13579,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -13587,7 +13587,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -13596,7 +13596,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -13605,7 +13605,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -13613,7 +13613,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13622,7 +13622,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13631,7 +13631,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13639,7 +13639,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -13647,7 +13647,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -13656,7 +13656,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -13664,14 +13664,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -13679,7 +13679,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -13687,27 +13687,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -13715,14 +13715,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -13733,7 +13733,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -13742,7 +13742,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -13750,7 +13750,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -13758,13 +13758,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -13772,7 +13772,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -13780,13 +13780,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -13794,7 +13794,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -13802,7 +13802,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -13810,7 +13810,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -13818,21 +13818,21 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -13845,7 +13845,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -13856,7 +13856,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -13867,7 +13867,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -13875,14 +13875,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13891,7 +13891,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13901,7 +13901,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13911,7 +13911,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13921,7 +13921,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13931,7 +13931,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -13939,7 +13939,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13953,7 +13953,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -13961,7 +13961,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13974,7 +13974,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -13985,14 +13985,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -14000,7 +14000,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -14008,7 +14008,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -14016,7 +14016,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -14024,7 +14024,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -14032,7 +14032,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -14040,7 +14040,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -14048,7 +14048,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -14056,7 +14056,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -14064,7 +14064,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -14072,7 +14072,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -14080,7 +14080,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -14088,7 +14088,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -14096,7 +14096,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -14104,7 +14104,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -14112,7 +14112,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -14120,7 +14120,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -14129,7 +14129,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -14137,7 +14137,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -14145,7 +14145,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -14153,7 +14153,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -14161,7 +14161,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -14169,7 +14169,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -14177,7 +14177,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -14185,7 +14185,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -14193,7 +14193,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -14201,7 +14201,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -14209,7 +14209,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -14217,7 +14217,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bAllowLegacyUpload; @@ -14225,14 +14225,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -14240,7 +14240,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -14249,7 +14249,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -14258,7 +14258,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -14266,7 +14266,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14275,7 +14275,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14284,7 +14284,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14292,7 +14292,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -14300,7 +14300,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -14309,7 +14309,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -14317,14 +14317,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -14332,7 +14332,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -14340,27 +14340,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -14368,14 +14368,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -14386,7 +14386,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -14395,7 +14395,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -14403,7 +14403,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -14411,13 +14411,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -14425,7 +14425,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -14433,13 +14433,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -14447,7 +14447,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -14455,7 +14455,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -14463,7 +14463,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -14471,21 +14471,21 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -14498,7 +14498,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -14509,7 +14509,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -14520,7 +14520,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -14528,14 +14528,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14544,7 +14544,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14554,7 +14554,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14564,7 +14564,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14574,7 +14574,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14584,7 +14584,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -14592,7 +14592,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14606,7 +14606,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -14614,7 +14614,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14627,7 +14627,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14638,14 +14638,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -14653,7 +14653,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; @@ -14661,7 +14661,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -14669,7 +14669,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -14677,7 +14677,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -14685,7 +14685,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -14693,7 +14693,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -14701,7 +14701,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -14709,7 +14709,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -14717,7 +14717,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -14725,7 +14725,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -14733,7 +14733,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -14741,7 +14741,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -14749,7 +14749,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -14757,7 +14757,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -14765,7 +14765,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -14773,7 +14773,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -14781,7 +14781,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -14790,7 +14790,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -14798,7 +14798,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -14806,7 +14806,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -14814,7 +14814,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -14822,7 +14822,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -14830,7 +14830,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -14838,7 +14838,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -14846,7 +14846,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -14854,7 +14854,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -14862,7 +14862,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -14870,7 +14870,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -14878,7 +14878,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bAllowLegacyUpload; @@ -14886,14 +14886,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -14901,7 +14901,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -14910,7 +14910,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -14919,7 +14919,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -14927,7 +14927,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14936,7 +14936,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14945,7 +14945,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -14953,7 +14953,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -14961,7 +14961,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -14970,7 +14970,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -14978,14 +14978,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -14993,7 +14993,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -15001,27 +15001,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -15029,14 +15029,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -15047,7 +15047,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -15056,7 +15056,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -15064,7 +15064,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -15072,13 +15072,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -15086,7 +15086,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -15094,13 +15094,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -15108,7 +15108,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -15116,7 +15116,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -15124,7 +15124,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -15132,21 +15132,21 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -15159,7 +15159,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -15170,7 +15170,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -15181,7 +15181,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -15189,14 +15189,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15205,7 +15205,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -15213,7 +15213,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15224,7 +15224,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15235,7 +15235,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15245,7 +15245,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15255,7 +15255,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15265,7 +15265,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15275,7 +15275,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -15283,7 +15283,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15297,7 +15297,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -15305,7 +15305,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15318,7 +15318,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15329,14 +15329,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -15344,7 +15344,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; @@ -15352,7 +15352,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -15360,7 +15360,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -15368,7 +15368,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -15376,7 +15376,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -15384,7 +15384,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -15392,7 +15392,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -15400,7 +15400,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -15408,7 +15408,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -15416,7 +15416,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -15424,7 +15424,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -15432,7 +15432,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -15440,7 +15440,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -15448,7 +15448,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -15456,7 +15456,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -15464,7 +15464,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -15472,7 +15472,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -15481,7 +15481,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -15489,7 +15489,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -15497,7 +15497,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -15505,7 +15505,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -15513,7 +15513,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -15521,7 +15521,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -15529,7 +15529,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -15537,7 +15537,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -15545,7 +15545,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -15553,7 +15553,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -15561,7 +15561,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -15569,7 +15569,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bAllowLegacyUpload; @@ -15577,14 +15577,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -15592,7 +15592,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -15601,7 +15601,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -15610,7 +15610,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -15618,7 +15618,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15627,7 +15627,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15636,7 +15636,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15644,7 +15644,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -15652,7 +15652,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -15661,7 +15661,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -15669,14 +15669,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -15684,7 +15684,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -15692,27 +15692,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -15720,14 +15720,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -15738,7 +15738,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -15747,7 +15747,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -15755,7 +15755,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -15763,13 +15763,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -15777,7 +15777,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -15785,13 +15785,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -15799,7 +15799,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -15807,7 +15807,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -15815,7 +15815,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -15823,33 +15823,33 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -15862,7 +15862,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -15873,7 +15873,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -15884,7 +15884,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -15892,14 +15892,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15908,7 +15908,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -15916,7 +15916,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15927,7 +15927,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15938,7 +15938,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15948,7 +15948,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15958,7 +15958,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15968,7 +15968,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -15978,7 +15978,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -15986,7 +15986,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16000,7 +16000,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -16008,7 +16008,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16021,7 +16021,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16032,14 +16032,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -16047,7 +16047,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; @@ -16055,7 +16055,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -16063,7 +16063,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -16071,7 +16071,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -16079,7 +16079,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -16087,7 +16087,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -16095,7 +16095,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -16103,7 +16103,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -16111,7 +16111,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -16119,7 +16119,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -16127,7 +16127,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -16135,7 +16135,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -16143,7 +16143,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -16151,7 +16151,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -16159,7 +16159,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -16167,7 +16167,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -16175,7 +16175,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -16184,7 +16184,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -16193,7 +16193,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -16202,7 +16202,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -16210,7 +16210,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -16218,7 +16218,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -16226,7 +16226,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -16234,7 +16234,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -16242,7 +16242,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -16250,7 +16250,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -16258,7 +16258,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -16266,7 +16266,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -16274,7 +16274,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -16282,7 +16282,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -16290,7 +16290,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bAllowLegacyUpload; @@ -16298,14 +16298,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -16313,7 +16313,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -16322,7 +16322,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -16331,7 +16331,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -16339,7 +16339,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16348,7 +16348,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16357,7 +16357,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16365,7 +16365,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -16373,7 +16373,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -16382,7 +16382,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -16390,14 +16390,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -16405,7 +16405,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -16413,27 +16413,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -16441,14 +16441,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -16459,7 +16459,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -16468,7 +16468,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -16476,7 +16476,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -16484,13 +16484,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -16498,7 +16498,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -16506,13 +16506,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -16520,7 +16520,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -16528,7 +16528,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -16536,7 +16536,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -16544,33 +16544,33 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -16583,7 +16583,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -16594,7 +16594,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -16605,7 +16605,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -16613,14 +16613,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16629,7 +16629,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -16637,7 +16637,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16648,7 +16648,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16659,7 +16659,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16669,7 +16669,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16679,7 +16679,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16689,7 +16689,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16699,7 +16699,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -16707,7 +16707,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16721,7 +16721,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -16729,7 +16729,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16742,7 +16742,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -16753,7 +16753,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -16763,14 +16763,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors_par struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -16778,7 +16778,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; @@ -16786,7 +16786,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -16794,7 +16794,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -16802,7 +16802,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -16810,7 +16810,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -16818,7 +16818,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -16826,7 +16826,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -16834,7 +16834,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -16842,7 +16842,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -16850,7 +16850,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -16858,7 +16858,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -16866,7 +16866,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -16874,7 +16874,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -16882,7 +16882,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -16890,7 +16890,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -16898,7 +16898,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -16906,7 +16906,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -16915,7 +16915,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -16924,7 +16924,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -16933,7 +16933,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -16941,7 +16941,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -16949,7 +16949,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -16957,7 +16957,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -16965,7 +16965,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -16973,7 +16973,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -16981,7 +16981,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -16989,7 +16989,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -16997,7 +16997,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -17005,7 +17005,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -17013,7 +17013,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -17021,7 +17021,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bAllowLegacyUpload; @@ -17029,14 +17029,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -17044,7 +17044,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -17053,7 +17053,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -17062,7 +17062,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -17070,7 +17070,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17079,7 +17079,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17088,7 +17088,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17096,7 +17096,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t descid; @@ -17104,7 +17104,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t descid; @@ -17112,7 +17112,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -17120,7 +17120,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -17129,7 +17129,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -17137,14 +17137,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -17152,7 +17152,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -17160,27 +17160,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -17188,14 +17188,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -17206,7 +17206,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -17215,7 +17215,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -17223,7 +17223,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -17231,13 +17231,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -17245,7 +17245,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -17253,13 +17253,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -17267,7 +17267,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -17275,7 +17275,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -17283,7 +17283,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -17291,33 +17291,33 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -17330,7 +17330,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -17341,7 +17341,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -17352,7 +17352,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -17360,14 +17360,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17376,7 +17376,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -17384,7 +17384,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17395,7 +17395,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17406,7 +17406,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17416,7 +17416,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17426,7 +17426,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17436,7 +17436,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17446,7 +17446,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -17454,7 +17454,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17468,7 +17468,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -17476,7 +17476,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17489,7 +17489,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17500,7 +17500,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -17510,14 +17510,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors_par struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -17525,7 +17525,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; @@ -17533,7 +17533,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -17541,7 +17541,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -17549,7 +17549,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -17557,7 +17557,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -17565,7 +17565,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -17573,7 +17573,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -17581,7 +17581,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -17589,7 +17589,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -17597,7 +17597,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -17605,7 +17605,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -17613,7 +17613,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -17621,7 +17621,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -17629,7 +17629,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -17637,7 +17637,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -17645,7 +17645,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -17653,7 +17653,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -17662,7 +17662,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -17671,7 +17671,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -17680,7 +17680,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -17688,7 +17688,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -17696,7 +17696,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -17704,7 +17704,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -17712,7 +17712,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -17720,7 +17720,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -17728,7 +17728,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -17736,7 +17736,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -17744,7 +17744,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -17753,7 +17753,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -17761,7 +17761,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -17769,7 +17769,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bAllowLegacyUpload; @@ -17777,14 +17777,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -17792,7 +17792,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -17801,7 +17801,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -17810,7 +17810,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -17818,7 +17818,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17827,7 +17827,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17836,7 +17836,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -17844,7 +17844,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t descid; @@ -17852,7 +17852,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t descid; @@ -17860,7 +17860,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -17868,7 +17868,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -17877,7 +17877,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -17885,14 +17885,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -17900,7 +17900,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -17908,27 +17908,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -17936,14 +17936,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -17954,7 +17954,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -17963,7 +17963,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -17971,7 +17971,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -17979,13 +17979,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -17993,7 +17993,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -18001,13 +18001,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -18015,7 +18015,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -18023,7 +18023,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -18031,7 +18031,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -18039,33 +18039,33 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t *pvecDescriptors; uint32_t cMaxEntries; @@ -18073,7 +18073,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferenc struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -18086,7 +18086,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -18097,7 +18097,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -18108,7 +18108,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUGCDetailsRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -18116,14 +18116,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18132,7 +18132,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -18140,7 +18140,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18151,7 +18151,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTagDisplayName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18162,7 +18162,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTagDisplayName_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCPreviewURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18172,7 +18172,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18182,7 +18182,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18192,7 +18192,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCStatistic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18202,7 +18202,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -18210,7 +18210,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCAdditionalPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18224,7 +18224,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -18232,7 +18232,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18245,7 +18245,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18256,7 +18256,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSupportedGameVersions_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -18264,7 +18264,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSupportedGameVersions_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSupportedGameVersionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18276,7 +18276,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSupportedGameVersionData_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCContentDescriptors_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -18286,14 +18286,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCContentDescriptors_par struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -18301,7 +18301,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTagGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; @@ -18309,7 +18309,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -18317,7 +18317,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnOnlyIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -18325,7 +18325,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -18333,7 +18333,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -18341,7 +18341,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -18349,7 +18349,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -18357,7 +18357,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -18365,7 +18365,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -18373,7 +18373,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnPlaytimeStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -18381,7 +18381,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -18389,7 +18389,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowCachedResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -18397,7 +18397,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAdminQuery_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bAdminQuery; @@ -18405,7 +18405,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAdminQuery_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -18413,7 +18413,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -18421,7 +18421,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -18429,7 +18429,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -18437,7 +18437,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeCreatedDateRange_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -18446,7 +18446,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeCreatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeUpdatedDateRange_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -18455,7 +18455,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeUpdatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -18464,7 +18464,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -18472,7 +18472,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -18480,7 +18480,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -18488,7 +18488,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -18496,7 +18496,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -18504,7 +18504,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemUpdateLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -18512,7 +18512,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -18520,7 +18520,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -18528,7 +18528,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -18537,7 +18537,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemContent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -18545,7 +18545,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -18553,7 +18553,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowLegacyUpload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bAllowLegacyUpload; @@ -18561,14 +18561,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowLegacyUpload_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAllItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -18576,7 +18576,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -18585,7 +18585,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -18594,7 +18594,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -18602,7 +18602,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18611,7 +18611,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18620,7 +18620,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18628,7 +18628,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddContentDescriptor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t descid; @@ -18636,7 +18636,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddContentDescriptor_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveContentDescriptor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t descid; @@ -18644,7 +18644,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveContentDescriptor_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRequiredGameVersions_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszGameBranchMin; @@ -18653,7 +18653,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRequiredGameVersions_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubmitItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -18661,7 +18661,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemUpdateProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -18670,7 +18670,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -18678,14 +18678,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemToFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -18693,7 +18693,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemFromFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -18701,27 +18701,27 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UnsubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -18729,14 +18729,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemInstallInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -18747,7 +18747,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemDownloadInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -18756,7 +18756,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_DownloadItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -18764,7 +18764,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_BInitWorkshopForGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -18772,13 +18772,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SuspendDownloads_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -18786,7 +18786,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -18794,13 +18794,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTrackingForAllItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -18808,7 +18808,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -18816,7 +18816,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -18824,7 +18824,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -18832,33 +18832,33 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetAppDependencies_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_DeleteItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_ShowWorkshopEULA_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetWorkshopEULAStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserContentDescriptorPreferences_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t *pvecDescriptors; uint32_t cMaxEntries; @@ -18866,7 +18866,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserContentDescriptorPreferenc struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUserUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unAccountID; uint32_t eListType; @@ -18879,7 +18879,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUserUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -18890,7 +18890,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eQueryType; uint32_t eMatchingeMatchingUGCTypeFileType; @@ -18901,7 +18901,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUGCDetailsRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -18909,14 +18909,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUGCDetailsRequest_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SendQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18925,7 +18925,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCResult_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -18933,7 +18933,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18944,7 +18944,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTagDisplayName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18955,7 +18955,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTagDisplayName_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCPreviewURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18965,7 +18965,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCPreviewURL_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18975,7 +18975,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18985,7 +18985,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCStatistic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -18995,7 +18995,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCStatistic_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -19003,7 +19003,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumAdditionalPreviews_ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCAdditionalPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -19017,7 +19017,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCAdditionalPreview_para struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -19025,7 +19025,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -19038,7 +19038,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -19049,7 +19049,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag_2_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSupportedGameVersions_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -19057,7 +19057,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSupportedGameVersions_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSupportedGameVersionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -19069,7 +19069,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSupportedGameVersionData_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCContentDescriptors_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint32_t index; @@ -19079,14 +19079,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCContentDescriptors_par struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_ReleaseQueryUGCRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -19094,7 +19094,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTagGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const w_SteamParamStringArray_t *pTagGroups; @@ -19102,7 +19102,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTagGroup_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddExcludedTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pTagName; @@ -19110,7 +19110,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddExcludedTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnOnlyIDs_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnOnlyIDs; @@ -19118,7 +19118,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnOnlyIDs_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnKeyValueTags; @@ -19126,7 +19126,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnLongDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnLongDescription; @@ -19134,7 +19134,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnLongDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnMetadata; @@ -19142,7 +19142,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnChildren_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnChildren; @@ -19150,7 +19150,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnChildren_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnAdditionalPreviews_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnAdditionalPreviews; @@ -19158,7 +19158,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnAdditionalPreviews_param struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnTotalOnly_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bReturnTotalOnly; @@ -19166,7 +19166,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnTotalOnly_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnPlaytimeStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -19174,7 +19174,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnPlaytimeStats_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -19182,7 +19182,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowCachedResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unMaxAgeSeconds; @@ -19190,7 +19190,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowCachedResponse_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAdminQuery_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bAdminQuery; @@ -19198,7 +19198,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAdminQuery_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetCloudFileNameFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pMatchCloudFileName; @@ -19206,7 +19206,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetCloudFileNameFilter_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetMatchAnyTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bMatchAnyTag; @@ -19214,7 +19214,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetMatchAnyTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSearchText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pSearchText; @@ -19222,7 +19222,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSearchText_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRankedByTrendDays_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t unDays; @@ -19230,7 +19230,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRankedByTrendDays_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeCreatedDateRange_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -19239,7 +19239,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeCreatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeUpdatedDateRange_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t rtStart; @@ -19248,7 +19248,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeUpdatedDateRange_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pKey; @@ -19257,7 +19257,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RequestUGCDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t unMaxAgeSeconds; @@ -19265,7 +19265,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RequestUGCDetails_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint32_t eFileType; @@ -19273,7 +19273,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nConsumerAppId; uint64_t nPublishedFileID; @@ -19281,7 +19281,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTitle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchTitle; @@ -19289,7 +19289,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTitle_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchDescription; @@ -19297,7 +19297,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemDescription_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemUpdateLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchLanguage; @@ -19305,7 +19305,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemUpdateLanguage_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemMetadata_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchMetaData; @@ -19313,7 +19313,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemMetadata_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemVisibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t eVisibility; @@ -19321,7 +19321,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemVisibility_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t updateHandle; const w_SteamParamStringArray_t *pTags; @@ -19330,7 +19330,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemContent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszContentFolder; @@ -19338,7 +19338,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemContent_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -19346,7 +19346,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowLegacyUpload_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; int8_t bAllowLegacyUpload; @@ -19354,14 +19354,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowLegacyUpload_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAllItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemKeyValueTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -19369,7 +19369,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemKeyValueTags_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemKeyValueTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pchKey; @@ -19378,7 +19378,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemKeyValueTag_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszPreviewFile; @@ -19387,7 +19387,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszVideoID; @@ -19395,7 +19395,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewFile_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -19404,7 +19404,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewFile_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -19413,7 +19413,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewVideo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemPreview_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t index; @@ -19421,7 +19421,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemPreview_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddContentDescriptor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t descid; @@ -19429,7 +19429,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddContentDescriptor_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveContentDescriptor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; uint32_t descid; @@ -19437,7 +19437,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveContentDescriptor_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRequiredGameVersions_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t handle; const char *pszGameBranchMin; @@ -19446,7 +19446,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRequiredGameVersions_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubmitItemUpdate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t handle; const char *pchChangeNote; @@ -19454,7 +19454,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubmitItemUpdate_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemUpdateProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t handle; uint64_t *punBytesProcessed; @@ -19463,7 +19463,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemUpdateProgress_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; int8_t bVoteUp; @@ -19471,14 +19471,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetUserItemVote_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserItemVote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemToFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -19486,7 +19486,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemToFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemFromFavorites_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t nAppId; uint64_t nPublishedFileID; @@ -19494,28 +19494,28 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemFromFavorites_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UnsubscribeItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int8_t bIncludeLocallyDisabled; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSubscribedItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pvecPublishedFileID; uint32_t cMaxEntries; @@ -19524,14 +19524,14 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSubscribedItems_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemInstallInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punSizeOnDisk; @@ -19542,7 +19542,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemInstallInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemDownloadInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; uint64_t *punBytesDownloaded; @@ -19551,7 +19551,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemDownloadInfo_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_DownloadItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t nPublishedFileID; int8_t bHighPriority; @@ -19559,7 +19559,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_DownloadItem_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_BInitWorkshopForGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unWorkshopDepotID; const char *pszFolder; @@ -19567,13 +19567,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_BInitWorkshopForGameServer_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SuspendDownloads_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bSuspend; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -19581,7 +19581,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTracking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t *pvecPublishedFileID; uint32_t unNumPublishedFileIDs; @@ -19589,13 +19589,13 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTracking_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTrackingForAllItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -19603,7 +19603,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nParentPublishedFileID; uint64_t nChildPublishedFileID; @@ -19611,7 +19611,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -19619,7 +19619,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAppDependency_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; uint32_t nAppID; @@ -19627,33 +19627,33 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAppDependency_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetAppDependencies_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_DeleteItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t nPublishedFileID; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_ShowWorkshopEULA_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetWorkshopEULAStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserContentDescriptorPreferences_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t *pvecDescriptors; uint32_t cMaxEntries; @@ -19661,7 +19661,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserContentDescriptorPreferenc struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemsDisabledLocally_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t *pvecPublishedFileIDs; uint32_t unNumPublishedFileIDs; @@ -19670,7 +19670,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemsDisabledLocally_params struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSubscriptionsLoadOrder_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t *pvecPublishedFileIDs; uint32_t unNumPublishedFileIDs; @@ -19678,7 +19678,7 @@ struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSubscriptionsLoadOrder_params struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchServiceMethod; const void *pRequestBuffer; @@ -19688,7 +19688,7 @@ struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMetho struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hHandle; uint32_t *punResponseSize; @@ -19697,7 +19697,7 @@ struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethod struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hHandle; void *pResponseBuffer; @@ -19707,14 +19707,14 @@ struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethod struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hHandle; }; struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchServiceNotification; const void *pNotificationBuffer; @@ -19723,14 +19723,14 @@ struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotif struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CGameID nGameID; uint32_t iStat; @@ -19738,7 +19738,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CGameID nGameID; const char *pchName; @@ -19746,14 +19746,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CGameID nGameID; uint32_t iAchievement; @@ -19761,14 +19761,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CGameID nGameID; uint32_t iAchievement; @@ -19776,14 +19776,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementNa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19792,7 +19792,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19801,7 +19801,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19810,7 +19810,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19819,7 +19819,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19829,7 +19829,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19838,7 +19838,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19847,7 +19847,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement_p struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19855,7 +19855,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19863,14 +19863,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement_p struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19878,7 +19878,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement_para struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19886,7 +19886,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CGameID nGameID; const char *pchName; @@ -19894,7 +19894,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CGameID nGameID; const char *pchName; @@ -19903,14 +19903,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CGameID nGameID; uint32_t iStat; @@ -19918,7 +19918,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CGameID nGameID; const char *pchName; @@ -19926,14 +19926,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CGameID nGameID; uint32_t iAchievement; @@ -19941,14 +19941,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19957,7 +19957,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19966,7 +19966,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19975,7 +19975,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19984,7 +19984,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -19994,7 +19994,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -20003,7 +20003,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -20011,7 +20011,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -20019,14 +20019,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement_para struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CGameID nGameID; const char *pchName; @@ -20034,7 +20034,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CGameID nGameID; const char *pchName; @@ -20043,7 +20043,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CGameID nGameID; const char *pchName; @@ -20053,13 +20053,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -20067,7 +20067,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float *pData; @@ -20075,7 +20075,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -20083,7 +20083,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float fData; @@ -20091,7 +20091,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -20100,7 +20100,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -20108,34 +20108,34 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -20143,7 +20143,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -20152,13 +20152,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -20166,7 +20166,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float *pData; @@ -20174,7 +20174,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -20182,7 +20182,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float fData; @@ -20190,7 +20190,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -20199,7 +20199,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -20207,34 +20207,34 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -20242,7 +20242,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -20251,14 +20251,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20267,7 +20267,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20276,7 +20276,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20285,13 +20285,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -20299,7 +20299,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float *pData; @@ -20307,7 +20307,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -20315,7 +20315,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float fData; @@ -20323,7 +20323,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -20332,7 +20332,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -20340,34 +20340,34 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -20375,7 +20375,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -20384,14 +20384,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20400,7 +20400,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20409,7 +20409,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20418,14 +20418,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchLeaderboardName; uint32_t eLeaderboardSortMethod; @@ -20434,42 +20434,42 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchLeaderboardName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardDataRequest; @@ -20479,7 +20479,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; @@ -20490,7 +20490,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderbo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; int32_t nScore; @@ -20500,13 +20500,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -20514,7 +20514,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float *pData; @@ -20522,7 +20522,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -20530,7 +20530,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float fData; @@ -20538,7 +20538,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -20547,7 +20547,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -20555,34 +20555,34 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -20590,7 +20590,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -20599,14 +20599,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20615,7 +20615,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20624,7 +20624,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20633,14 +20633,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchLeaderboardName; uint32_t eLeaderboardSortMethod; @@ -20649,42 +20649,42 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchLeaderboardName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardDataRequest; @@ -20694,7 +20694,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; @@ -20705,7 +20705,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderbo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardUploadScoreMethod; @@ -20716,19 +20716,19 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -20736,7 +20736,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float *pData; @@ -20744,7 +20744,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -20752,7 +20752,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float fData; @@ -20760,7 +20760,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -20769,7 +20769,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -20777,21 +20777,21 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -20800,20 +20800,20 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -20821,7 +20821,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -20830,14 +20830,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20846,7 +20846,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20855,7 +20855,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20864,7 +20864,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -20874,14 +20874,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAnd struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchLeaderboardName; uint32_t eLeaderboardSortMethod; @@ -20890,42 +20890,42 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchLeaderboardName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardDataRequest; @@ -20935,7 +20935,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; @@ -20946,7 +20946,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderbo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardUploadScoreMethod; @@ -20957,19 +20957,19 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -20977,7 +20977,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float *pData; @@ -20985,7 +20985,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -20993,7 +20993,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float fData; @@ -21001,7 +21001,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -21010,7 +21010,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -21018,21 +21018,21 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -21041,20 +21041,20 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -21062,7 +21062,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -21071,14 +21071,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21087,7 +21087,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21096,7 +21096,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21105,7 +21105,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21115,14 +21115,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAnd struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchLeaderboardName; uint32_t eLeaderboardSortMethod; @@ -21131,42 +21131,42 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchLeaderboardName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardDataRequest; @@ -21176,7 +21176,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; @@ -21187,7 +21187,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderbo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardUploadScoreMethod; @@ -21198,7 +21198,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint64_t hUGC; @@ -21206,19 +21206,19 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -21226,7 +21226,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float *pData; @@ -21234,7 +21234,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -21242,7 +21242,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float fData; @@ -21250,7 +21250,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -21259,7 +21259,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -21267,21 +21267,21 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -21290,20 +21290,20 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -21311,7 +21311,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -21320,14 +21320,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21336,7 +21336,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21345,7 +21345,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21354,7 +21354,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21364,14 +21364,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAnd struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchLeaderboardName; uint32_t eLeaderboardSortMethod; @@ -21380,42 +21380,42 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchLeaderboardName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardDataRequest; @@ -21425,7 +21425,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; CSteamID *prgUsers; @@ -21434,7 +21434,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; @@ -21445,7 +21445,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderbo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardUploadScoreMethod; @@ -21456,7 +21456,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint64_t hUGC; @@ -21464,19 +21464,19 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -21484,7 +21484,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float *pData; @@ -21492,7 +21492,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -21500,7 +21500,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float fData; @@ -21508,7 +21508,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -21517,7 +21517,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -21525,21 +21525,21 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -21548,20 +21548,20 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -21569,7 +21569,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -21578,14 +21578,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21594,7 +21594,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21603,7 +21603,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21612,7 +21612,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21622,14 +21622,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAnd struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchLeaderboardName; uint32_t eLeaderboardSortMethod; @@ -21638,42 +21638,42 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchLeaderboardName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardDataRequest; @@ -21683,7 +21683,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; CSteamID *prgUsers; @@ -21692,7 +21692,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; @@ -21703,7 +21703,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderbo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardUploadScoreMethod; @@ -21714,7 +21714,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint64_t hUGC; @@ -21722,19 +21722,19 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; char *pchName; uint32_t unNameBufLen; @@ -21744,7 +21744,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchiev struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iIteratorPrevious; char *pchName; @@ -21755,7 +21755,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAc struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float *pflPercent; @@ -21763,14 +21763,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchieve struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t nHistoryDays; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchStatName; int64_t *pData; @@ -21778,7 +21778,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchStatName; double *pData; @@ -21786,7 +21786,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2_param struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchStatName; int64_t *pData; @@ -21795,7 +21795,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchStatName; double *pData; @@ -21804,13 +21804,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -21818,7 +21818,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float *pData; @@ -21826,7 +21826,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -21834,7 +21834,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float fData; @@ -21842,7 +21842,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -21851,7 +21851,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -21859,21 +21859,21 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -21882,20 +21882,20 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -21903,7 +21903,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -21912,27 +21912,27 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t iAchievement; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21941,7 +21941,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21950,7 +21950,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21959,7 +21959,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -21969,14 +21969,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAnd struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchLeaderboardName; uint32_t eLeaderboardSortMethod; @@ -21985,42 +21985,42 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchLeaderboardName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardDataRequest; @@ -22030,7 +22030,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; CSteamID *prgUsers; @@ -22039,7 +22039,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; @@ -22050,7 +22050,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderbo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardUploadScoreMethod; @@ -22061,7 +22061,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint64_t hUGC; @@ -22069,19 +22069,19 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; char *pchName; uint32_t unNameBufLen; @@ -22091,7 +22091,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchiev struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iIteratorPrevious; char *pchName; @@ -22102,7 +22102,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAc struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float *pflPercent; @@ -22110,14 +22110,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchieve struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t nHistoryDays; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchStatName; int64_t *pData; @@ -22125,7 +22125,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchStatName; double *pData; @@ -22133,7 +22133,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2_param struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchStatName; int64_t *pData; @@ -22142,7 +22142,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchStatName; double *pData; @@ -22151,13 +22151,13 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -22165,7 +22165,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float *pData; @@ -22173,7 +22173,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -22181,7 +22181,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float fData; @@ -22189,7 +22189,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -22198,7 +22198,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -22206,21 +22206,21 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -22229,20 +22229,20 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -22250,7 +22250,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -22259,27 +22259,27 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t iAchievement; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -22288,7 +22288,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -22297,7 +22297,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -22306,7 +22306,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -22316,14 +22316,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAnd struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchLeaderboardName; uint32_t eLeaderboardSortMethod; @@ -22332,42 +22332,42 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchLeaderboardName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardDataRequest; @@ -22377,7 +22377,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; CSteamID *prgUsers; @@ -22386,7 +22386,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; @@ -22397,7 +22397,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderbo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardUploadScoreMethod; @@ -22408,7 +22408,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint64_t hUGC; @@ -22416,19 +22416,19 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; char *pchName; uint32_t unNameBufLen; @@ -22438,7 +22438,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchiev struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iIteratorPrevious; char *pchName; @@ -22449,7 +22449,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAc struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float *pflPercent; @@ -22457,14 +22457,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchieve struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t nHistoryDays; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchStatName; int64_t *pData; @@ -22472,7 +22472,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchStatName; double *pData; @@ -22480,7 +22480,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2_param struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchStatName; int64_t *pData; @@ -22489,7 +22489,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchStatName; double *pData; @@ -22498,7 +22498,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t *pnMinProgress; @@ -22507,7 +22507,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgres struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float *pfMinProgress; @@ -22516,7 +22516,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgres struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t *pData; @@ -22524,7 +22524,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float *pData; @@ -22532,7 +22532,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t nData; @@ -22540,7 +22540,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float fData; @@ -22548,7 +22548,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UpdateAvgRateStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float flCountThisSession; @@ -22557,7 +22557,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UpdateAvgRateStat_par struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -22565,21 +22565,21 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievement_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ClearAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAndUnlockTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int8_t *pbAchieved; @@ -22588,20 +22588,20 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAndUnlo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_StoreStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementIcon_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementDisplayAttribute_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; const char *pchName; const char *pchKey; @@ -22609,7 +22609,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementDisplay struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_IndicateAchievementProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; uint32_t nCurProgress; @@ -22618,27 +22618,27 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_IndicateAchievementPr struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumAchievements_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t iAchievement; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -22647,7 +22647,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -22656,7 +22656,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat_2_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -22665,7 +22665,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievement_pa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievementAndUnlockTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -22675,14 +22675,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievementAnd struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ResetAllStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bAchievementsToo; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindOrCreateLeaderboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchLeaderboardName; uint32_t eLeaderboardSortMethod; @@ -22691,42 +22691,42 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindOrCreateLeaderboa struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindLeaderboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchLeaderboardName; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardEntryCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardSortMethod_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardDisplayType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamLeaderboard; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEntries_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardDataRequest; @@ -22736,7 +22736,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEntriesForUsers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; CSteamID *prgUsers; @@ -22745,7 +22745,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEn struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetDownloadedLeaderboardEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamLeaderboardEntries; int32_t index; @@ -22756,7 +22756,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetDownloadedLeaderbo struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UploadLeaderboardScore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint32_t eLeaderboardUploadScoreMethod; @@ -22767,7 +22767,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UploadLeaderboardScor struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_AttachLeaderboardUGC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t hSteamLeaderboard; uint64_t hUGC; @@ -22775,19 +22775,19 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_AttachLeaderboardUGC_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumberOfCurrentPlayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalAchievementPercentages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetMostAchievedAchievementInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; char *pchName; uint32_t unNameBufLen; @@ -22797,7 +22797,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetMostAchievedAchiev struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNextMostAchievedAchievementInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iIteratorPrevious; char *pchName; @@ -22808,7 +22808,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNextMostAchievedAc struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAchievedPercent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float *pflPercent; @@ -22816,14 +22816,14 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAchieve struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t nHistoryDays; }; struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchStatName; int64_t *pData; @@ -22831,7 +22831,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat_params struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchStatName; double *pData; @@ -22839,7 +22839,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat_2_param struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchStatName; int64_t *pData; @@ -22848,7 +22848,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchStatName; double *pData; @@ -22857,7 +22857,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory_ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgressLimits_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; int32_t *pnMinProgress; @@ -22866,7 +22866,7 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgres struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgressLimits_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchName; float *pfMinProgress; @@ -22875,39 +22875,39 @@ struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgres struct ISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unVideoAppID; }; struct ISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pnNumViewers; }; struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unVideoAppID; }; struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pnNumViewers; }; struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unVideoAppID; }; struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unVideoAppID; char *pchBuffer; @@ -22916,26 +22916,26 @@ struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp_params struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetVideoURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unVideoAppID; }; struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_IsBroadcasting_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pnNumViewers; }; struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFSettings_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unVideoAppID; }; struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFStringForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unVideoAppID; char *pchBuffer; @@ -22944,48 +22944,48 @@ struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFStringForApp_params struct ISteamClient_SteamClient006_CreateSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamClient_SteamClient006_BReleaseSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient006_CreateGlobalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t *phSteamPipe; }; struct ISteamClient_SteamClient006_ConnectToGlobalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient006_CreateLocalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t *phSteamPipe; }; struct ISteamClient_SteamClient006_ReleaseUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient006_GetISteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUser*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -22994,14 +22994,14 @@ struct ISteamClient_SteamClient006_GetISteamUser_params struct ISteamClient_SteamClient006_GetIVAC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; }; struct ISteamClient_SteamClient006_GetISteamGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServer*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23010,21 +23010,21 @@ struct ISteamClient_SteamClient006_GetISteamGameServer_params struct ISteamClient_SteamClient006_SetLocalIPBinding_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient006_GetUniverseName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eUniverse; }; struct ISteamClient_SteamClient006_GetISteamFriends_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamFriends*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23033,7 +23033,7 @@ struct ISteamClient_SteamClient006_GetISteamFriends_params struct ISteamClient_SteamClient006_GetISteamUtils_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUtils*/ *_ret; int32_t hSteamPipe; const char *pchVersion; @@ -23041,7 +23041,7 @@ struct ISteamClient_SteamClient006_GetISteamUtils_params struct ISteamClient_SteamClient006_GetISteamBilling_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23050,7 +23050,7 @@ struct ISteamClient_SteamClient006_GetISteamBilling_params struct ISteamClient_SteamClient006_GetISteamMatchmaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmaking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23059,7 +23059,7 @@ struct ISteamClient_SteamClient006_GetISteamMatchmaking_params struct ISteamClient_SteamClient006_GetISteamApps_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamApps*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23068,7 +23068,7 @@ struct ISteamClient_SteamClient006_GetISteamApps_params struct ISteamClient_SteamClient006_GetISteamContentServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamContentServer*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23077,7 +23077,7 @@ struct ISteamClient_SteamClient006_GetISteamContentServer_params struct ISteamClient_SteamClient006_GetISteamMasterServerUpdater_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMasterServerUpdater*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23086,7 +23086,7 @@ struct ISteamClient_SteamClient006_GetISteamMasterServerUpdater_params struct ISteamClient_SteamClient006_GetISteamMatchmakingServers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmakingServers*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23095,52 +23095,52 @@ struct ISteamClient_SteamClient006_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient006_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamClient_SteamClient006_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient007_CreateSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamClient_SteamClient007_BReleaseSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient007_ConnectToGlobalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient007_CreateLocalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t *phSteamPipe; }; struct ISteamClient_SteamClient007_ReleaseUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient007_GetISteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUser*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23149,7 +23149,7 @@ struct ISteamClient_SteamClient007_GetISteamUser_params struct ISteamClient_SteamClient007_GetISteamGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServer*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23158,14 +23158,14 @@ struct ISteamClient_SteamClient007_GetISteamGameServer_params struct ISteamClient_SteamClient007_SetLocalIPBinding_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient007_GetISteamFriends_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamFriends*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23174,7 +23174,7 @@ struct ISteamClient_SteamClient007_GetISteamFriends_params struct ISteamClient_SteamClient007_GetISteamUtils_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUtils*/ *_ret; int32_t hSteamPipe; const char *pchVersion; @@ -23182,7 +23182,7 @@ struct ISteamClient_SteamClient007_GetISteamUtils_params struct ISteamClient_SteamClient007_GetISteamMatchmaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmaking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23191,7 +23191,7 @@ struct ISteamClient_SteamClient007_GetISteamMatchmaking_params struct ISteamClient_SteamClient007_GetISteamContentServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamContentServer*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23200,7 +23200,7 @@ struct ISteamClient_SteamClient007_GetISteamContentServer_params struct ISteamClient_SteamClient007_GetISteamMasterServerUpdater_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMasterServerUpdater*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23209,7 +23209,7 @@ struct ISteamClient_SteamClient007_GetISteamMasterServerUpdater_params struct ISteamClient_SteamClient007_GetISteamMatchmakingServers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmakingServers*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23218,7 +23218,7 @@ struct ISteamClient_SteamClient007_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient007_GetISteamGenericInterface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23227,18 +23227,18 @@ struct ISteamClient_SteamClient007_GetISteamGenericInterface_params struct ISteamClient_SteamClient007_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamClient_SteamClient007_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient007_GetISteamUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUserStats*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23247,7 +23247,7 @@ struct ISteamClient_SteamClient007_GetISteamUserStats_params struct ISteamClient_SteamClient007_GetISteamApps_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamApps*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23256,7 +23256,7 @@ struct ISteamClient_SteamClient007_GetISteamApps_params struct ISteamClient_SteamClient007_GetISteamNetworking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamNetworking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23265,13 +23265,13 @@ struct ISteamClient_SteamClient007_GetISteamNetworking_params struct ISteamClient_SteamClient007_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient007_GetISteamRemoteStorage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamRemoteStorage*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -23280,27 +23280,27 @@ struct ISteamClient_SteamClient007_GetISteamRemoteStorage_params struct ISteamClient_SteamClient008_CreateSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamClient_SteamClient008_BReleaseSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient008_ConnectToGlobalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient008_CreateLocalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -23308,14 +23308,14 @@ struct ISteamClient_SteamClient008_CreateLocalUser_params struct ISteamClient_SteamClient008_ReleaseUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient008_GetISteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUser*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23324,7 +23324,7 @@ struct ISteamClient_SteamClient008_GetISteamUser_params struct ISteamClient_SteamClient008_GetISteamGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServer*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23333,14 +23333,14 @@ struct ISteamClient_SteamClient008_GetISteamGameServer_params struct ISteamClient_SteamClient008_SetLocalIPBinding_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient008_GetISteamFriends_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamFriends*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23349,7 +23349,7 @@ struct ISteamClient_SteamClient008_GetISteamFriends_params struct ISteamClient_SteamClient008_GetISteamUtils_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUtils*/ *_ret; int32_t hSteamPipe; const char *pchVersion; @@ -23357,7 +23357,7 @@ struct ISteamClient_SteamClient008_GetISteamUtils_params struct ISteamClient_SteamClient008_GetISteamMatchmaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmaking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23366,7 +23366,7 @@ struct ISteamClient_SteamClient008_GetISteamMatchmaking_params struct ISteamClient_SteamClient008_GetISteamMasterServerUpdater_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMasterServerUpdater*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23375,7 +23375,7 @@ struct ISteamClient_SteamClient008_GetISteamMasterServerUpdater_params struct ISteamClient_SteamClient008_GetISteamMatchmakingServers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmakingServers*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23384,7 +23384,7 @@ struct ISteamClient_SteamClient008_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient008_GetISteamGenericInterface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23393,7 +23393,7 @@ struct ISteamClient_SteamClient008_GetISteamGenericInterface_params struct ISteamClient_SteamClient008_GetISteamUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUserStats*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23402,7 +23402,7 @@ struct ISteamClient_SteamClient008_GetISteamUserStats_params struct ISteamClient_SteamClient008_GetISteamApps_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamApps*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23411,7 +23411,7 @@ struct ISteamClient_SteamClient008_GetISteamApps_params struct ISteamClient_SteamClient008_GetISteamNetworking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamNetworking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23420,7 +23420,7 @@ struct ISteamClient_SteamClient008_GetISteamNetworking_params struct ISteamClient_SteamClient008_GetISteamRemoteStorage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamRemoteStorage*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -23429,44 +23429,44 @@ struct ISteamClient_SteamClient008_GetISteamRemoteStorage_params struct ISteamClient_SteamClient008_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamClient_SteamClient008_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient008_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient009_CreateSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamClient_SteamClient009_BReleaseSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient009_ConnectToGlobalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient009_CreateLocalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -23474,14 +23474,14 @@ struct ISteamClient_SteamClient009_CreateLocalUser_params struct ISteamClient_SteamClient009_ReleaseUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient009_GetISteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUser*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23490,7 +23490,7 @@ struct ISteamClient_SteamClient009_GetISteamUser_params struct ISteamClient_SteamClient009_GetISteamGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServer*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23499,14 +23499,14 @@ struct ISteamClient_SteamClient009_GetISteamGameServer_params struct ISteamClient_SteamClient009_SetLocalIPBinding_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient009_GetISteamFriends_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamFriends*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23515,7 +23515,7 @@ struct ISteamClient_SteamClient009_GetISteamFriends_params struct ISteamClient_SteamClient009_GetISteamUtils_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUtils*/ *_ret; int32_t hSteamPipe; const char *pchVersion; @@ -23523,7 +23523,7 @@ struct ISteamClient_SteamClient009_GetISteamUtils_params struct ISteamClient_SteamClient009_GetISteamMatchmaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmaking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23532,7 +23532,7 @@ struct ISteamClient_SteamClient009_GetISteamMatchmaking_params struct ISteamClient_SteamClient009_GetISteamMasterServerUpdater_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMasterServerUpdater*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23541,7 +23541,7 @@ struct ISteamClient_SteamClient009_GetISteamMasterServerUpdater_params struct ISteamClient_SteamClient009_GetISteamMatchmakingServers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmakingServers*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23550,7 +23550,7 @@ struct ISteamClient_SteamClient009_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient009_GetISteamGenericInterface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23559,7 +23559,7 @@ struct ISteamClient_SteamClient009_GetISteamGenericInterface_params struct ISteamClient_SteamClient009_GetISteamUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUserStats*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23568,7 +23568,7 @@ struct ISteamClient_SteamClient009_GetISteamUserStats_params struct ISteamClient_SteamClient009_GetISteamGameServerStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServerStats*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -23577,7 +23577,7 @@ struct ISteamClient_SteamClient009_GetISteamGameServerStats_params struct ISteamClient_SteamClient009_GetISteamApps_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamApps*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23586,7 +23586,7 @@ struct ISteamClient_SteamClient009_GetISteamApps_params struct ISteamClient_SteamClient009_GetISteamNetworking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamNetworking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23595,7 +23595,7 @@ struct ISteamClient_SteamClient009_GetISteamNetworking_params struct ISteamClient_SteamClient009_GetISteamRemoteStorage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamRemoteStorage*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -23604,44 +23604,44 @@ struct ISteamClient_SteamClient009_GetISteamRemoteStorage_params struct ISteamClient_SteamClient009_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamClient_SteamClient009_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient009_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient010_CreateSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamClient_SteamClient010_BReleaseSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient010_ConnectToGlobalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient010_CreateLocalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -23649,14 +23649,14 @@ struct ISteamClient_SteamClient010_CreateLocalUser_params struct ISteamClient_SteamClient010_ReleaseUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient010_GetISteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUser*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23665,7 +23665,7 @@ struct ISteamClient_SteamClient010_GetISteamUser_params struct ISteamClient_SteamClient010_GetISteamGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServer*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23674,14 +23674,14 @@ struct ISteamClient_SteamClient010_GetISteamGameServer_params struct ISteamClient_SteamClient010_SetLocalIPBinding_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient010_GetISteamFriends_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamFriends*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23690,7 +23690,7 @@ struct ISteamClient_SteamClient010_GetISteamFriends_params struct ISteamClient_SteamClient010_GetISteamUtils_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUtils*/ *_ret; int32_t hSteamPipe; const char *pchVersion; @@ -23698,7 +23698,7 @@ struct ISteamClient_SteamClient010_GetISteamUtils_params struct ISteamClient_SteamClient010_GetISteamMatchmaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmaking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23707,7 +23707,7 @@ struct ISteamClient_SteamClient010_GetISteamMatchmaking_params struct ISteamClient_SteamClient010_GetISteamMasterServerUpdater_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMasterServerUpdater*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23716,7 +23716,7 @@ struct ISteamClient_SteamClient010_GetISteamMasterServerUpdater_params struct ISteamClient_SteamClient010_GetISteamMatchmakingServers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmakingServers*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23725,7 +23725,7 @@ struct ISteamClient_SteamClient010_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient010_GetISteamGenericInterface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23734,7 +23734,7 @@ struct ISteamClient_SteamClient010_GetISteamGenericInterface_params struct ISteamClient_SteamClient010_GetISteamUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUserStats*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23743,7 +23743,7 @@ struct ISteamClient_SteamClient010_GetISteamUserStats_params struct ISteamClient_SteamClient010_GetISteamGameServerStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServerStats*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -23752,7 +23752,7 @@ struct ISteamClient_SteamClient010_GetISteamGameServerStats_params struct ISteamClient_SteamClient010_GetISteamApps_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamApps*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23761,7 +23761,7 @@ struct ISteamClient_SteamClient010_GetISteamApps_params struct ISteamClient_SteamClient010_GetISteamNetworking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamNetworking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23770,7 +23770,7 @@ struct ISteamClient_SteamClient010_GetISteamNetworking_params struct ISteamClient_SteamClient010_GetISteamRemoteStorage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamRemoteStorage*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -23779,30 +23779,30 @@ struct ISteamClient_SteamClient010_GetISteamRemoteStorage_params struct ISteamClient_SteamClient010_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamClient_SteamClient010_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient010_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient010_BShutdownIfAllPipesClosed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamClient_SteamClient010_GetISteamHTTP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamHTTP*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -23811,27 +23811,27 @@ struct ISteamClient_SteamClient010_GetISteamHTTP_params struct ISteamClient_SteamClient011_CreateSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamClient_SteamClient011_BReleaseSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient011_ConnectToGlobalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient011_CreateLocalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -23839,14 +23839,14 @@ struct ISteamClient_SteamClient011_CreateLocalUser_params struct ISteamClient_SteamClient011_ReleaseUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient011_GetISteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUser*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23855,7 +23855,7 @@ struct ISteamClient_SteamClient011_GetISteamUser_params struct ISteamClient_SteamClient011_GetISteamGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServer*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23864,14 +23864,14 @@ struct ISteamClient_SteamClient011_GetISteamGameServer_params struct ISteamClient_SteamClient011_SetLocalIPBinding_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient011_GetISteamFriends_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamFriends*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23880,7 +23880,7 @@ struct ISteamClient_SteamClient011_GetISteamFriends_params struct ISteamClient_SteamClient011_GetISteamUtils_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUtils*/ *_ret; int32_t hSteamPipe; const char *pchVersion; @@ -23888,7 +23888,7 @@ struct ISteamClient_SteamClient011_GetISteamUtils_params struct ISteamClient_SteamClient011_GetISteamMatchmaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmaking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23897,7 +23897,7 @@ struct ISteamClient_SteamClient011_GetISteamMatchmaking_params struct ISteamClient_SteamClient011_GetISteamMasterServerUpdater_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMasterServerUpdater*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23906,7 +23906,7 @@ struct ISteamClient_SteamClient011_GetISteamMasterServerUpdater_params struct ISteamClient_SteamClient011_GetISteamMatchmakingServers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmakingServers*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23915,7 +23915,7 @@ struct ISteamClient_SteamClient011_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient011_GetISteamGenericInterface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23924,7 +23924,7 @@ struct ISteamClient_SteamClient011_GetISteamGenericInterface_params struct ISteamClient_SteamClient011_GetISteamUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUserStats*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23933,7 +23933,7 @@ struct ISteamClient_SteamClient011_GetISteamUserStats_params struct ISteamClient_SteamClient011_GetISteamGameServerStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServerStats*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -23942,7 +23942,7 @@ struct ISteamClient_SteamClient011_GetISteamGameServerStats_params struct ISteamClient_SteamClient011_GetISteamApps_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamApps*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23951,7 +23951,7 @@ struct ISteamClient_SteamClient011_GetISteamApps_params struct ISteamClient_SteamClient011_GetISteamNetworking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamNetworking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -23960,7 +23960,7 @@ struct ISteamClient_SteamClient011_GetISteamNetworking_params struct ISteamClient_SteamClient011_GetISteamRemoteStorage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamRemoteStorage*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -23969,7 +23969,7 @@ struct ISteamClient_SteamClient011_GetISteamRemoteStorage_params struct ISteamClient_SteamClient011_GetISteamScreenshots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamScreenshots*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -23978,30 +23978,30 @@ struct ISteamClient_SteamClient011_GetISteamScreenshots_params struct ISteamClient_SteamClient011_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamClient_SteamClient011_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient011_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient011_BShutdownIfAllPipesClosed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamClient_SteamClient011_GetISteamHTTP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamHTTP*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24010,27 +24010,27 @@ struct ISteamClient_SteamClient011_GetISteamHTTP_params struct ISteamClient_SteamClient012_CreateSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamClient_SteamClient012_BReleaseSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient012_ConnectToGlobalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient012_CreateLocalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -24038,14 +24038,14 @@ struct ISteamClient_SteamClient012_CreateLocalUser_params struct ISteamClient_SteamClient012_ReleaseUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient012_GetISteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUser*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24054,7 +24054,7 @@ struct ISteamClient_SteamClient012_GetISteamUser_params struct ISteamClient_SteamClient012_GetISteamGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServer*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24063,14 +24063,14 @@ struct ISteamClient_SteamClient012_GetISteamGameServer_params struct ISteamClient_SteamClient012_SetLocalIPBinding_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient012_GetISteamFriends_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamFriends*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24079,7 +24079,7 @@ struct ISteamClient_SteamClient012_GetISteamFriends_params struct ISteamClient_SteamClient012_GetISteamUtils_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUtils*/ *_ret; int32_t hSteamPipe; const char *pchVersion; @@ -24087,7 +24087,7 @@ struct ISteamClient_SteamClient012_GetISteamUtils_params struct ISteamClient_SteamClient012_GetISteamMatchmaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmaking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24096,7 +24096,7 @@ struct ISteamClient_SteamClient012_GetISteamMatchmaking_params struct ISteamClient_SteamClient012_GetISteamMatchmakingServers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmakingServers*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24105,7 +24105,7 @@ struct ISteamClient_SteamClient012_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient012_GetISteamGenericInterface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24114,7 +24114,7 @@ struct ISteamClient_SteamClient012_GetISteamGenericInterface_params struct ISteamClient_SteamClient012_GetISteamUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUserStats*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24123,7 +24123,7 @@ struct ISteamClient_SteamClient012_GetISteamUserStats_params struct ISteamClient_SteamClient012_GetISteamGameServerStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServerStats*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24132,7 +24132,7 @@ struct ISteamClient_SteamClient012_GetISteamGameServerStats_params struct ISteamClient_SteamClient012_GetISteamApps_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamApps*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24141,7 +24141,7 @@ struct ISteamClient_SteamClient012_GetISteamApps_params struct ISteamClient_SteamClient012_GetISteamNetworking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamNetworking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24150,7 +24150,7 @@ struct ISteamClient_SteamClient012_GetISteamNetworking_params struct ISteamClient_SteamClient012_GetISteamRemoteStorage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamRemoteStorage*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24159,7 +24159,7 @@ struct ISteamClient_SteamClient012_GetISteamRemoteStorage_params struct ISteamClient_SteamClient012_GetISteamScreenshots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamScreenshots*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24168,30 +24168,30 @@ struct ISteamClient_SteamClient012_GetISteamScreenshots_params struct ISteamClient_SteamClient012_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamClient_SteamClient012_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient012_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient012_BShutdownIfAllPipesClosed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamClient_SteamClient012_GetISteamHTTP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamHTTP*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24200,7 +24200,7 @@ struct ISteamClient_SteamClient012_GetISteamHTTP_params struct ISteamClient_SteamClient012_GetISteamUnifiedMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUnifiedMessages*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24209,7 +24209,7 @@ struct ISteamClient_SteamClient012_GetISteamUnifiedMessages_params struct ISteamClient_SteamClient012_GetISteamController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamController*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24218,7 +24218,7 @@ struct ISteamClient_SteamClient012_GetISteamController_params struct ISteamClient_SteamClient012_GetISteamUGC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUGC*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24227,27 +24227,27 @@ struct ISteamClient_SteamClient012_GetISteamUGC_params struct ISteamClient_SteamClient013_CreateSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamClient_SteamClient013_BReleaseSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient013_ConnectToGlobalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient013_CreateLocalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -24255,14 +24255,14 @@ struct ISteamClient_SteamClient013_CreateLocalUser_params struct ISteamClient_SteamClient013_ReleaseUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient013_GetISteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUser*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24271,7 +24271,7 @@ struct ISteamClient_SteamClient013_GetISteamUser_params struct ISteamClient_SteamClient013_GetISteamGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServer*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24280,14 +24280,14 @@ struct ISteamClient_SteamClient013_GetISteamGameServer_params struct ISteamClient_SteamClient013_SetLocalIPBinding_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient013_GetISteamFriends_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamFriends*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24296,7 +24296,7 @@ struct ISteamClient_SteamClient013_GetISteamFriends_params struct ISteamClient_SteamClient013_GetISteamUtils_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUtils*/ *_ret; int32_t hSteamPipe; const char *pchVersion; @@ -24304,7 +24304,7 @@ struct ISteamClient_SteamClient013_GetISteamUtils_params struct ISteamClient_SteamClient013_GetISteamMatchmaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmaking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24313,7 +24313,7 @@ struct ISteamClient_SteamClient013_GetISteamMatchmaking_params struct ISteamClient_SteamClient013_GetISteamMatchmakingServers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmakingServers*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24322,7 +24322,7 @@ struct ISteamClient_SteamClient013_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient013_GetISteamGenericInterface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24331,7 +24331,7 @@ struct ISteamClient_SteamClient013_GetISteamGenericInterface_params struct ISteamClient_SteamClient013_GetISteamUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUserStats*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24340,7 +24340,7 @@ struct ISteamClient_SteamClient013_GetISteamUserStats_params struct ISteamClient_SteamClient013_GetISteamGameServerStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServerStats*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24349,7 +24349,7 @@ struct ISteamClient_SteamClient013_GetISteamGameServerStats_params struct ISteamClient_SteamClient013_GetISteamApps_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamApps*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24358,7 +24358,7 @@ struct ISteamClient_SteamClient013_GetISteamApps_params struct ISteamClient_SteamClient013_GetISteamNetworking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamNetworking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24367,7 +24367,7 @@ struct ISteamClient_SteamClient013_GetISteamNetworking_params struct ISteamClient_SteamClient013_GetISteamRemoteStorage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamRemoteStorage*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24376,7 +24376,7 @@ struct ISteamClient_SteamClient013_GetISteamRemoteStorage_params struct ISteamClient_SteamClient013_GetISteamScreenshots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamScreenshots*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24385,30 +24385,30 @@ struct ISteamClient_SteamClient013_GetISteamScreenshots_params struct ISteamClient_SteamClient013_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamClient_SteamClient013_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient013_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient013_BShutdownIfAllPipesClosed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamClient_SteamClient013_GetISteamHTTP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamHTTP*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24417,7 +24417,7 @@ struct ISteamClient_SteamClient013_GetISteamHTTP_params struct ISteamClient_SteamClient013_GetISteamUnifiedMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUnifiedMessages*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24426,7 +24426,7 @@ struct ISteamClient_SteamClient013_GetISteamUnifiedMessages_params struct ISteamClient_SteamClient013_GetISteamController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamController*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24435,7 +24435,7 @@ struct ISteamClient_SteamClient013_GetISteamController_params struct ISteamClient_SteamClient013_GetISteamUGC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUGC*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24444,7 +24444,7 @@ struct ISteamClient_SteamClient013_GetISteamUGC_params struct ISteamClient_SteamClient013_GetISteamInventory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24453,7 +24453,7 @@ struct ISteamClient_SteamClient013_GetISteamInventory_params struct ISteamClient_SteamClient013_GetISteamVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24462,7 +24462,7 @@ struct ISteamClient_SteamClient013_GetISteamVideo_params struct ISteamClient_SteamClient013_GetISteamAppList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamAppList*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24471,27 +24471,27 @@ struct ISteamClient_SteamClient013_GetISteamAppList_params struct ISteamClient_SteamClient014_CreateSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamClient_SteamClient014_BReleaseSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient014_ConnectToGlobalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient014_CreateLocalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -24499,14 +24499,14 @@ struct ISteamClient_SteamClient014_CreateLocalUser_params struct ISteamClient_SteamClient014_ReleaseUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient014_GetISteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUser*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24515,7 +24515,7 @@ struct ISteamClient_SteamClient014_GetISteamUser_params struct ISteamClient_SteamClient014_GetISteamGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServer*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24524,14 +24524,14 @@ struct ISteamClient_SteamClient014_GetISteamGameServer_params struct ISteamClient_SteamClient014_SetLocalIPBinding_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient014_GetISteamFriends_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamFriends*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24540,7 +24540,7 @@ struct ISteamClient_SteamClient014_GetISteamFriends_params struct ISteamClient_SteamClient014_GetISteamUtils_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUtils*/ *_ret; int32_t hSteamPipe; const char *pchVersion; @@ -24548,7 +24548,7 @@ struct ISteamClient_SteamClient014_GetISteamUtils_params struct ISteamClient_SteamClient014_GetISteamMatchmaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmaking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24557,7 +24557,7 @@ struct ISteamClient_SteamClient014_GetISteamMatchmaking_params struct ISteamClient_SteamClient014_GetISteamMatchmakingServers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmakingServers*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24566,7 +24566,7 @@ struct ISteamClient_SteamClient014_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient014_GetISteamGenericInterface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24575,7 +24575,7 @@ struct ISteamClient_SteamClient014_GetISteamGenericInterface_params struct ISteamClient_SteamClient014_GetISteamUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUserStats*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24584,7 +24584,7 @@ struct ISteamClient_SteamClient014_GetISteamUserStats_params struct ISteamClient_SteamClient014_GetISteamGameServerStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServerStats*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24593,7 +24593,7 @@ struct ISteamClient_SteamClient014_GetISteamGameServerStats_params struct ISteamClient_SteamClient014_GetISteamApps_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamApps*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24602,7 +24602,7 @@ struct ISteamClient_SteamClient014_GetISteamApps_params struct ISteamClient_SteamClient014_GetISteamNetworking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamNetworking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24611,7 +24611,7 @@ struct ISteamClient_SteamClient014_GetISteamNetworking_params struct ISteamClient_SteamClient014_GetISteamRemoteStorage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamRemoteStorage*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24620,7 +24620,7 @@ struct ISteamClient_SteamClient014_GetISteamRemoteStorage_params struct ISteamClient_SteamClient014_GetISteamScreenshots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamScreenshots*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24629,30 +24629,30 @@ struct ISteamClient_SteamClient014_GetISteamScreenshots_params struct ISteamClient_SteamClient014_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamClient_SteamClient014_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient014_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient014_BShutdownIfAllPipesClosed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamClient_SteamClient014_GetISteamHTTP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamHTTP*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24661,7 +24661,7 @@ struct ISteamClient_SteamClient014_GetISteamHTTP_params struct ISteamClient_SteamClient014_GetISteamUnifiedMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUnifiedMessages*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24670,7 +24670,7 @@ struct ISteamClient_SteamClient014_GetISteamUnifiedMessages_params struct ISteamClient_SteamClient014_GetISteamController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamController*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24679,7 +24679,7 @@ struct ISteamClient_SteamClient014_GetISteamController_params struct ISteamClient_SteamClient014_GetISteamUGC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUGC*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24688,7 +24688,7 @@ struct ISteamClient_SteamClient014_GetISteamUGC_params struct ISteamClient_SteamClient014_GetISteamAppList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamAppList*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24697,7 +24697,7 @@ struct ISteamClient_SteamClient014_GetISteamAppList_params struct ISteamClient_SteamClient014_GetISteamMusic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMusic*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24706,27 +24706,27 @@ struct ISteamClient_SteamClient014_GetISteamMusic_params struct ISteamClient_SteamClient015_CreateSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamClient_SteamClient015_BReleaseSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient015_ConnectToGlobalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient015_CreateLocalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -24734,14 +24734,14 @@ struct ISteamClient_SteamClient015_CreateLocalUser_params struct ISteamClient_SteamClient015_ReleaseUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient015_GetISteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUser*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24750,7 +24750,7 @@ struct ISteamClient_SteamClient015_GetISteamUser_params struct ISteamClient_SteamClient015_GetISteamGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServer*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24759,14 +24759,14 @@ struct ISteamClient_SteamClient015_GetISteamGameServer_params struct ISteamClient_SteamClient015_SetLocalIPBinding_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient015_GetISteamFriends_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamFriends*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24775,7 +24775,7 @@ struct ISteamClient_SteamClient015_GetISteamFriends_params struct ISteamClient_SteamClient015_GetISteamUtils_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUtils*/ *_ret; int32_t hSteamPipe; const char *pchVersion; @@ -24783,7 +24783,7 @@ struct ISteamClient_SteamClient015_GetISteamUtils_params struct ISteamClient_SteamClient015_GetISteamMatchmaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmaking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24792,7 +24792,7 @@ struct ISteamClient_SteamClient015_GetISteamMatchmaking_params struct ISteamClient_SteamClient015_GetISteamMatchmakingServers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmakingServers*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24801,7 +24801,7 @@ struct ISteamClient_SteamClient015_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient015_GetISteamGenericInterface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24810,7 +24810,7 @@ struct ISteamClient_SteamClient015_GetISteamGenericInterface_params struct ISteamClient_SteamClient015_GetISteamUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUserStats*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24819,7 +24819,7 @@ struct ISteamClient_SteamClient015_GetISteamUserStats_params struct ISteamClient_SteamClient015_GetISteamGameServerStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServerStats*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24828,7 +24828,7 @@ struct ISteamClient_SteamClient015_GetISteamGameServerStats_params struct ISteamClient_SteamClient015_GetISteamApps_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamApps*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24837,7 +24837,7 @@ struct ISteamClient_SteamClient015_GetISteamApps_params struct ISteamClient_SteamClient015_GetISteamNetworking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamNetworking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24846,7 +24846,7 @@ struct ISteamClient_SteamClient015_GetISteamNetworking_params struct ISteamClient_SteamClient015_GetISteamRemoteStorage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamRemoteStorage*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24855,7 +24855,7 @@ struct ISteamClient_SteamClient015_GetISteamRemoteStorage_params struct ISteamClient_SteamClient015_GetISteamScreenshots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamScreenshots*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24864,30 +24864,30 @@ struct ISteamClient_SteamClient015_GetISteamScreenshots_params struct ISteamClient_SteamClient015_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamClient_SteamClient015_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient015_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient015_BShutdownIfAllPipesClosed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamClient_SteamClient015_GetISteamHTTP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamHTTP*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24896,7 +24896,7 @@ struct ISteamClient_SteamClient015_GetISteamHTTP_params struct ISteamClient_SteamClient015_GetISteamUnifiedMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUnifiedMessages*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24905,7 +24905,7 @@ struct ISteamClient_SteamClient015_GetISteamUnifiedMessages_params struct ISteamClient_SteamClient015_GetISteamController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamController*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24914,7 +24914,7 @@ struct ISteamClient_SteamClient015_GetISteamController_params struct ISteamClient_SteamClient015_GetISteamUGC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUGC*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24923,7 +24923,7 @@ struct ISteamClient_SteamClient015_GetISteamUGC_params struct ISteamClient_SteamClient015_GetISteamAppList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamAppList*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24932,7 +24932,7 @@ struct ISteamClient_SteamClient015_GetISteamAppList_params struct ISteamClient_SteamClient015_GetISteamMusic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMusic*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24941,7 +24941,7 @@ struct ISteamClient_SteamClient015_GetISteamMusic_params struct ISteamClient_SteamClient015_GetISteamMusicRemote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMusicRemote*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -24950,27 +24950,27 @@ struct ISteamClient_SteamClient015_GetISteamMusicRemote_params struct ISteamClient_SteamClient016_CreateSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamClient_SteamClient016_BReleaseSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient016_ConnectToGlobalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient016_CreateLocalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -24978,14 +24978,14 @@ struct ISteamClient_SteamClient016_CreateLocalUser_params struct ISteamClient_SteamClient016_ReleaseUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient016_GetISteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUser*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -24994,7 +24994,7 @@ struct ISteamClient_SteamClient016_GetISteamUser_params struct ISteamClient_SteamClient016_GetISteamGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServer*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25003,14 +25003,14 @@ struct ISteamClient_SteamClient016_GetISteamGameServer_params struct ISteamClient_SteamClient016_SetLocalIPBinding_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient016_GetISteamFriends_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamFriends*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25019,7 +25019,7 @@ struct ISteamClient_SteamClient016_GetISteamFriends_params struct ISteamClient_SteamClient016_GetISteamUtils_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUtils*/ *_ret; int32_t hSteamPipe; const char *pchVersion; @@ -25027,7 +25027,7 @@ struct ISteamClient_SteamClient016_GetISteamUtils_params struct ISteamClient_SteamClient016_GetISteamMatchmaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmaking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25036,7 +25036,7 @@ struct ISteamClient_SteamClient016_GetISteamMatchmaking_params struct ISteamClient_SteamClient016_GetISteamMatchmakingServers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmakingServers*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25045,7 +25045,7 @@ struct ISteamClient_SteamClient016_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient016_GetISteamGenericInterface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25054,7 +25054,7 @@ struct ISteamClient_SteamClient016_GetISteamGenericInterface_params struct ISteamClient_SteamClient016_GetISteamUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUserStats*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25063,7 +25063,7 @@ struct ISteamClient_SteamClient016_GetISteamUserStats_params struct ISteamClient_SteamClient016_GetISteamGameServerStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServerStats*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25072,7 +25072,7 @@ struct ISteamClient_SteamClient016_GetISteamGameServerStats_params struct ISteamClient_SteamClient016_GetISteamApps_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamApps*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25081,7 +25081,7 @@ struct ISteamClient_SteamClient016_GetISteamApps_params struct ISteamClient_SteamClient016_GetISteamNetworking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamNetworking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25090,7 +25090,7 @@ struct ISteamClient_SteamClient016_GetISteamNetworking_params struct ISteamClient_SteamClient016_GetISteamRemoteStorage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamRemoteStorage*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25099,7 +25099,7 @@ struct ISteamClient_SteamClient016_GetISteamRemoteStorage_params struct ISteamClient_SteamClient016_GetISteamScreenshots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamScreenshots*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25108,30 +25108,30 @@ struct ISteamClient_SteamClient016_GetISteamScreenshots_params struct ISteamClient_SteamClient016_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamClient_SteamClient016_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient016_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient016_BShutdownIfAllPipesClosed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamClient_SteamClient016_GetISteamHTTP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamHTTP*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25140,7 +25140,7 @@ struct ISteamClient_SteamClient016_GetISteamHTTP_params struct ISteamClient_SteamClient016_GetISteamUnifiedMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUnifiedMessages*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25149,7 +25149,7 @@ struct ISteamClient_SteamClient016_GetISteamUnifiedMessages_params struct ISteamClient_SteamClient016_GetISteamController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamController*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25158,7 +25158,7 @@ struct ISteamClient_SteamClient016_GetISteamController_params struct ISteamClient_SteamClient016_GetISteamUGC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUGC*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25167,7 +25167,7 @@ struct ISteamClient_SteamClient016_GetISteamUGC_params struct ISteamClient_SteamClient016_GetISteamAppList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamAppList*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25176,7 +25176,7 @@ struct ISteamClient_SteamClient016_GetISteamAppList_params struct ISteamClient_SteamClient016_GetISteamMusic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMusic*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25185,7 +25185,7 @@ struct ISteamClient_SteamClient016_GetISteamMusic_params struct ISteamClient_SteamClient016_GetISteamMusicRemote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMusicRemote*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25194,7 +25194,7 @@ struct ISteamClient_SteamClient016_GetISteamMusicRemote_params struct ISteamClient_SteamClient016_GetISteamHTMLSurface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamHTMLSurface*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25203,45 +25203,45 @@ struct ISteamClient_SteamClient016_GetISteamHTMLSurface_params struct ISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL func)(uint64_t, void *, uint32_t, int32_t); }; struct ISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL func)(uint64_t, void *, uint32_t, int32_t); }; struct ISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t (*W_CDECL func)(int32_t); }; struct ISteamClient_SteamClient017_CreateSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamClient_SteamClient017_BReleaseSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient017_ConnectToGlobalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient017_CreateLocalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -25249,14 +25249,14 @@ struct ISteamClient_SteamClient017_CreateLocalUser_params struct ISteamClient_SteamClient017_ReleaseUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient017_GetISteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUser*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25265,7 +25265,7 @@ struct ISteamClient_SteamClient017_GetISteamUser_params struct ISteamClient_SteamClient017_GetISteamGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServer*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25274,14 +25274,14 @@ struct ISteamClient_SteamClient017_GetISteamGameServer_params struct ISteamClient_SteamClient017_SetLocalIPBinding_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient017_GetISteamFriends_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamFriends*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25290,7 +25290,7 @@ struct ISteamClient_SteamClient017_GetISteamFriends_params struct ISteamClient_SteamClient017_GetISteamUtils_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUtils*/ *_ret; int32_t hSteamPipe; const char *pchVersion; @@ -25298,7 +25298,7 @@ struct ISteamClient_SteamClient017_GetISteamUtils_params struct ISteamClient_SteamClient017_GetISteamMatchmaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmaking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25307,7 +25307,7 @@ struct ISteamClient_SteamClient017_GetISteamMatchmaking_params struct ISteamClient_SteamClient017_GetISteamMatchmakingServers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmakingServers*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25316,7 +25316,7 @@ struct ISteamClient_SteamClient017_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient017_GetISteamGenericInterface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25325,7 +25325,7 @@ struct ISteamClient_SteamClient017_GetISteamGenericInterface_params struct ISteamClient_SteamClient017_GetISteamUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUserStats*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25334,7 +25334,7 @@ struct ISteamClient_SteamClient017_GetISteamUserStats_params struct ISteamClient_SteamClient017_GetISteamGameServerStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServerStats*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25343,7 +25343,7 @@ struct ISteamClient_SteamClient017_GetISteamGameServerStats_params struct ISteamClient_SteamClient017_GetISteamApps_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamApps*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25352,7 +25352,7 @@ struct ISteamClient_SteamClient017_GetISteamApps_params struct ISteamClient_SteamClient017_GetISteamNetworking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamNetworking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25361,7 +25361,7 @@ struct ISteamClient_SteamClient017_GetISteamNetworking_params struct ISteamClient_SteamClient017_GetISteamRemoteStorage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamRemoteStorage*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25370,7 +25370,7 @@ struct ISteamClient_SteamClient017_GetISteamRemoteStorage_params struct ISteamClient_SteamClient017_GetISteamScreenshots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamScreenshots*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25379,30 +25379,30 @@ struct ISteamClient_SteamClient017_GetISteamScreenshots_params struct ISteamClient_SteamClient017_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamClient_SteamClient017_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient017_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient017_BShutdownIfAllPipesClosed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamClient_SteamClient017_GetISteamHTTP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamHTTP*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25411,7 +25411,7 @@ struct ISteamClient_SteamClient017_GetISteamHTTP_params struct ISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25420,7 +25420,7 @@ struct ISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages_params struct ISteamClient_SteamClient017_GetISteamController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamController*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25429,7 +25429,7 @@ struct ISteamClient_SteamClient017_GetISteamController_params struct ISteamClient_SteamClient017_GetISteamUGC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUGC*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25438,7 +25438,7 @@ struct ISteamClient_SteamClient017_GetISteamUGC_params struct ISteamClient_SteamClient017_GetISteamAppList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamAppList*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25447,7 +25447,7 @@ struct ISteamClient_SteamClient017_GetISteamAppList_params struct ISteamClient_SteamClient017_GetISteamMusic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMusic*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25456,7 +25456,7 @@ struct ISteamClient_SteamClient017_GetISteamMusic_params struct ISteamClient_SteamClient017_GetISteamMusicRemote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMusicRemote*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25465,7 +25465,7 @@ struct ISteamClient_SteamClient017_GetISteamMusicRemote_params struct ISteamClient_SteamClient017_GetISteamHTMLSurface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamHTMLSurface*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25474,25 +25474,25 @@ struct ISteamClient_SteamClient017_GetISteamHTMLSurface_params struct ISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t (*W_CDECL func)(int32_t); }; struct ISteamClient_SteamClient017_GetISteamInventory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamInventory*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25501,7 +25501,7 @@ struct ISteamClient_SteamClient017_GetISteamInventory_params struct ISteamClient_SteamClient017_GetISteamVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamVideo*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25510,7 +25510,7 @@ struct ISteamClient_SteamClient017_GetISteamVideo_params struct ISteamClient_SteamClient017_GetISteamParentalSettings_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamParentalSettings*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25519,27 +25519,27 @@ struct ISteamClient_SteamClient017_GetISteamParentalSettings_params struct ISteamClient_SteamClient018_CreateSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamClient_SteamClient018_BReleaseSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient018_ConnectToGlobalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient018_CreateLocalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -25547,14 +25547,14 @@ struct ISteamClient_SteamClient018_CreateLocalUser_params struct ISteamClient_SteamClient018_ReleaseUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient018_GetISteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUser*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25563,7 +25563,7 @@ struct ISteamClient_SteamClient018_GetISteamUser_params struct ISteamClient_SteamClient018_GetISteamGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServer*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25572,14 +25572,14 @@ struct ISteamClient_SteamClient018_GetISteamGameServer_params struct ISteamClient_SteamClient018_SetLocalIPBinding_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient018_GetISteamFriends_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamFriends*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25588,7 +25588,7 @@ struct ISteamClient_SteamClient018_GetISteamFriends_params struct ISteamClient_SteamClient018_GetISteamUtils_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUtils*/ *_ret; int32_t hSteamPipe; const char *pchVersion; @@ -25596,7 +25596,7 @@ struct ISteamClient_SteamClient018_GetISteamUtils_params struct ISteamClient_SteamClient018_GetISteamMatchmaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmaking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25605,7 +25605,7 @@ struct ISteamClient_SteamClient018_GetISteamMatchmaking_params struct ISteamClient_SteamClient018_GetISteamMatchmakingServers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmakingServers*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25614,7 +25614,7 @@ struct ISteamClient_SteamClient018_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient018_GetISteamGenericInterface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25623,7 +25623,7 @@ struct ISteamClient_SteamClient018_GetISteamGenericInterface_params struct ISteamClient_SteamClient018_GetISteamUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUserStats*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25632,7 +25632,7 @@ struct ISteamClient_SteamClient018_GetISteamUserStats_params struct ISteamClient_SteamClient018_GetISteamGameServerStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServerStats*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25641,7 +25641,7 @@ struct ISteamClient_SteamClient018_GetISteamGameServerStats_params struct ISteamClient_SteamClient018_GetISteamApps_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamApps*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25650,7 +25650,7 @@ struct ISteamClient_SteamClient018_GetISteamApps_params struct ISteamClient_SteamClient018_GetISteamNetworking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamNetworking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25659,7 +25659,7 @@ struct ISteamClient_SteamClient018_GetISteamNetworking_params struct ISteamClient_SteamClient018_GetISteamRemoteStorage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamRemoteStorage*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25668,7 +25668,7 @@ struct ISteamClient_SteamClient018_GetISteamRemoteStorage_params struct ISteamClient_SteamClient018_GetISteamScreenshots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamScreenshots*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25677,7 +25677,7 @@ struct ISteamClient_SteamClient018_GetISteamScreenshots_params struct ISteamClient_SteamClient018_GetISteamGameSearch_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameSearch*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25686,30 +25686,30 @@ struct ISteamClient_SteamClient018_GetISteamGameSearch_params struct ISteamClient_SteamClient018_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamClient_SteamClient018_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient018_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient018_BShutdownIfAllPipesClosed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamClient_SteamClient018_GetISteamHTTP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamHTTP*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25718,7 +25718,7 @@ struct ISteamClient_SteamClient018_GetISteamHTTP_params struct ISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25727,7 +25727,7 @@ struct ISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages_params struct ISteamClient_SteamClient018_GetISteamController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamController*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25736,7 +25736,7 @@ struct ISteamClient_SteamClient018_GetISteamController_params struct ISteamClient_SteamClient018_GetISteamUGC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUGC*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25745,7 +25745,7 @@ struct ISteamClient_SteamClient018_GetISteamUGC_params struct ISteamClient_SteamClient018_GetISteamAppList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamAppList*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25754,7 +25754,7 @@ struct ISteamClient_SteamClient018_GetISteamAppList_params struct ISteamClient_SteamClient018_GetISteamMusic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMusic*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25763,7 +25763,7 @@ struct ISteamClient_SteamClient018_GetISteamMusic_params struct ISteamClient_SteamClient018_GetISteamMusicRemote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMusicRemote*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25772,7 +25772,7 @@ struct ISteamClient_SteamClient018_GetISteamMusicRemote_params struct ISteamClient_SteamClient018_GetISteamHTMLSurface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamHTMLSurface*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25781,25 +25781,25 @@ struct ISteamClient_SteamClient018_GetISteamHTMLSurface_params struct ISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t (*W_CDECL func)(int32_t); }; struct ISteamClient_SteamClient018_GetISteamInventory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamInventory*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25808,7 +25808,7 @@ struct ISteamClient_SteamClient018_GetISteamInventory_params struct ISteamClient_SteamClient018_GetISteamVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamVideo*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25817,7 +25817,7 @@ struct ISteamClient_SteamClient018_GetISteamVideo_params struct ISteamClient_SteamClient018_GetISteamParentalSettings_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamParentalSettings*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25826,7 +25826,7 @@ struct ISteamClient_SteamClient018_GetISteamParentalSettings_params struct ISteamClient_SteamClient018_GetISteamInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamInput*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25835,7 +25835,7 @@ struct ISteamClient_SteamClient018_GetISteamInput_params struct ISteamClient_SteamClient018_GetISteamParties_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamParties*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25844,27 +25844,27 @@ struct ISteamClient_SteamClient018_GetISteamParties_params struct ISteamClient_SteamClient019_CreateSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamClient_SteamClient019_BReleaseSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient019_ConnectToGlobalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient019_CreateLocalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -25872,14 +25872,14 @@ struct ISteamClient_SteamClient019_CreateLocalUser_params struct ISteamClient_SteamClient019_ReleaseUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient019_GetISteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUser*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25888,7 +25888,7 @@ struct ISteamClient_SteamClient019_GetISteamUser_params struct ISteamClient_SteamClient019_GetISteamGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServer*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25897,14 +25897,14 @@ struct ISteamClient_SteamClient019_GetISteamGameServer_params struct ISteamClient_SteamClient019_SetLocalIPBinding_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIP; uint16_t usPort; }; struct ISteamClient_SteamClient019_GetISteamFriends_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamFriends*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25913,7 +25913,7 @@ struct ISteamClient_SteamClient019_GetISteamFriends_params struct ISteamClient_SteamClient019_GetISteamUtils_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUtils*/ *_ret; int32_t hSteamPipe; const char *pchVersion; @@ -25921,7 +25921,7 @@ struct ISteamClient_SteamClient019_GetISteamUtils_params struct ISteamClient_SteamClient019_GetISteamMatchmaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmaking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25930,7 +25930,7 @@ struct ISteamClient_SteamClient019_GetISteamMatchmaking_params struct ISteamClient_SteamClient019_GetISteamMatchmakingServers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmakingServers*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25939,7 +25939,7 @@ struct ISteamClient_SteamClient019_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient019_GetISteamGenericInterface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25948,7 +25948,7 @@ struct ISteamClient_SteamClient019_GetISteamGenericInterface_params struct ISteamClient_SteamClient019_GetISteamUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUserStats*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25957,7 +25957,7 @@ struct ISteamClient_SteamClient019_GetISteamUserStats_params struct ISteamClient_SteamClient019_GetISteamGameServerStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServerStats*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25966,7 +25966,7 @@ struct ISteamClient_SteamClient019_GetISteamGameServerStats_params struct ISteamClient_SteamClient019_GetISteamApps_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamApps*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25975,7 +25975,7 @@ struct ISteamClient_SteamClient019_GetISteamApps_params struct ISteamClient_SteamClient019_GetISteamNetworking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamNetworking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -25984,7 +25984,7 @@ struct ISteamClient_SteamClient019_GetISteamNetworking_params struct ISteamClient_SteamClient019_GetISteamRemoteStorage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamRemoteStorage*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -25993,7 +25993,7 @@ struct ISteamClient_SteamClient019_GetISteamRemoteStorage_params struct ISteamClient_SteamClient019_GetISteamScreenshots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamScreenshots*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26002,7 +26002,7 @@ struct ISteamClient_SteamClient019_GetISteamScreenshots_params struct ISteamClient_SteamClient019_GetISteamGameSearch_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameSearch*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26011,30 +26011,30 @@ struct ISteamClient_SteamClient019_GetISteamGameSearch_params struct ISteamClient_SteamClient019_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamClient_SteamClient019_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient019_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient019_BShutdownIfAllPipesClosed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamClient_SteamClient019_GetISteamHTTP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamHTTP*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26043,7 +26043,7 @@ struct ISteamClient_SteamClient019_GetISteamHTTP_params struct ISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26052,7 +26052,7 @@ struct ISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages_params struct ISteamClient_SteamClient019_GetISteamController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamController*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26061,7 +26061,7 @@ struct ISteamClient_SteamClient019_GetISteamController_params struct ISteamClient_SteamClient019_GetISteamUGC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUGC*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26070,7 +26070,7 @@ struct ISteamClient_SteamClient019_GetISteamUGC_params struct ISteamClient_SteamClient019_GetISteamAppList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamAppList*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26079,7 +26079,7 @@ struct ISteamClient_SteamClient019_GetISteamAppList_params struct ISteamClient_SteamClient019_GetISteamMusic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMusic*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26088,7 +26088,7 @@ struct ISteamClient_SteamClient019_GetISteamMusic_params struct ISteamClient_SteamClient019_GetISteamMusicRemote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMusicRemote*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26097,7 +26097,7 @@ struct ISteamClient_SteamClient019_GetISteamMusicRemote_params struct ISteamClient_SteamClient019_GetISteamHTMLSurface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamHTMLSurface*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26106,25 +26106,25 @@ struct ISteamClient_SteamClient019_GetISteamHTMLSurface_params struct ISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t (*W_CDECL func)(int32_t); }; struct ISteamClient_SteamClient019_GetISteamInventory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamInventory*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26133,7 +26133,7 @@ struct ISteamClient_SteamClient019_GetISteamInventory_params struct ISteamClient_SteamClient019_GetISteamVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamVideo*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26142,7 +26142,7 @@ struct ISteamClient_SteamClient019_GetISteamVideo_params struct ISteamClient_SteamClient019_GetISteamParentalSettings_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamParentalSettings*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26151,7 +26151,7 @@ struct ISteamClient_SteamClient019_GetISteamParentalSettings_params struct ISteamClient_SteamClient019_GetISteamInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamInput*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26160,7 +26160,7 @@ struct ISteamClient_SteamClient019_GetISteamInput_params struct ISteamClient_SteamClient019_GetISteamParties_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamParties*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26169,7 +26169,7 @@ struct ISteamClient_SteamClient019_GetISteamParties_params struct ISteamClient_SteamClient019_GetISteamRemotePlay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamRemotePlay*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26178,27 +26178,27 @@ struct ISteamClient_SteamClient019_GetISteamRemotePlay_params struct ISteamClient_SteamClient020_CreateSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamClient_SteamClient020_BReleaseSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient020_ConnectToGlobalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient020_CreateLocalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -26206,14 +26206,14 @@ struct ISteamClient_SteamClient020_CreateLocalUser_params struct ISteamClient_SteamClient020_ReleaseUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient020_GetISteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUser*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26222,7 +26222,7 @@ struct ISteamClient_SteamClient020_GetISteamUser_params struct ISteamClient_SteamClient020_GetISteamGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServer*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26231,14 +26231,14 @@ struct ISteamClient_SteamClient020_GetISteamGameServer_params struct ISteamClient_SteamClient020_SetLocalIPBinding_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const SteamIPAddress_t *unIP; uint16_t usPort; }; struct ISteamClient_SteamClient020_GetISteamFriends_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamFriends*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26247,7 +26247,7 @@ struct ISteamClient_SteamClient020_GetISteamFriends_params struct ISteamClient_SteamClient020_GetISteamUtils_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUtils*/ *_ret; int32_t hSteamPipe; const char *pchVersion; @@ -26255,7 +26255,7 @@ struct ISteamClient_SteamClient020_GetISteamUtils_params struct ISteamClient_SteamClient020_GetISteamMatchmaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmaking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26264,7 +26264,7 @@ struct ISteamClient_SteamClient020_GetISteamMatchmaking_params struct ISteamClient_SteamClient020_GetISteamMatchmakingServers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmakingServers*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26273,7 +26273,7 @@ struct ISteamClient_SteamClient020_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient020_GetISteamGenericInterface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26282,7 +26282,7 @@ struct ISteamClient_SteamClient020_GetISteamGenericInterface_params struct ISteamClient_SteamClient020_GetISteamUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUserStats*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26291,7 +26291,7 @@ struct ISteamClient_SteamClient020_GetISteamUserStats_params struct ISteamClient_SteamClient020_GetISteamGameServerStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServerStats*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26300,7 +26300,7 @@ struct ISteamClient_SteamClient020_GetISteamGameServerStats_params struct ISteamClient_SteamClient020_GetISteamApps_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamApps*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26309,7 +26309,7 @@ struct ISteamClient_SteamClient020_GetISteamApps_params struct ISteamClient_SteamClient020_GetISteamNetworking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamNetworking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26318,7 +26318,7 @@ struct ISteamClient_SteamClient020_GetISteamNetworking_params struct ISteamClient_SteamClient020_GetISteamRemoteStorage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamRemoteStorage*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26327,7 +26327,7 @@ struct ISteamClient_SteamClient020_GetISteamRemoteStorage_params struct ISteamClient_SteamClient020_GetISteamScreenshots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamScreenshots*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26336,7 +26336,7 @@ struct ISteamClient_SteamClient020_GetISteamScreenshots_params struct ISteamClient_SteamClient020_GetISteamGameSearch_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameSearch*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26345,30 +26345,30 @@ struct ISteamClient_SteamClient020_GetISteamGameSearch_params struct ISteamClient_SteamClient020_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamClient_SteamClient020_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient020_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient020_BShutdownIfAllPipesClosed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamClient_SteamClient020_GetISteamHTTP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamHTTP*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26377,7 +26377,7 @@ struct ISteamClient_SteamClient020_GetISteamHTTP_params struct ISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26386,7 +26386,7 @@ struct ISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages_params struct ISteamClient_SteamClient020_GetISteamController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamController*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26395,7 +26395,7 @@ struct ISteamClient_SteamClient020_GetISteamController_params struct ISteamClient_SteamClient020_GetISteamUGC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUGC*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26404,7 +26404,7 @@ struct ISteamClient_SteamClient020_GetISteamUGC_params struct ISteamClient_SteamClient020_GetISteamAppList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamAppList*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26413,7 +26413,7 @@ struct ISteamClient_SteamClient020_GetISteamAppList_params struct ISteamClient_SteamClient020_GetISteamMusic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMusic*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26422,7 +26422,7 @@ struct ISteamClient_SteamClient020_GetISteamMusic_params struct ISteamClient_SteamClient020_GetISteamMusicRemote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMusicRemote*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26431,7 +26431,7 @@ struct ISteamClient_SteamClient020_GetISteamMusicRemote_params struct ISteamClient_SteamClient020_GetISteamHTMLSurface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamHTMLSurface*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26440,25 +26440,25 @@ struct ISteamClient_SteamClient020_GetISteamHTMLSurface_params struct ISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t (*W_CDECL func)(int32_t); }; struct ISteamClient_SteamClient020_GetISteamInventory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamInventory*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26467,7 +26467,7 @@ struct ISteamClient_SteamClient020_GetISteamInventory_params struct ISteamClient_SteamClient020_GetISteamVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamVideo*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26476,7 +26476,7 @@ struct ISteamClient_SteamClient020_GetISteamVideo_params struct ISteamClient_SteamClient020_GetISteamParentalSettings_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamParentalSettings*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26485,7 +26485,7 @@ struct ISteamClient_SteamClient020_GetISteamParentalSettings_params struct ISteamClient_SteamClient020_GetISteamInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamInput*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26494,7 +26494,7 @@ struct ISteamClient_SteamClient020_GetISteamInput_params struct ISteamClient_SteamClient020_GetISteamParties_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamParties*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26503,7 +26503,7 @@ struct ISteamClient_SteamClient020_GetISteamParties_params struct ISteamClient_SteamClient020_GetISteamRemotePlay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamRemotePlay*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26512,32 +26512,32 @@ struct ISteamClient_SteamClient020_GetISteamRemotePlay_params struct ISteamClient_SteamClient020_DestroyAllInterfaces_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamClient_SteamClient021_CreateSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamClient_SteamClient021_BReleaseSteamPipe_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient021_ConnectToGlobalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t hSteamPipe; }; struct ISteamClient_SteamClient021_CreateLocalUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t *phSteamPipe; uint32_t eAccountType; @@ -26545,14 +26545,14 @@ struct ISteamClient_SteamClient021_CreateLocalUser_params struct ISteamClient_SteamClient021_ReleaseUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t hSteamPipe; int32_t hUser; }; struct ISteamClient_SteamClient021_GetISteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUser*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26561,7 +26561,7 @@ struct ISteamClient_SteamClient021_GetISteamUser_params struct ISteamClient_SteamClient021_GetISteamGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServer*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26570,14 +26570,14 @@ struct ISteamClient_SteamClient021_GetISteamGameServer_params struct ISteamClient_SteamClient021_SetLocalIPBinding_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const SteamIPAddress_t *unIP; uint16_t usPort; }; struct ISteamClient_SteamClient021_GetISteamFriends_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamFriends*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26586,7 +26586,7 @@ struct ISteamClient_SteamClient021_GetISteamFriends_params struct ISteamClient_SteamClient021_GetISteamUtils_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUtils*/ *_ret; int32_t hSteamPipe; const char *pchVersion; @@ -26594,7 +26594,7 @@ struct ISteamClient_SteamClient021_GetISteamUtils_params struct ISteamClient_SteamClient021_GetISteamMatchmaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmaking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26603,7 +26603,7 @@ struct ISteamClient_SteamClient021_GetISteamMatchmaking_params struct ISteamClient_SteamClient021_GetISteamMatchmakingServers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMatchmakingServers*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26612,7 +26612,7 @@ struct ISteamClient_SteamClient021_GetISteamMatchmakingServers_params struct ISteamClient_SteamClient021_GetISteamGenericInterface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26621,7 +26621,7 @@ struct ISteamClient_SteamClient021_GetISteamGenericInterface_params struct ISteamClient_SteamClient021_GetISteamUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUserStats*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26630,7 +26630,7 @@ struct ISteamClient_SteamClient021_GetISteamUserStats_params struct ISteamClient_SteamClient021_GetISteamGameServerStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameServerStats*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26639,7 +26639,7 @@ struct ISteamClient_SteamClient021_GetISteamGameServerStats_params struct ISteamClient_SteamClient021_GetISteamApps_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamApps*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26648,7 +26648,7 @@ struct ISteamClient_SteamClient021_GetISteamApps_params struct ISteamClient_SteamClient021_GetISteamNetworking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamNetworking*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26657,7 +26657,7 @@ struct ISteamClient_SteamClient021_GetISteamNetworking_params struct ISteamClient_SteamClient021_GetISteamRemoteStorage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamRemoteStorage*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26666,7 +26666,7 @@ struct ISteamClient_SteamClient021_GetISteamRemoteStorage_params struct ISteamClient_SteamClient021_GetISteamScreenshots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamScreenshots*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26675,7 +26675,7 @@ struct ISteamClient_SteamClient021_GetISteamScreenshots_params struct ISteamClient_SteamClient021_GetISteamGameSearch_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamGameSearch*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26684,30 +26684,30 @@ struct ISteamClient_SteamClient021_GetISteamGameSearch_params struct ISteamClient_SteamClient021_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamClient_SteamClient021_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamClient_SteamClient021_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamClient_SteamClient021_BShutdownIfAllPipesClosed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamClient_SteamClient021_GetISteamHTTP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamHTTP*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26716,7 +26716,7 @@ struct ISteamClient_SteamClient021_GetISteamHTTP_params struct ISteamClient_SteamClient021_GetISteamController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamController*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26725,7 +26725,7 @@ struct ISteamClient_SteamClient021_GetISteamController_params struct ISteamClient_SteamClient021_GetISteamUGC_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamUGC*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26734,7 +26734,7 @@ struct ISteamClient_SteamClient021_GetISteamUGC_params struct ISteamClient_SteamClient021_GetISteamMusic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMusic*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26743,7 +26743,7 @@ struct ISteamClient_SteamClient021_GetISteamMusic_params struct ISteamClient_SteamClient021_GetISteamMusicRemote_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamMusicRemote*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26752,7 +26752,7 @@ struct ISteamClient_SteamClient021_GetISteamMusicRemote_params struct ISteamClient_SteamClient021_GetISteamHTMLSurface_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamHTMLSurface*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26761,25 +26761,25 @@ struct ISteamClient_SteamClient021_GetISteamHTMLSurface_params struct ISteamClient_SteamClient021_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient021_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL _a)(void); }; struct ISteamClient_SteamClient021_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t (*W_CDECL func)(int32_t); }; struct ISteamClient_SteamClient021_GetISteamInventory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamInventory*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26788,7 +26788,7 @@ struct ISteamClient_SteamClient021_GetISteamInventory_params struct ISteamClient_SteamClient021_GetISteamVideo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamVideo*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26797,7 +26797,7 @@ struct ISteamClient_SteamClient021_GetISteamVideo_params struct ISteamClient_SteamClient021_GetISteamParentalSettings_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamParentalSettings*/ *_ret; int32_t hSteamuser; int32_t hSteamPipe; @@ -26806,7 +26806,7 @@ struct ISteamClient_SteamClient021_GetISteamParentalSettings_params struct ISteamClient_SteamClient021_GetISteamInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamInput*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26815,7 +26815,7 @@ struct ISteamClient_SteamClient021_GetISteamInput_params struct ISteamClient_SteamClient021_GetISteamParties_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamParties*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26824,7 +26824,7 @@ struct ISteamClient_SteamClient021_GetISteamParties_params struct ISteamClient_SteamClient021_GetISteamRemotePlay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamRemotePlay*/ *_ret; int32_t hSteamUser; int32_t hSteamPipe; @@ -26833,71 +26833,71 @@ struct ISteamClient_SteamClient021_GetISteamRemotePlay_params struct ISteamClient_SteamClient021_DestroyAllInterfaces_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamController_SteamController003_Init_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamController_SteamController003_Shutdown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamController_SteamController003_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamController_SteamController003_GetConnectedControllers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamController_SteamController003_ShowBindingPanel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController003_GetActionSetHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamController_SteamController003_ActivateActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint64_t actionSetHandle; }; struct ISteamController_SteamController003_GetCurrentActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController003_GetDigitalActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController003_GetDigitalActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; ControllerDigitalActionData_t *_ret; uint64_t controllerHandle; uint64_t digitalActionHandle; @@ -26905,7 +26905,7 @@ struct ISteamController_SteamController003_GetDigitalActionData_params struct ISteamController_SteamController003_GetDigitalActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -26915,14 +26915,14 @@ struct ISteamController_SteamController003_GetDigitalActionOrigins_params struct ISteamController_SteamController003_GetAnalogActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController003_GetAnalogActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; ControllerAnalogActionData_t *_ret; uint64_t controllerHandle; uint64_t analogActionHandle; @@ -26930,7 +26930,7 @@ struct ISteamController_SteamController003_GetAnalogActionData_params struct ISteamController_SteamController003_GetAnalogActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -26940,14 +26940,14 @@ struct ISteamController_SteamController003_GetAnalogActionOrigins_params struct ISteamController_SteamController003_StopAnalogActionMomentum_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint64_t eAction; }; struct ISteamController_SteamController003_TriggerHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -26955,7 +26955,7 @@ struct ISteamController_SteamController003_TriggerHapticPulse_params struct ISteamController_SteamController003_TriggerRepeatedHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -26966,66 +26966,66 @@ struct ISteamController_SteamController003_TriggerRepeatedHapticPulse_params struct ISteamController_SteamController004_Init_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamController_SteamController004_Shutdown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamController_SteamController004_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamController_SteamController004_GetConnectedControllers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamController_SteamController004_ShowBindingPanel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController004_GetActionSetHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamController_SteamController004_ActivateActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint64_t actionSetHandle; }; struct ISteamController_SteamController004_GetCurrentActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController004_GetDigitalActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController004_GetDigitalActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; ControllerDigitalActionData_t *_ret; uint64_t controllerHandle; uint64_t digitalActionHandle; @@ -27033,7 +27033,7 @@ struct ISteamController_SteamController004_GetDigitalActionData_params struct ISteamController_SteamController004_GetDigitalActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27043,14 +27043,14 @@ struct ISteamController_SteamController004_GetDigitalActionOrigins_params struct ISteamController_SteamController004_GetAnalogActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController004_GetAnalogActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; ControllerAnalogActionData_t *_ret; uint64_t controllerHandle; uint64_t analogActionHandle; @@ -27058,7 +27058,7 @@ struct ISteamController_SteamController004_GetAnalogActionData_params struct ISteamController_SteamController004_GetAnalogActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27068,14 +27068,14 @@ struct ISteamController_SteamController004_GetAnalogActionOrigins_params struct ISteamController_SteamController004_StopAnalogActionMomentum_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint64_t eAction; }; struct ISteamController_SteamController004_TriggerHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -27083,7 +27083,7 @@ struct ISteamController_SteamController004_TriggerHapticPulse_params struct ISteamController_SteamController004_TriggerRepeatedHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -27094,28 +27094,28 @@ struct ISteamController_SteamController004_TriggerRepeatedHapticPulse_params struct ISteamController_SteamController004_GetGamepadIndexForController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t ulControllerHandle; }; struct ISteamController_SteamController004_GetControllerForGamepadIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t nIndex; }; struct ISteamController_SteamController004_GetMotionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; ControllerMotionData_t *_ret; uint64_t controllerHandle; }; struct ISteamController_SteamController004_ShowDigitalActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t controllerHandle; uint64_t digitalActionHandle; @@ -27126,7 +27126,7 @@ struct ISteamController_SteamController004_ShowDigitalActionOrigins_params struct ISteamController_SteamController004_ShowAnalogActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t controllerHandle; uint64_t analogActionHandle; @@ -27137,66 +27137,66 @@ struct ISteamController_SteamController004_ShowAnalogActionOrigins_params struct ISteamController_SteamController005_Init_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamController_SteamController005_Shutdown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamController_SteamController005_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamController_SteamController005_GetConnectedControllers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamController_SteamController005_ShowBindingPanel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController005_GetActionSetHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamController_SteamController005_ActivateActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint64_t actionSetHandle; }; struct ISteamController_SteamController005_GetCurrentActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController005_GetDigitalActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController005_GetDigitalActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; ControllerDigitalActionData_t *_ret; uint64_t controllerHandle; uint64_t digitalActionHandle; @@ -27204,7 +27204,7 @@ struct ISteamController_SteamController005_GetDigitalActionData_params struct ISteamController_SteamController005_GetDigitalActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27214,14 +27214,14 @@ struct ISteamController_SteamController005_GetDigitalActionOrigins_params struct ISteamController_SteamController005_GetAnalogActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController005_GetAnalogActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; ControllerAnalogActionData_t *_ret; uint64_t controllerHandle; uint64_t analogActionHandle; @@ -27229,7 +27229,7 @@ struct ISteamController_SteamController005_GetAnalogActionData_params struct ISteamController_SteamController005_GetAnalogActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27239,14 +27239,14 @@ struct ISteamController_SteamController005_GetAnalogActionOrigins_params struct ISteamController_SteamController005_StopAnalogActionMomentum_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint64_t eAction; }; struct ISteamController_SteamController005_TriggerHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -27254,7 +27254,7 @@ struct ISteamController_SteamController005_TriggerHapticPulse_params struct ISteamController_SteamController005_TriggerRepeatedHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -27265,7 +27265,7 @@ struct ISteamController_SteamController005_TriggerRepeatedHapticPulse_params struct ISteamController_SteamController005_TriggerVibration_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -27273,7 +27273,7 @@ struct ISteamController_SteamController005_TriggerVibration_params struct ISteamController_SteamController005_SetLEDColor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint8_t nColorR; uint8_t nColorG; @@ -27283,28 +27283,28 @@ struct ISteamController_SteamController005_SetLEDColor_params struct ISteamController_SteamController005_GetGamepadIndexForController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t ulControllerHandle; }; struct ISteamController_SteamController005_GetControllerForGamepadIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t nIndex; }; struct ISteamController_SteamController005_GetMotionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; ControllerMotionData_t *_ret; uint64_t controllerHandle; }; struct ISteamController_SteamController005_ShowDigitalActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t controllerHandle; uint64_t digitalActionHandle; @@ -27315,7 +27315,7 @@ struct ISteamController_SteamController005_ShowDigitalActionOrigins_params struct ISteamController_SteamController005_ShowAnalogActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t controllerHandle; uint64_t analogActionHandle; @@ -27326,93 +27326,93 @@ struct ISteamController_SteamController005_ShowAnalogActionOrigins_params struct ISteamController_SteamController005_GetStringForActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController005_GetGlyphForActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController006_Init_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamController_SteamController006_Shutdown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamController_SteamController006_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamController_SteamController006_GetConnectedControllers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamController_SteamController006_ShowBindingPanel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController006_GetActionSetHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamController_SteamController006_ActivateActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint64_t actionSetHandle; }; struct ISteamController_SteamController006_GetCurrentActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController006_ActivateActionSetLayer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint64_t actionSetLayerHandle; }; struct ISteamController_SteamController006_DeactivateActionSetLayer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint64_t actionSetLayerHandle; }; struct ISteamController_SteamController006_DeactivateAllActionSetLayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; }; struct ISteamController_SteamController006_GetActiveActionSetLayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t *handlesOut; @@ -27420,14 +27420,14 @@ struct ISteamController_SteamController006_GetActiveActionSetLayers_params struct ISteamController_SteamController006_GetDigitalActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController006_GetDigitalActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; ControllerDigitalActionData_t *_ret; uint64_t controllerHandle; uint64_t digitalActionHandle; @@ -27435,7 +27435,7 @@ struct ISteamController_SteamController006_GetDigitalActionData_params struct ISteamController_SteamController006_GetDigitalActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27445,14 +27445,14 @@ struct ISteamController_SteamController006_GetDigitalActionOrigins_params struct ISteamController_SteamController006_GetAnalogActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController006_GetAnalogActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; ControllerAnalogActionData_t *_ret; uint64_t controllerHandle; uint64_t analogActionHandle; @@ -27460,7 +27460,7 @@ struct ISteamController_SteamController006_GetAnalogActionData_params struct ISteamController_SteamController006_GetAnalogActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27470,14 +27470,14 @@ struct ISteamController_SteamController006_GetAnalogActionOrigins_params struct ISteamController_SteamController006_StopAnalogActionMomentum_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint64_t eAction; }; struct ISteamController_SteamController006_TriggerHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -27485,7 +27485,7 @@ struct ISteamController_SteamController006_TriggerHapticPulse_params struct ISteamController_SteamController006_TriggerRepeatedHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -27496,7 +27496,7 @@ struct ISteamController_SteamController006_TriggerRepeatedHapticPulse_params struct ISteamController_SteamController006_TriggerVibration_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -27504,7 +27504,7 @@ struct ISteamController_SteamController006_TriggerVibration_params struct ISteamController_SteamController006_SetLEDColor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint8_t nColorR; uint8_t nColorG; @@ -27514,28 +27514,28 @@ struct ISteamController_SteamController006_SetLEDColor_params struct ISteamController_SteamController006_GetGamepadIndexForController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t ulControllerHandle; }; struct ISteamController_SteamController006_GetControllerForGamepadIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t nIndex; }; struct ISteamController_SteamController006_GetMotionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; ControllerMotionData_t *_ret; uint64_t controllerHandle; }; struct ISteamController_SteamController006_ShowDigitalActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t controllerHandle; uint64_t digitalActionHandle; @@ -27546,7 +27546,7 @@ struct ISteamController_SteamController006_ShowDigitalActionOrigins_params struct ISteamController_SteamController006_ShowAnalogActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t controllerHandle; uint64_t analogActionHandle; @@ -27557,93 +27557,93 @@ struct ISteamController_SteamController006_ShowAnalogActionOrigins_params struct ISteamController_SteamController006_GetStringForActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController006_GetGlyphForActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController006_GetInputTypeForHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController007_Init_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamController_SteamController007_Shutdown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamController_SteamController007_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamController_SteamController007_GetConnectedControllers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamController_SteamController007_GetActionSetHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamController_SteamController007_ActivateActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint64_t actionSetHandle; }; struct ISteamController_SteamController007_GetCurrentActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController007_ActivateActionSetLayer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint64_t actionSetLayerHandle; }; struct ISteamController_SteamController007_DeactivateActionSetLayer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint64_t actionSetLayerHandle; }; struct ISteamController_SteamController007_DeactivateAllActionSetLayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; }; struct ISteamController_SteamController007_GetActiveActionSetLayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t *handlesOut; @@ -27651,14 +27651,14 @@ struct ISteamController_SteamController007_GetActiveActionSetLayers_params struct ISteamController_SteamController007_GetDigitalActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController007_GetDigitalActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; InputDigitalActionData_t *_ret; uint64_t controllerHandle; uint64_t digitalActionHandle; @@ -27666,7 +27666,7 @@ struct ISteamController_SteamController007_GetDigitalActionData_params struct ISteamController_SteamController007_GetDigitalActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27676,14 +27676,14 @@ struct ISteamController_SteamController007_GetDigitalActionOrigins_params struct ISteamController_SteamController007_GetAnalogActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController007_GetAnalogActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; InputAnalogActionData_t *_ret; uint64_t controllerHandle; uint64_t analogActionHandle; @@ -27691,7 +27691,7 @@ struct ISteamController_SteamController007_GetAnalogActionData_params struct ISteamController_SteamController007_GetAnalogActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27701,35 +27701,35 @@ struct ISteamController_SteamController007_GetAnalogActionOrigins_params struct ISteamController_SteamController007_GetGlyphForActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController007_GetStringForActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController007_StopAnalogActionMomentum_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint64_t eAction; }; struct ISteamController_SteamController007_GetMotionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; InputMotionData_t *_ret; uint64_t controllerHandle; }; struct ISteamController_SteamController007_TriggerHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -27737,7 +27737,7 @@ struct ISteamController_SteamController007_TriggerHapticPulse_params struct ISteamController_SteamController007_TriggerRepeatedHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -27748,7 +27748,7 @@ struct ISteamController_SteamController007_TriggerRepeatedHapticPulse_params struct ISteamController_SteamController007_TriggerVibration_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -27756,7 +27756,7 @@ struct ISteamController_SteamController007_TriggerVibration_params struct ISteamController_SteamController007_SetLEDColor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint8_t nColorR; uint8_t nColorG; @@ -27766,49 +27766,49 @@ struct ISteamController_SteamController007_SetLEDColor_params struct ISteamController_SteamController007_ShowBindingPanel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController007_GetInputTypeForHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController007_GetControllerForGamepadIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t nIndex; }; struct ISteamController_SteamController007_GetGamepadIndexForController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t ulControllerHandle; }; struct ISteamController_SteamController007_GetStringForXboxOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController007_GetGlyphForXboxOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController007_GetActionOriginFromXboxOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t controllerHandle; uint32_t eOrigin; @@ -27816,7 +27816,7 @@ struct ISteamController_SteamController007_GetActionOriginFromXboxOrigin_params struct ISteamController_SteamController007_TranslateActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t eDestinationInputType; uint32_t eSourceOrigin; @@ -27824,7 +27824,7 @@ struct ISteamController_SteamController007_TranslateActionOrigin_params struct ISteamController_SteamController007_GetControllerBindingRevision_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t controllerHandle; int32_t *pMajor; @@ -27833,72 +27833,72 @@ struct ISteamController_SteamController007_GetControllerBindingRevision_params struct ISteamController_SteamController008_Init_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamController_SteamController008_Shutdown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamController_SteamController008_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamController_SteamController008_GetConnectedControllers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamController_SteamController008_GetActionSetHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamController_SteamController008_ActivateActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint64_t actionSetHandle; }; struct ISteamController_SteamController008_GetCurrentActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController008_ActivateActionSetLayer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint64_t actionSetLayerHandle; }; struct ISteamController_SteamController008_DeactivateActionSetLayer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint64_t actionSetLayerHandle; }; struct ISteamController_SteamController008_DeactivateAllActionSetLayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; }; struct ISteamController_SteamController008_GetActiveActionSetLayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t *handlesOut; @@ -27906,14 +27906,14 @@ struct ISteamController_SteamController008_GetActiveActionSetLayers_params struct ISteamController_SteamController008_GetDigitalActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController008_GetDigitalActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; InputDigitalActionData_t *_ret; uint64_t controllerHandle; uint64_t digitalActionHandle; @@ -27921,7 +27921,7 @@ struct ISteamController_SteamController008_GetDigitalActionData_params struct ISteamController_SteamController008_GetDigitalActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27931,14 +27931,14 @@ struct ISteamController_SteamController008_GetDigitalActionOrigins_params struct ISteamController_SteamController008_GetAnalogActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamController_SteamController008_GetAnalogActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; InputAnalogActionData_t *_ret; uint64_t controllerHandle; uint64_t analogActionHandle; @@ -27946,7 +27946,7 @@ struct ISteamController_SteamController008_GetAnalogActionData_params struct ISteamController_SteamController008_GetAnalogActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t controllerHandle; uint64_t actionSetHandle; @@ -27956,35 +27956,35 @@ struct ISteamController_SteamController008_GetAnalogActionOrigins_params struct ISteamController_SteamController008_GetGlyphForActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController008_GetStringForActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController008_StopAnalogActionMomentum_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint64_t eAction; }; struct ISteamController_SteamController008_GetMotionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; InputMotionData_t *_ret; uint64_t controllerHandle; }; struct ISteamController_SteamController008_TriggerHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -27992,7 +27992,7 @@ struct ISteamController_SteamController008_TriggerHapticPulse_params struct ISteamController_SteamController008_TriggerRepeatedHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -28003,7 +28003,7 @@ struct ISteamController_SteamController008_TriggerRepeatedHapticPulse_params struct ISteamController_SteamController008_TriggerVibration_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -28011,7 +28011,7 @@ struct ISteamController_SteamController008_TriggerVibration_params struct ISteamController_SteamController008_SetLEDColor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t controllerHandle; uint8_t nColorR; uint8_t nColorG; @@ -28021,49 +28021,49 @@ struct ISteamController_SteamController008_SetLEDColor_params struct ISteamController_SteamController008_ShowBindingPanel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController008_GetInputTypeForHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t controllerHandle; }; struct ISteamController_SteamController008_GetControllerForGamepadIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t nIndex; }; struct ISteamController_SteamController008_GetGamepadIndexForController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t ulControllerHandle; }; struct ISteamController_SteamController008_GetStringForXboxOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController008_GetGlyphForXboxOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamController_SteamController008_GetActionOriginFromXboxOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t controllerHandle; uint32_t eOrigin; @@ -28071,7 +28071,7 @@ struct ISteamController_SteamController008_GetActionOriginFromXboxOrigin_params struct ISteamController_SteamController008_TranslateActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t eDestinationInputType; uint32_t eSourceOrigin; @@ -28079,7 +28079,7 @@ struct ISteamController_SteamController008_TranslateActionOrigin_params struct ISteamController_SteamController008_GetControllerBindingRevision_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t controllerHandle; int32_t *pMajor; @@ -28088,66 +28088,66 @@ struct ISteamController_SteamController008_GetControllerBindingRevision_params struct ISteamFriends_SteamFriends001_GetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends001_SetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends001_GetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends001_SetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t ePersonaState; }; struct ISteamFriends_SteamFriends001_AddFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends001_RemoveFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends001_HasFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends001_GetFriendRelationship_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends001_GetFriendPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t *pnGameID; @@ -28157,34 +28157,34 @@ struct ISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends001_GetFriendPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends001_AddFriendByName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchEmailOrAccountName; }; struct ISteamFriends_SteamFriends001_GetFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends001_GetFriendByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iFriend; }; struct ISteamFriends_SteamFriends001_SendMsgToFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDFriend; uint32_t eChatEntryType; const char *pchMsgBody; @@ -28192,7 +28192,7 @@ struct ISteamFriends_SteamFriends001_SendMsgToFriend_params struct ISteamFriends_SteamFriends001_SetFriendRegValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDFriend; const char *pchKey; const char *pchValue; @@ -28200,7 +28200,7 @@ struct ISteamFriends_SteamFriends001_SetFriendRegValue_params struct ISteamFriends_SteamFriends001_GetFriendRegValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -28208,7 +28208,7 @@ struct ISteamFriends_SteamFriends001_GetFriendRegValue_params struct ISteamFriends_SteamFriends001_GetFriendPersonaNameHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -28216,7 +28216,7 @@ struct ISteamFriends_SteamFriends001_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends001_GetChatMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iChatID; @@ -28227,7 +28227,7 @@ struct ISteamFriends_SteamFriends001_GetChatMessage_params struct ISteamFriends_SteamFriends001_SendMsgToFriend_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; uint32_t eChatEntryType; @@ -28237,40 +28237,40 @@ struct ISteamFriends_SteamFriends001_SendMsgToFriend_2_params struct ISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends001_SetChatHistoryStart_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDFriend; int32_t iChatID; }; struct ISteamFriends_SteamFriends001_ClearChatHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends001_InviteFriendByEmail_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchEmailAccount; }; struct ISteamFriends_SteamFriends001_GetBlockedFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends001_GetFriendGamePlayed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; uint64_t *pulGameID; @@ -28280,7 +28280,7 @@ struct ISteamFriends_SteamFriends001_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends001_GetFriendGamePlayed2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; uint64_t *pulGameID; @@ -28291,38 +28291,38 @@ struct ISteamFriends_SteamFriends001_GetFriendGamePlayed2_params struct ISteamFriends_SteamFriends002_GetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends002_SetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends002_GetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends002_SetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t ePersonaState; }; struct ISteamFriends_SteamFriends002_GetFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends002_GetFriendByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -28330,28 +28330,28 @@ struct ISteamFriends_SteamFriends002_GetFriendByIndex_params struct ISteamFriends_SteamFriends002_GetFriendRelationship_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends002_GetFriendPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends002_GetFriendPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends002_SetFriendRegValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDFriend; const char *pchKey; const char *pchValue; @@ -28359,7 +28359,7 @@ struct ISteamFriends_SteamFriends002_SetFriendRegValue_params struct ISteamFriends_SteamFriends002_GetFriendRegValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -28367,7 +28367,7 @@ struct ISteamFriends_SteamFriends002_GetFriendRegValue_params struct ISteamFriends_SteamFriends002_GetFriendGamePlayed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; uint64_t *pulGameID; @@ -28378,7 +28378,7 @@ struct ISteamFriends_SteamFriends002_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends002_GetFriendPersonaNameHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -28386,21 +28386,21 @@ struct ISteamFriends_SteamFriends002_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends002_AddFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends002_RemoveFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends002_HasFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -28408,21 +28408,21 @@ struct ISteamFriends_SteamFriends002_HasFriend_params struct ISteamFriends_SteamFriends002_AddFriendByName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const char *pchEmailOrAccountName; }; struct ISteamFriends_SteamFriends002_InviteFriendByEmail_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchEmailAccount; }; struct ISteamFriends_SteamFriends002_GetChatMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iChatID; @@ -28433,7 +28433,7 @@ struct ISteamFriends_SteamFriends002_GetChatMessage_params struct ISteamFriends_SteamFriends002_SendMsgToFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; uint32_t eChatEntryType; @@ -28443,47 +28443,47 @@ struct ISteamFriends_SteamFriends002_SendMsgToFriend_params struct ISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends002_SetChatHistoryStart_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDFriend; int32_t iChatID; }; struct ISteamFriends_SteamFriends002_ClearChatHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends002_GetClanCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends002_GetClanByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends002_GetClanName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends002_InviteFriendToClan_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; CSteamID steamIDClan; @@ -28491,7 +28491,7 @@ struct ISteamFriends_SteamFriends002_InviteFriendToClan_params struct ISteamFriends_SteamFriends002_AcknowledgeInviteToClan_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; int8_t bAcceptOrDenyClanInvite; @@ -28499,14 +28499,14 @@ struct ISteamFriends_SteamFriends002_AcknowledgeInviteToClan_params struct ISteamFriends_SteamFriends002_GetFriendCountFromSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends002_GetFriendFromSourceByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -28514,32 +28514,32 @@ struct ISteamFriends_SteamFriends002_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends003_GetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends003_SetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends003_GetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends003_GetFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends003_GetFriendByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -28547,35 +28547,35 @@ struct ISteamFriends_SteamFriends003_GetFriendByIndex_params struct ISteamFriends_SteamFriends003_GetFriendRelationship_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends003_GetFriendPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends003_GetFriendPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends003_GetFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends003_GetFriendGamePlayed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; uint64_t *pulGameID; @@ -28586,7 +28586,7 @@ struct ISteamFriends_SteamFriends003_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends003_GetFriendPersonaNameHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -28594,7 +28594,7 @@ struct ISteamFriends_SteamFriends003_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends003_HasFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -28602,34 +28602,34 @@ struct ISteamFriends_SteamFriends003_HasFriend_params struct ISteamFriends_SteamFriends003_GetClanCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends003_GetClanByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends003_GetClanName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends003_GetFriendCountFromSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends003_GetFriendFromSourceByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -28637,7 +28637,7 @@ struct ISteamFriends_SteamFriends003_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends003_IsUserInSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -28645,45 +28645,45 @@ struct ISteamFriends_SteamFriends003_IsUserInSource_params struct ISteamFriends_SteamFriends003_SetInGameVoiceSpeaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends003_ActivateGameOverlay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends004_GetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends004_SetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends004_GetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends004_GetFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends004_GetFriendByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -28691,28 +28691,28 @@ struct ISteamFriends_SteamFriends004_GetFriendByIndex_params struct ISteamFriends_SteamFriends004_GetFriendRelationship_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends004_GetFriendPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends004_GetFriendPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends004_GetFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t eAvatarSize; @@ -28720,7 +28720,7 @@ struct ISteamFriends_SteamFriends004_GetFriendAvatar_params struct ISteamFriends_SteamFriends004_GetFriendGamePlayed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; uint64_t *pulGameID; @@ -28731,7 +28731,7 @@ struct ISteamFriends_SteamFriends004_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends004_GetFriendPersonaNameHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -28739,7 +28739,7 @@ struct ISteamFriends_SteamFriends004_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends004_HasFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -28747,34 +28747,34 @@ struct ISteamFriends_SteamFriends004_HasFriend_params struct ISteamFriends_SteamFriends004_GetClanCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends004_GetClanByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends004_GetClanName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends004_GetFriendCountFromSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends004_GetFriendFromSourceByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -28782,7 +28782,7 @@ struct ISteamFriends_SteamFriends004_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends004_IsUserInSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -28790,45 +28790,45 @@ struct ISteamFriends_SteamFriends004_IsUserInSource_params struct ISteamFriends_SteamFriends004_SetInGameVoiceSpeaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends004_ActivateGameOverlay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends005_GetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends005_SetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends005_GetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends005_GetFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends005_GetFriendByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -28836,28 +28836,28 @@ struct ISteamFriends_SteamFriends005_GetFriendByIndex_params struct ISteamFriends_SteamFriends005_GetFriendRelationship_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends005_GetFriendPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends005_GetFriendPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends005_GetFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t eAvatarSize; @@ -28865,7 +28865,7 @@ struct ISteamFriends_SteamFriends005_GetFriendAvatar_params struct ISteamFriends_SteamFriends005_GetFriendGamePlayed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -28873,7 +28873,7 @@ struct ISteamFriends_SteamFriends005_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends005_GetFriendPersonaNameHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -28881,7 +28881,7 @@ struct ISteamFriends_SteamFriends005_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends005_HasFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -28889,34 +28889,34 @@ struct ISteamFriends_SteamFriends005_HasFriend_params struct ISteamFriends_SteamFriends005_GetClanCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends005_GetClanByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends005_GetClanName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends005_GetFriendCountFromSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends005_GetFriendFromSourceByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -28924,7 +28924,7 @@ struct ISteamFriends_SteamFriends005_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends005_IsUserInSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -28932,70 +28932,70 @@ struct ISteamFriends_SteamFriends005_IsUserInSource_params struct ISteamFriends_SteamFriends005_SetInGameVoiceSpeaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends005_ActivateGameOverlay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends005_ActivateGameOverlayToUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends005_ActivateGameOverlayToStore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamFriends_SteamFriends005_SetPlayedWith_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends006_GetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends006_SetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends006_GetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends006_GetFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends006_GetFriendByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -29003,28 +29003,28 @@ struct ISteamFriends_SteamFriends006_GetFriendByIndex_params struct ISteamFriends_SteamFriends006_GetFriendRelationship_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends006_GetFriendPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends006_GetFriendPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends006_GetFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t eAvatarSize; @@ -29032,7 +29032,7 @@ struct ISteamFriends_SteamFriends006_GetFriendAvatar_params struct ISteamFriends_SteamFriends006_GetFriendGamePlayed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -29040,7 +29040,7 @@ struct ISteamFriends_SteamFriends006_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends006_GetFriendPersonaNameHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -29048,7 +29048,7 @@ struct ISteamFriends_SteamFriends006_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends006_HasFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -29056,41 +29056,41 @@ struct ISteamFriends_SteamFriends006_HasFriend_params struct ISteamFriends_SteamFriends006_GetClanCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends006_GetClanByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends006_GetClanName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends006_GetClanTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends006_GetFriendCountFromSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends006_GetFriendFromSourceByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -29098,7 +29098,7 @@ struct ISteamFriends_SteamFriends006_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends006_IsUserInSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -29106,76 +29106,76 @@ struct ISteamFriends_SteamFriends006_IsUserInSource_params struct ISteamFriends_SteamFriends006_SetInGameVoiceSpeaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends006_ActivateGameOverlay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends006_ActivateGameOverlayToUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends006_ActivateGameOverlayToStore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamFriends_SteamFriends006_SetPlayedWith_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends007_GetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends007_SetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends007_GetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends007_GetFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends007_GetFriendByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -29183,28 +29183,28 @@ struct ISteamFriends_SteamFriends007_GetFriendByIndex_params struct ISteamFriends_SteamFriends007_GetFriendRelationship_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends007_GetFriendPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends007_GetFriendPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends007_GetFriendGamePlayed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -29212,7 +29212,7 @@ struct ISteamFriends_SteamFriends007_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends007_GetFriendPersonaNameHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -29220,7 +29220,7 @@ struct ISteamFriends_SteamFriends007_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends007_HasFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -29228,41 +29228,41 @@ struct ISteamFriends_SteamFriends007_HasFriend_params struct ISteamFriends_SteamFriends007_GetClanCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends007_GetClanByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends007_GetClanName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends007_GetClanTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends007_GetFriendCountFromSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends007_GetFriendFromSourceByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -29270,7 +29270,7 @@ struct ISteamFriends_SteamFriends007_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends007_IsUserInSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -29278,97 +29278,97 @@ struct ISteamFriends_SteamFriends007_IsUserInSource_params struct ISteamFriends_SteamFriends007_SetInGameVoiceSpeaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends007_ActivateGameOverlay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends007_ActivateGameOverlayToUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends007_ActivateGameOverlayToStore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamFriends_SteamFriends007_SetPlayedWith_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends007_GetSmallFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends007_GetMediumFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends007_GetLargeFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends008_GetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends008_SetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends008_GetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends008_GetFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends008_GetFriendByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -29376,28 +29376,28 @@ struct ISteamFriends_SteamFriends008_GetFriendByIndex_params struct ISteamFriends_SteamFriends008_GetFriendRelationship_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends008_GetFriendPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends008_GetFriendPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends008_GetFriendGamePlayed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -29405,7 +29405,7 @@ struct ISteamFriends_SteamFriends008_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends008_GetFriendPersonaNameHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -29413,7 +29413,7 @@ struct ISteamFriends_SteamFriends008_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends008_HasFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -29421,41 +29421,41 @@ struct ISteamFriends_SteamFriends008_HasFriend_params struct ISteamFriends_SteamFriends008_GetClanCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends008_GetClanByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends008_GetClanName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends008_GetClanTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends008_GetFriendCountFromSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends008_GetFriendFromSourceByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -29463,7 +29463,7 @@ struct ISteamFriends_SteamFriends008_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends008_IsUserInSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -29471,72 +29471,72 @@ struct ISteamFriends_SteamFriends008_IsUserInSource_params struct ISteamFriends_SteamFriends008_SetInGameVoiceSpeaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends008_ActivateGameOverlay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends008_ActivateGameOverlayToUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends008_ActivateGameOverlayToStore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamFriends_SteamFriends008_SetPlayedWith_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends008_GetSmallFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends008_GetMediumFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends008_GetLargeFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends008_RequestUserInformation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -29544,28 +29544,28 @@ struct ISteamFriends_SteamFriends008_RequestUserInformation_params struct ISteamFriends_SteamFriends008_RequestClanOfficerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends008_GetClanOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends008_GetClanOfficerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends008_GetClanOfficerByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -29573,38 +29573,38 @@ struct ISteamFriends_SteamFriends008_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends008_GetUserRestrictions_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends009_GetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends009_SetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends009_GetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends009_GetFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends009_GetFriendByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -29612,28 +29612,28 @@ struct ISteamFriends_SteamFriends009_GetFriendByIndex_params struct ISteamFriends_SteamFriends009_GetFriendRelationship_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends009_GetFriendPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends009_GetFriendPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends009_GetFriendGamePlayed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -29641,7 +29641,7 @@ struct ISteamFriends_SteamFriends009_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends009_GetFriendPersonaNameHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -29649,7 +29649,7 @@ struct ISteamFriends_SteamFriends009_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends009_HasFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -29657,41 +29657,41 @@ struct ISteamFriends_SteamFriends009_HasFriend_params struct ISteamFriends_SteamFriends009_GetClanCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends009_GetClanByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends009_GetClanName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends009_GetClanTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends009_GetFriendCountFromSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends009_GetFriendFromSourceByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -29699,7 +29699,7 @@ struct ISteamFriends_SteamFriends009_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends009_IsUserInSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -29707,72 +29707,72 @@ struct ISteamFriends_SteamFriends009_IsUserInSource_params struct ISteamFriends_SteamFriends009_SetInGameVoiceSpeaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends009_ActivateGameOverlay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends009_ActivateGameOverlayToUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends009_ActivateGameOverlayToStore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamFriends_SteamFriends009_SetPlayedWith_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends009_GetSmallFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends009_GetMediumFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends009_GetLargeFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends009_RequestUserInformation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -29780,28 +29780,28 @@ struct ISteamFriends_SteamFriends009_RequestUserInformation_params struct ISteamFriends_SteamFriends009_RequestClanOfficerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends009_GetClanOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends009_GetClanOfficerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends009_GetClanOfficerByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -29809,13 +29809,13 @@ struct ISteamFriends_SteamFriends009_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends009_GetUserRestrictions_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends009_SetRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchKey; const char *pchValue; @@ -29823,12 +29823,12 @@ struct ISteamFriends_SteamFriends009_SetRichPresence_params struct ISteamFriends_SteamFriends009_ClearRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamFriends_SteamFriends009_GetFriendRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -29836,14 +29836,14 @@ struct ISteamFriends_SteamFriends009_GetFriendRichPresence_params struct ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iKey; @@ -29851,7 +29851,7 @@ struct ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends009_InviteUserToGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; @@ -29859,59 +29859,59 @@ struct ISteamFriends_SteamFriends009_InviteUserToGame_params struct ISteamFriends_SteamFriends009_GetCoplayFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends009_GetCoplayFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iCoplayFriend; }; struct ISteamFriends_SteamFriends009_GetFriendCoplayTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends009_GetFriendCoplayGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_GetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends010_SetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends010_GetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends010_GetFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends010_GetFriendByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -29919,28 +29919,28 @@ struct ISteamFriends_SteamFriends010_GetFriendByIndex_params struct ISteamFriends_SteamFriends010_GetFriendRelationship_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_GetFriendPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_GetFriendPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_GetFriendGamePlayed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -29948,7 +29948,7 @@ struct ISteamFriends_SteamFriends010_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends010_GetFriendPersonaNameHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -29956,7 +29956,7 @@ struct ISteamFriends_SteamFriends010_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends010_HasFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -29964,34 +29964,34 @@ struct ISteamFriends_SteamFriends010_HasFriend_params struct ISteamFriends_SteamFriends010_GetClanCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends010_GetClanByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends010_GetClanName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends010_GetClanTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends010_GetClanActivityCounts_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; @@ -30001,7 +30001,7 @@ struct ISteamFriends_SteamFriends010_GetClanActivityCounts_params struct ISteamFriends_SteamFriends010_DownloadClanActivityCounts_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID *psteamIDClans; int32_t cClansToRequest; @@ -30009,14 +30009,14 @@ struct ISteamFriends_SteamFriends010_DownloadClanActivityCounts_params struct ISteamFriends_SteamFriends010_GetFriendCountFromSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends010_GetFriendFromSourceByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -30024,7 +30024,7 @@ struct ISteamFriends_SteamFriends010_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends010_IsUserInSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -30032,72 +30032,72 @@ struct ISteamFriends_SteamFriends010_IsUserInSource_params struct ISteamFriends_SteamFriends010_SetInGameVoiceSpeaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends010_ActivateGameOverlay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends010_ActivateGameOverlayToUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends010_ActivateGameOverlayToStore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamFriends_SteamFriends010_SetPlayedWith_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends010_GetSmallFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_GetMediumFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_GetLargeFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_RequestUserInformation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -30105,28 +30105,28 @@ struct ISteamFriends_SteamFriends010_RequestUserInformation_params struct ISteamFriends_SteamFriends010_RequestClanOfficerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends010_GetClanOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends010_GetClanOfficerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends010_GetClanOfficerByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -30134,13 +30134,13 @@ struct ISteamFriends_SteamFriends010_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends010_GetUserRestrictions_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends010_SetRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchKey; const char *pchValue; @@ -30148,12 +30148,12 @@ struct ISteamFriends_SteamFriends010_SetRichPresence_params struct ISteamFriends_SteamFriends010_ClearRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamFriends_SteamFriends010_GetFriendRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -30161,14 +30161,14 @@ struct ISteamFriends_SteamFriends010_GetFriendRichPresence_params struct ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iKey; @@ -30176,7 +30176,7 @@ struct ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends010_InviteUserToGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; @@ -30184,55 +30184,55 @@ struct ISteamFriends_SteamFriends010_InviteUserToGame_params struct ISteamFriends_SteamFriends010_GetCoplayFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends010_GetCoplayFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iCoplayFriend; }; struct ISteamFriends_SteamFriends010_GetFriendCoplayTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_GetFriendCoplayGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends010_JoinClanChatRoom_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends010_LeaveClanChatRoom_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends010_GetClanChatMemberCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends010_GetChatMemberByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iUser; @@ -30240,7 +30240,7 @@ struct ISteamFriends_SteamFriends010_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends010_SendClanChatMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; const char *pchText; @@ -30248,7 +30248,7 @@ struct ISteamFriends_SteamFriends010_SendClanChatMessage_params struct ISteamFriends_SteamFriends010_GetClanChatMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClanChat; int32_t iMessage; @@ -30260,7 +30260,7 @@ struct ISteamFriends_SteamFriends010_GetClanChatMessage_params struct ISteamFriends_SteamFriends010_IsClanChatAdmin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; @@ -30268,35 +30268,35 @@ struct ISteamFriends_SteamFriends010_IsClanChatAdmin_params struct ISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends010_OpenClanChatWindowInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends010_CloseClanChatWindowInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends010_SetListenForFriendsMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends010_ReplyToFriendMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; @@ -30304,7 +30304,7 @@ struct ISteamFriends_SteamFriends010_ReplyToFriendMessage_params struct ISteamFriends_SteamFriends010_GetFriendMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iMessageID; @@ -30315,32 +30315,32 @@ struct ISteamFriends_SteamFriends010_GetFriendMessage_params struct ISteamFriends_SteamFriends011_GetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends011_SetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends011_GetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends011_GetFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends011_GetFriendByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -30348,28 +30348,28 @@ struct ISteamFriends_SteamFriends011_GetFriendByIndex_params struct ISteamFriends_SteamFriends011_GetFriendRelationship_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_GetFriendPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_GetFriendPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_GetFriendGamePlayed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -30377,7 +30377,7 @@ struct ISteamFriends_SteamFriends011_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends011_GetFriendPersonaNameHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -30385,7 +30385,7 @@ struct ISteamFriends_SteamFriends011_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends011_HasFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -30393,34 +30393,34 @@ struct ISteamFriends_SteamFriends011_HasFriend_params struct ISteamFriends_SteamFriends011_GetClanCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends011_GetClanByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends011_GetClanName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends011_GetClanTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends011_GetClanActivityCounts_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; @@ -30430,7 +30430,7 @@ struct ISteamFriends_SteamFriends011_GetClanActivityCounts_params struct ISteamFriends_SteamFriends011_DownloadClanActivityCounts_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID *psteamIDClans; int32_t cClansToRequest; @@ -30438,14 +30438,14 @@ struct ISteamFriends_SteamFriends011_DownloadClanActivityCounts_params struct ISteamFriends_SteamFriends011_GetFriendCountFromSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends011_GetFriendFromSourceByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -30453,7 +30453,7 @@ struct ISteamFriends_SteamFriends011_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends011_IsUserInSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -30461,72 +30461,72 @@ struct ISteamFriends_SteamFriends011_IsUserInSource_params struct ISteamFriends_SteamFriends011_SetInGameVoiceSpeaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends011_ActivateGameOverlay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends011_ActivateGameOverlayToUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends011_ActivateGameOverlayToStore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamFriends_SteamFriends011_SetPlayedWith_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends011_GetSmallFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_GetMediumFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_GetLargeFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_RequestUserInformation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -30534,28 +30534,28 @@ struct ISteamFriends_SteamFriends011_RequestUserInformation_params struct ISteamFriends_SteamFriends011_RequestClanOfficerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends011_GetClanOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends011_GetClanOfficerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends011_GetClanOfficerByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -30563,13 +30563,13 @@ struct ISteamFriends_SteamFriends011_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends011_GetUserRestrictions_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends011_SetRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchKey; const char *pchValue; @@ -30577,12 +30577,12 @@ struct ISteamFriends_SteamFriends011_SetRichPresence_params struct ISteamFriends_SteamFriends011_ClearRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamFriends_SteamFriends011_GetFriendRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -30590,14 +30590,14 @@ struct ISteamFriends_SteamFriends011_GetFriendRichPresence_params struct ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iKey; @@ -30605,13 +30605,13 @@ struct ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends011_RequestFriendRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_InviteUserToGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; @@ -30619,55 +30619,55 @@ struct ISteamFriends_SteamFriends011_InviteUserToGame_params struct ISteamFriends_SteamFriends011_GetCoplayFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends011_GetCoplayFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iCoplayFriend; }; struct ISteamFriends_SteamFriends011_GetFriendCoplayTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_GetFriendCoplayGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends011_JoinClanChatRoom_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends011_LeaveClanChatRoom_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends011_GetClanChatMemberCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends011_GetChatMemberByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iUser; @@ -30675,7 +30675,7 @@ struct ISteamFriends_SteamFriends011_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends011_SendClanChatMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; const char *pchText; @@ -30683,7 +30683,7 @@ struct ISteamFriends_SteamFriends011_SendClanChatMessage_params struct ISteamFriends_SteamFriends011_GetClanChatMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClanChat; int32_t iMessage; @@ -30695,7 +30695,7 @@ struct ISteamFriends_SteamFriends011_GetClanChatMessage_params struct ISteamFriends_SteamFriends011_IsClanChatAdmin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; @@ -30703,35 +30703,35 @@ struct ISteamFriends_SteamFriends011_IsClanChatAdmin_params struct ISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends011_OpenClanChatWindowInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends011_CloseClanChatWindowInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends011_SetListenForFriendsMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends011_ReplyToFriendMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; @@ -30739,7 +30739,7 @@ struct ISteamFriends_SteamFriends011_ReplyToFriendMessage_params struct ISteamFriends_SteamFriends011_GetFriendMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iMessageID; @@ -30750,54 +30750,54 @@ struct ISteamFriends_SteamFriends011_GetFriendMessage_params struct ISteamFriends_SteamFriends011_GetFollowerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends011_IsFollowing_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends011_EnumerateFollowingList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamFriends_SteamFriends012_GetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends012_SetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends012_GetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends012_GetFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends012_GetFriendByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -30805,28 +30805,28 @@ struct ISteamFriends_SteamFriends012_GetFriendByIndex_params struct ISteamFriends_SteamFriends012_GetFriendRelationship_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_GetFriendPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_GetFriendPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_GetFriendGamePlayed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -30834,7 +30834,7 @@ struct ISteamFriends_SteamFriends012_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends012_GetFriendPersonaNameHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -30842,7 +30842,7 @@ struct ISteamFriends_SteamFriends012_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends012_HasFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -30850,34 +30850,34 @@ struct ISteamFriends_SteamFriends012_HasFriend_params struct ISteamFriends_SteamFriends012_GetClanCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends012_GetClanByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends012_GetClanName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends012_GetClanTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends012_GetClanActivityCounts_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; @@ -30887,7 +30887,7 @@ struct ISteamFriends_SteamFriends012_GetClanActivityCounts_params struct ISteamFriends_SteamFriends012_DownloadClanActivityCounts_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID *psteamIDClans; int32_t cClansToRequest; @@ -30895,14 +30895,14 @@ struct ISteamFriends_SteamFriends012_DownloadClanActivityCounts_params struct ISteamFriends_SteamFriends012_GetFriendCountFromSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends012_GetFriendFromSourceByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -30910,7 +30910,7 @@ struct ISteamFriends_SteamFriends012_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends012_IsUserInSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -30918,72 +30918,72 @@ struct ISteamFriends_SteamFriends012_IsUserInSource_params struct ISteamFriends_SteamFriends012_SetInGameVoiceSpeaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends012_ActivateGameOverlay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends012_ActivateGameOverlayToUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends012_ActivateGameOverlayToStore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamFriends_SteamFriends012_SetPlayedWith_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends012_GetSmallFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_GetMediumFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_GetLargeFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_RequestUserInformation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -30991,28 +30991,28 @@ struct ISteamFriends_SteamFriends012_RequestUserInformation_params struct ISteamFriends_SteamFriends012_RequestClanOfficerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends012_GetClanOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends012_GetClanOfficerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends012_GetClanOfficerByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -31020,13 +31020,13 @@ struct ISteamFriends_SteamFriends012_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends012_GetUserRestrictions_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends012_SetRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchKey; const char *pchValue; @@ -31034,12 +31034,12 @@ struct ISteamFriends_SteamFriends012_SetRichPresence_params struct ISteamFriends_SteamFriends012_ClearRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamFriends_SteamFriends012_GetFriendRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -31047,14 +31047,14 @@ struct ISteamFriends_SteamFriends012_GetFriendRichPresence_params struct ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iKey; @@ -31062,13 +31062,13 @@ struct ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends012_RequestFriendRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_InviteUserToGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; @@ -31076,55 +31076,55 @@ struct ISteamFriends_SteamFriends012_InviteUserToGame_params struct ISteamFriends_SteamFriends012_GetCoplayFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends012_GetCoplayFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iCoplayFriend; }; struct ISteamFriends_SteamFriends012_GetFriendCoplayTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_GetFriendCoplayGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends012_JoinClanChatRoom_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends012_LeaveClanChatRoom_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends012_GetClanChatMemberCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends012_GetChatMemberByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iUser; @@ -31132,7 +31132,7 @@ struct ISteamFriends_SteamFriends012_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends012_SendClanChatMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; const char *pchText; @@ -31140,7 +31140,7 @@ struct ISteamFriends_SteamFriends012_SendClanChatMessage_params struct ISteamFriends_SteamFriends012_GetClanChatMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClanChat; int32_t iMessage; @@ -31152,7 +31152,7 @@ struct ISteamFriends_SteamFriends012_GetClanChatMessage_params struct ISteamFriends_SteamFriends012_IsClanChatAdmin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; @@ -31160,35 +31160,35 @@ struct ISteamFriends_SteamFriends012_IsClanChatAdmin_params struct ISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends012_OpenClanChatWindowInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends012_CloseClanChatWindowInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends012_SetListenForFriendsMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends012_ReplyToFriendMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; @@ -31196,7 +31196,7 @@ struct ISteamFriends_SteamFriends012_ReplyToFriendMessage_params struct ISteamFriends_SteamFriends012_GetFriendMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iMessageID; @@ -31207,54 +31207,54 @@ struct ISteamFriends_SteamFriends012_GetFriendMessage_params struct ISteamFriends_SteamFriends012_GetFollowerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends012_IsFollowing_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends012_EnumerateFollowingList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamFriends_SteamFriends013_GetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends013_SetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends013_GetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends013_GetFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends013_GetFriendByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -31262,28 +31262,28 @@ struct ISteamFriends_SteamFriends013_GetFriendByIndex_params struct ISteamFriends_SteamFriends013_GetFriendRelationship_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_GetFriendPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_GetFriendPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_GetFriendGamePlayed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -31291,7 +31291,7 @@ struct ISteamFriends_SteamFriends013_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends013_GetFriendPersonaNameHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -31299,7 +31299,7 @@ struct ISteamFriends_SteamFriends013_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends013_HasFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -31307,34 +31307,34 @@ struct ISteamFriends_SteamFriends013_HasFriend_params struct ISteamFriends_SteamFriends013_GetClanCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends013_GetClanByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends013_GetClanName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends013_GetClanTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends013_GetClanActivityCounts_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; @@ -31344,7 +31344,7 @@ struct ISteamFriends_SteamFriends013_GetClanActivityCounts_params struct ISteamFriends_SteamFriends013_DownloadClanActivityCounts_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID *psteamIDClans; int32_t cClansToRequest; @@ -31352,14 +31352,14 @@ struct ISteamFriends_SteamFriends013_DownloadClanActivityCounts_params struct ISteamFriends_SteamFriends013_GetFriendCountFromSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends013_GetFriendFromSourceByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -31367,7 +31367,7 @@ struct ISteamFriends_SteamFriends013_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends013_IsUserInSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -31375,73 +31375,73 @@ struct ISteamFriends_SteamFriends013_IsUserInSource_params struct ISteamFriends_SteamFriends013_SetInGameVoiceSpeaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends013_ActivateGameOverlay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends013_ActivateGameOverlayToUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends013_ActivateGameOverlayToStore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; uint32_t eFlag; }; struct ISteamFriends_SteamFriends013_SetPlayedWith_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends013_GetSmallFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_GetMediumFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_GetLargeFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_RequestUserInformation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -31449,28 +31449,28 @@ struct ISteamFriends_SteamFriends013_RequestUserInformation_params struct ISteamFriends_SteamFriends013_RequestClanOfficerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends013_GetClanOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends013_GetClanOfficerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends013_GetClanOfficerByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -31478,13 +31478,13 @@ struct ISteamFriends_SteamFriends013_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends013_GetUserRestrictions_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends013_SetRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchKey; const char *pchValue; @@ -31492,12 +31492,12 @@ struct ISteamFriends_SteamFriends013_SetRichPresence_params struct ISteamFriends_SteamFriends013_ClearRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamFriends_SteamFriends013_GetFriendRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -31505,14 +31505,14 @@ struct ISteamFriends_SteamFriends013_GetFriendRichPresence_params struct ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iKey; @@ -31520,13 +31520,13 @@ struct ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends013_RequestFriendRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_InviteUserToGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; @@ -31534,55 +31534,55 @@ struct ISteamFriends_SteamFriends013_InviteUserToGame_params struct ISteamFriends_SteamFriends013_GetCoplayFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends013_GetCoplayFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iCoplayFriend; }; struct ISteamFriends_SteamFriends013_GetFriendCoplayTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_GetFriendCoplayGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends013_JoinClanChatRoom_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends013_LeaveClanChatRoom_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends013_GetClanChatMemberCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends013_GetChatMemberByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iUser; @@ -31590,7 +31590,7 @@ struct ISteamFriends_SteamFriends013_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends013_SendClanChatMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; const char *pchText; @@ -31598,7 +31598,7 @@ struct ISteamFriends_SteamFriends013_SendClanChatMessage_params struct ISteamFriends_SteamFriends013_GetClanChatMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClanChat; int32_t iMessage; @@ -31610,7 +31610,7 @@ struct ISteamFriends_SteamFriends013_GetClanChatMessage_params struct ISteamFriends_SteamFriends013_IsClanChatAdmin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; @@ -31618,35 +31618,35 @@ struct ISteamFriends_SteamFriends013_IsClanChatAdmin_params struct ISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends013_OpenClanChatWindowInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends013_CloseClanChatWindowInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends013_SetListenForFriendsMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends013_ReplyToFriendMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; @@ -31654,7 +31654,7 @@ struct ISteamFriends_SteamFriends013_ReplyToFriendMessage_params struct ISteamFriends_SteamFriends013_GetFriendMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iMessageID; @@ -31665,54 +31665,54 @@ struct ISteamFriends_SteamFriends013_GetFriendMessage_params struct ISteamFriends_SteamFriends013_GetFollowerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends013_IsFollowing_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends013_EnumerateFollowingList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamFriends_SteamFriends014_GetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends014_SetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends014_GetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends014_GetFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends014_GetFriendByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -31720,28 +31720,28 @@ struct ISteamFriends_SteamFriends014_GetFriendByIndex_params struct ISteamFriends_SteamFriends014_GetFriendRelationship_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_GetFriendPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_GetFriendPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_GetFriendGamePlayed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -31749,7 +31749,7 @@ struct ISteamFriends_SteamFriends014_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends014_GetFriendPersonaNameHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -31757,14 +31757,14 @@ struct ISteamFriends_SteamFriends014_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends014_GetPlayerNickname_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDPlayer; }; struct ISteamFriends_SteamFriends014_HasFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -31772,34 +31772,34 @@ struct ISteamFriends_SteamFriends014_HasFriend_params struct ISteamFriends_SteamFriends014_GetClanCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends014_GetClanByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends014_GetClanName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends014_GetClanTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends014_GetClanActivityCounts_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; @@ -31809,7 +31809,7 @@ struct ISteamFriends_SteamFriends014_GetClanActivityCounts_params struct ISteamFriends_SteamFriends014_DownloadClanActivityCounts_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID *psteamIDClans; int32_t cClansToRequest; @@ -31817,14 +31817,14 @@ struct ISteamFriends_SteamFriends014_DownloadClanActivityCounts_params struct ISteamFriends_SteamFriends014_GetFriendCountFromSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends014_GetFriendFromSourceByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -31832,7 +31832,7 @@ struct ISteamFriends_SteamFriends014_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends014_IsUserInSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -31840,73 +31840,73 @@ struct ISteamFriends_SteamFriends014_IsUserInSource_params struct ISteamFriends_SteamFriends014_SetInGameVoiceSpeaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends014_ActivateGameOverlay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends014_ActivateGameOverlayToUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends014_ActivateGameOverlayToStore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; uint32_t eFlag; }; struct ISteamFriends_SteamFriends014_SetPlayedWith_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends014_GetSmallFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_GetMediumFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_GetLargeFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_RequestUserInformation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -31914,28 +31914,28 @@ struct ISteamFriends_SteamFriends014_RequestUserInformation_params struct ISteamFriends_SteamFriends014_RequestClanOfficerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends014_GetClanOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends014_GetClanOfficerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends014_GetClanOfficerByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -31943,13 +31943,13 @@ struct ISteamFriends_SteamFriends014_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends014_GetUserRestrictions_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends014_SetRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchKey; const char *pchValue; @@ -31957,12 +31957,12 @@ struct ISteamFriends_SteamFriends014_SetRichPresence_params struct ISteamFriends_SteamFriends014_ClearRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamFriends_SteamFriends014_GetFriendRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -31970,14 +31970,14 @@ struct ISteamFriends_SteamFriends014_GetFriendRichPresence_params struct ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iKey; @@ -31985,13 +31985,13 @@ struct ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends014_RequestFriendRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_InviteUserToGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; @@ -31999,55 +31999,55 @@ struct ISteamFriends_SteamFriends014_InviteUserToGame_params struct ISteamFriends_SteamFriends014_GetCoplayFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends014_GetCoplayFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iCoplayFriend; }; struct ISteamFriends_SteamFriends014_GetFriendCoplayTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_GetFriendCoplayGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends014_JoinClanChatRoom_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends014_LeaveClanChatRoom_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends014_GetClanChatMemberCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends014_GetChatMemberByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iUser; @@ -32055,7 +32055,7 @@ struct ISteamFriends_SteamFriends014_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends014_SendClanChatMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; const char *pchText; @@ -32063,7 +32063,7 @@ struct ISteamFriends_SteamFriends014_SendClanChatMessage_params struct ISteamFriends_SteamFriends014_GetClanChatMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClanChat; int32_t iMessage; @@ -32075,7 +32075,7 @@ struct ISteamFriends_SteamFriends014_GetClanChatMessage_params struct ISteamFriends_SteamFriends014_IsClanChatAdmin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; @@ -32083,35 +32083,35 @@ struct ISteamFriends_SteamFriends014_IsClanChatAdmin_params struct ISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends014_OpenClanChatWindowInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends014_CloseClanChatWindowInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends014_SetListenForFriendsMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends014_ReplyToFriendMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; @@ -32119,7 +32119,7 @@ struct ISteamFriends_SteamFriends014_ReplyToFriendMessage_params struct ISteamFriends_SteamFriends014_GetFriendMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iMessageID; @@ -32130,54 +32130,54 @@ struct ISteamFriends_SteamFriends014_GetFriendMessage_params struct ISteamFriends_SteamFriends014_GetFollowerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends014_IsFollowing_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends014_EnumerateFollowingList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamFriends_SteamFriends015_GetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends015_SetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends015_GetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends015_GetFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends015_GetFriendByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -32185,28 +32185,28 @@ struct ISteamFriends_SteamFriends015_GetFriendByIndex_params struct ISteamFriends_SteamFriends015_GetFriendRelationship_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_GetFriendPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_GetFriendPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_GetFriendGamePlayed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -32214,7 +32214,7 @@ struct ISteamFriends_SteamFriends015_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends015_GetFriendPersonaNameHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -32222,48 +32222,48 @@ struct ISteamFriends_SteamFriends015_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends015_GetFriendSteamLevel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_GetPlayerNickname_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDPlayer; }; struct ISteamFriends_SteamFriends015_GetFriendsGroupCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int16_t _ret; int32_t iFG; }; struct ISteamFriends_SteamFriends015_GetFriendsGroupName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int16_t friendsGroupID; }; struct ISteamFriends_SteamFriends015_GetFriendsGroupMembersCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int16_t friendsGroupID; }; struct ISteamFriends_SteamFriends015_GetFriendsGroupMembersList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int16_t friendsGroupID; CSteamID *pOutSteamIDMembers; int32_t nMembersCount; @@ -32271,7 +32271,7 @@ struct ISteamFriends_SteamFriends015_GetFriendsGroupMembersList_params struct ISteamFriends_SteamFriends015_HasFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -32279,34 +32279,34 @@ struct ISteamFriends_SteamFriends015_HasFriend_params struct ISteamFriends_SteamFriends015_GetClanCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends015_GetClanByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends015_GetClanName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_GetClanTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_GetClanActivityCounts_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; @@ -32316,7 +32316,7 @@ struct ISteamFriends_SteamFriends015_GetClanActivityCounts_params struct ISteamFriends_SteamFriends015_DownloadClanActivityCounts_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID *psteamIDClans; int32_t cClansToRequest; @@ -32324,14 +32324,14 @@ struct ISteamFriends_SteamFriends015_DownloadClanActivityCounts_params struct ISteamFriends_SteamFriends015_GetFriendCountFromSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends015_GetFriendFromSourceByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -32339,7 +32339,7 @@ struct ISteamFriends_SteamFriends015_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends015_IsUserInSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -32347,73 +32347,73 @@ struct ISteamFriends_SteamFriends015_IsUserInSource_params struct ISteamFriends_SteamFriends015_SetInGameVoiceSpeaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends015_ActivateGameOverlay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends015_ActivateGameOverlayToUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchURL; }; struct ISteamFriends_SteamFriends015_ActivateGameOverlayToStore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; uint32_t eFlag; }; struct ISteamFriends_SteamFriends015_SetPlayedWith_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends015_GetSmallFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_GetMediumFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_GetLargeFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_RequestUserInformation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -32421,28 +32421,28 @@ struct ISteamFriends_SteamFriends015_RequestUserInformation_params struct ISteamFriends_SteamFriends015_RequestClanOfficerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_GetClanOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_GetClanOfficerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_GetClanOfficerByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -32450,13 +32450,13 @@ struct ISteamFriends_SteamFriends015_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends015_GetUserRestrictions_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends015_SetRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchKey; const char *pchValue; @@ -32464,12 +32464,12 @@ struct ISteamFriends_SteamFriends015_SetRichPresence_params struct ISteamFriends_SteamFriends015_ClearRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamFriends_SteamFriends015_GetFriendRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -32477,14 +32477,14 @@ struct ISteamFriends_SteamFriends015_GetFriendRichPresence_params struct ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iKey; @@ -32492,13 +32492,13 @@ struct ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends015_RequestFriendRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_InviteUserToGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; @@ -32506,55 +32506,55 @@ struct ISteamFriends_SteamFriends015_InviteUserToGame_params struct ISteamFriends_SteamFriends015_GetCoplayFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends015_GetCoplayFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iCoplayFriend; }; struct ISteamFriends_SteamFriends015_GetFriendCoplayTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_GetFriendCoplayGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends015_JoinClanChatRoom_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_LeaveClanChatRoom_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_GetClanChatMemberCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_GetChatMemberByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iUser; @@ -32562,7 +32562,7 @@ struct ISteamFriends_SteamFriends015_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends015_SendClanChatMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; const char *pchText; @@ -32570,7 +32570,7 @@ struct ISteamFriends_SteamFriends015_SendClanChatMessage_params struct ISteamFriends_SteamFriends015_GetClanChatMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClanChat; int32_t iMessage; @@ -32582,7 +32582,7 @@ struct ISteamFriends_SteamFriends015_GetClanChatMessage_params struct ISteamFriends_SteamFriends015_IsClanChatAdmin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; @@ -32590,35 +32590,35 @@ struct ISteamFriends_SteamFriends015_IsClanChatAdmin_params struct ISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends015_OpenClanChatWindowInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends015_CloseClanChatWindowInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends015_SetListenForFriendsMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends015_ReplyToFriendMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; @@ -32626,7 +32626,7 @@ struct ISteamFriends_SteamFriends015_ReplyToFriendMessage_params struct ISteamFriends_SteamFriends015_GetFriendMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iMessageID; @@ -32637,68 +32637,68 @@ struct ISteamFriends_SteamFriends015_GetFriendMessage_params struct ISteamFriends_SteamFriends015_GetFollowerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends015_IsFollowing_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends015_EnumerateFollowingList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamFriends_SteamFriends015_IsClanPublic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends015_IsClanOfficialGameGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_GetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends017_SetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchPersonaName; }; struct ISteamFriends_SteamFriends017_GetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends017_GetFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends017_GetFriendByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -32706,28 +32706,28 @@ struct ISteamFriends_SteamFriends017_GetFriendByIndex_params struct ISteamFriends_SteamFriends017_GetFriendRelationship_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_GetFriendPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_GetFriendPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_GetFriendGamePlayed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -32735,7 +32735,7 @@ struct ISteamFriends_SteamFriends017_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends017_GetFriendPersonaNameHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -32743,48 +32743,48 @@ struct ISteamFriends_SteamFriends017_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends017_GetFriendSteamLevel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_GetPlayerNickname_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDPlayer; }; struct ISteamFriends_SteamFriends017_GetFriendsGroupCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int16_t _ret; int32_t iFG; }; struct ISteamFriends_SteamFriends017_GetFriendsGroupName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int16_t friendsGroupID; }; struct ISteamFriends_SteamFriends017_GetFriendsGroupMembersCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int16_t friendsGroupID; }; struct ISteamFriends_SteamFriends017_GetFriendsGroupMembersList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int16_t friendsGroupID; CSteamID *pOutSteamIDMembers; int32_t nMembersCount; @@ -32792,7 +32792,7 @@ struct ISteamFriends_SteamFriends017_GetFriendsGroupMembersList_params struct ISteamFriends_SteamFriends017_HasFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -32800,34 +32800,34 @@ struct ISteamFriends_SteamFriends017_HasFriend_params struct ISteamFriends_SteamFriends017_GetClanCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends017_GetClanByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends017_GetClanName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_GetClanTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_GetClanActivityCounts_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; @@ -32837,7 +32837,7 @@ struct ISteamFriends_SteamFriends017_GetClanActivityCounts_params struct ISteamFriends_SteamFriends017_DownloadClanActivityCounts_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID *psteamIDClans; int32_t cClansToRequest; @@ -32845,14 +32845,14 @@ struct ISteamFriends_SteamFriends017_DownloadClanActivityCounts_params struct ISteamFriends_SteamFriends017_GetFriendCountFromSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends017_GetFriendFromSourceByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -32860,7 +32860,7 @@ struct ISteamFriends_SteamFriends017_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends017_IsUserInSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -32868,74 +32868,74 @@ struct ISteamFriends_SteamFriends017_IsUserInSource_params struct ISteamFriends_SteamFriends017_SetInGameVoiceSpeaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends017_ActivateGameOverlay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends017_ActivateGameOverlayToUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchURL; uint32_t eMode; }; struct ISteamFriends_SteamFriends017_ActivateGameOverlayToStore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; uint32_t eFlag; }; struct ISteamFriends_SteamFriends017_SetPlayedWith_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends017_GetSmallFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_GetMediumFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_GetLargeFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_RequestUserInformation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -32943,28 +32943,28 @@ struct ISteamFriends_SteamFriends017_RequestUserInformation_params struct ISteamFriends_SteamFriends017_RequestClanOfficerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_GetClanOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_GetClanOfficerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_GetClanOfficerByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -32972,13 +32972,13 @@ struct ISteamFriends_SteamFriends017_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends017_GetUserRestrictions_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends017_SetRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchKey; const char *pchValue; @@ -32986,12 +32986,12 @@ struct ISteamFriends_SteamFriends017_SetRichPresence_params struct ISteamFriends_SteamFriends017_ClearRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamFriends_SteamFriends017_GetFriendRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -32999,14 +32999,14 @@ struct ISteamFriends_SteamFriends017_GetFriendRichPresence_params struct ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iKey; @@ -33014,13 +33014,13 @@ struct ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends017_RequestFriendRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_InviteUserToGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; @@ -33028,55 +33028,55 @@ struct ISteamFriends_SteamFriends017_InviteUserToGame_params struct ISteamFriends_SteamFriends017_GetCoplayFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends017_GetCoplayFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iCoplayFriend; }; struct ISteamFriends_SteamFriends017_GetFriendCoplayTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_GetFriendCoplayGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends017_JoinClanChatRoom_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_LeaveClanChatRoom_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_GetClanChatMemberCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_GetChatMemberByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iUser; @@ -33084,7 +33084,7 @@ struct ISteamFriends_SteamFriends017_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends017_SendClanChatMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; const char *pchText; @@ -33092,7 +33092,7 @@ struct ISteamFriends_SteamFriends017_SendClanChatMessage_params struct ISteamFriends_SteamFriends017_GetClanChatMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClanChat; int32_t iMessage; @@ -33104,7 +33104,7 @@ struct ISteamFriends_SteamFriends017_GetClanChatMessage_params struct ISteamFriends_SteamFriends017_IsClanChatAdmin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; @@ -33112,35 +33112,35 @@ struct ISteamFriends_SteamFriends017_IsClanChatAdmin_params struct ISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends017_OpenClanChatWindowInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends017_CloseClanChatWindowInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends017_SetListenForFriendsMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends017_ReplyToFriendMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; @@ -33148,7 +33148,7 @@ struct ISteamFriends_SteamFriends017_ReplyToFriendMessage_params struct ISteamFriends_SteamFriends017_GetFriendMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iMessageID; @@ -33159,74 +33159,74 @@ struct ISteamFriends_SteamFriends017_GetFriendMessage_params struct ISteamFriends_SteamFriends017_GetFollowerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends017_IsFollowing_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends017_EnumerateFollowingList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamFriends_SteamFriends017_IsClanPublic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_IsClanOfficialGameGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchProtocol; }; struct ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchConnectString; }; struct ISteamFriends_SteamFriends017_RequestEquippedProfileItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends017_BHasEquippedProfileItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamID; uint32_t itemType; @@ -33234,7 +33234,7 @@ struct ISteamFriends_SteamFriends017_BHasEquippedProfileItem_params struct ISteamFriends_SteamFriends017_GetProfileItemPropertyString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamID; uint32_t itemType; @@ -33243,7 +33243,7 @@ struct ISteamFriends_SteamFriends017_GetProfileItemPropertyString_params struct ISteamFriends_SteamFriends017_GetProfileItemPropertyUint_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t itemType; @@ -33252,26 +33252,26 @@ struct ISteamFriends_SteamFriends017_GetProfileItemPropertyUint_params struct ISteamFriends_SteamFriends018_GetPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamFriends_SteamFriends018_GetPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamFriends_SteamFriends018_GetFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iFriendFlags; }; struct ISteamFriends_SteamFriends018_GetFriendByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iFriend; int32_t iFriendFlags; @@ -33279,28 +33279,28 @@ struct ISteamFriends_SteamFriends018_GetFriendByIndex_params struct ISteamFriends_SteamFriends018_GetFriendRelationship_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_GetFriendPersonaState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_GetFriendPersonaName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_GetFriendGamePlayed_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; FriendGameInfo_t *pFriendGameInfo; @@ -33308,7 +33308,7 @@ struct ISteamFriends_SteamFriends018_GetFriendGamePlayed_params struct ISteamFriends_SteamFriends018_GetFriendPersonaNameHistory_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iPersonaName; @@ -33316,48 +33316,48 @@ struct ISteamFriends_SteamFriends018_GetFriendPersonaNameHistory_params struct ISteamFriends_SteamFriends018_GetFriendSteamLevel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_GetPlayerNickname_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDPlayer; }; struct ISteamFriends_SteamFriends018_GetFriendsGroupCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends018_GetFriendsGroupIDByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int16_t _ret; int32_t iFG; }; struct ISteamFriends_SteamFriends018_GetFriendsGroupName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; int16_t friendsGroupID; }; struct ISteamFriends_SteamFriends018_GetFriendsGroupMembersCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int16_t friendsGroupID; }; struct ISteamFriends_SteamFriends018_GetFriendsGroupMembersList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int16_t friendsGroupID; CSteamID *pOutSteamIDMembers; int32_t nMembersCount; @@ -33365,7 +33365,7 @@ struct ISteamFriends_SteamFriends018_GetFriendsGroupMembersList_params struct ISteamFriends_SteamFriends018_HasFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; int32_t iFriendFlags; @@ -33373,34 +33373,34 @@ struct ISteamFriends_SteamFriends018_HasFriend_params struct ISteamFriends_SteamFriends018_GetClanCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends018_GetClanByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iClan; }; struct ISteamFriends_SteamFriends018_GetClanName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_GetClanTag_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_GetClanActivityCounts_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; int32_t *pnOnline; @@ -33410,7 +33410,7 @@ struct ISteamFriends_SteamFriends018_GetClanActivityCounts_params struct ISteamFriends_SteamFriends018_DownloadClanActivityCounts_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID *psteamIDClans; int32_t cClansToRequest; @@ -33418,14 +33418,14 @@ struct ISteamFriends_SteamFriends018_DownloadClanActivityCounts_params struct ISteamFriends_SteamFriends018_GetFriendCountFromSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDSource; }; struct ISteamFriends_SteamFriends018_GetFriendFromSourceByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDSource; int32_t iFriend; @@ -33433,7 +33433,7 @@ struct ISteamFriends_SteamFriends018_GetFriendFromSourceByIndex_params struct ISteamFriends_SteamFriends018_IsUserInSource_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDSource; @@ -33441,74 +33441,74 @@ struct ISteamFriends_SteamFriends018_IsUserInSource_params struct ISteamFriends_SteamFriends018_SetInGameVoiceSpeaking_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; int8_t bSpeaking; }; struct ISteamFriends_SteamFriends018_ActivateGameOverlay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; }; struct ISteamFriends_SteamFriends018_ActivateGameOverlayToUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchDialog; CSteamID steamID; }; struct ISteamFriends_SteamFriends018_ActivateGameOverlayToWebPage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchURL; uint32_t eMode; }; struct ISteamFriends_SteamFriends018_ActivateGameOverlayToStore_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; uint32_t eFlag; }; struct ISteamFriends_SteamFriends018_SetPlayedWith_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUserPlayedWith; }; struct ISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialog_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends018_GetSmallFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_GetMediumFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_GetLargeFriendAvatar_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_RequestUserInformation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; int8_t bRequireNameOnly; @@ -33516,28 +33516,28 @@ struct ISteamFriends_SteamFriends018_RequestUserInformation_params struct ISteamFriends_SteamFriends018_RequestClanOfficerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_GetClanOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_GetClanOfficerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_GetClanOfficerByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iOfficer; @@ -33545,7 +33545,7 @@ struct ISteamFriends_SteamFriends018_GetClanOfficerByIndex_params struct ISteamFriends_SteamFriends018_SetRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchKey; const char *pchValue; @@ -33553,12 +33553,12 @@ struct ISteamFriends_SteamFriends018_SetRichPresence_params struct ISteamFriends_SteamFriends018_ClearRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamFriends_SteamFriends018_GetFriendRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; const char *pchKey; @@ -33566,14 +33566,14 @@ struct ISteamFriends_SteamFriends018_GetFriendRichPresence_params struct ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDFriend; int32_t iKey; @@ -33581,13 +33581,13 @@ struct ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyByIndex_params struct ISteamFriends_SteamFriends018_RequestFriendRichPresence_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_InviteUserToGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchConnectString; @@ -33595,55 +33595,55 @@ struct ISteamFriends_SteamFriends018_InviteUserToGame_params struct ISteamFriends_SteamFriends018_GetCoplayFriendCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends018_GetCoplayFriend_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iCoplayFriend; }; struct ISteamFriends_SteamFriends018_GetFriendCoplayTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_GetFriendCoplayGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDFriend; }; struct ISteamFriends_SteamFriends018_JoinClanChatRoom_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_LeaveClanChatRoom_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_GetClanChatMemberCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_GetChatMemberByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDClan; int32_t iUser; @@ -33651,7 +33651,7 @@ struct ISteamFriends_SteamFriends018_GetChatMemberByIndex_params struct ISteamFriends_SteamFriends018_SendClanChatMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; const char *pchText; @@ -33659,7 +33659,7 @@ struct ISteamFriends_SteamFriends018_SendClanChatMessage_params struct ISteamFriends_SteamFriends018_GetClanChatMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDClanChat; int32_t iMessage; @@ -33671,7 +33671,7 @@ struct ISteamFriends_SteamFriends018_GetClanChatMessage_params struct ISteamFriends_SteamFriends018_IsClanChatAdmin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; CSteamID steamIDUser; @@ -33679,35 +33679,35 @@ struct ISteamFriends_SteamFriends018_IsClanChatAdmin_params struct ISteamFriends_SteamFriends018_IsClanChatWindowOpenInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends018_OpenClanChatWindowInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends018_CloseClanChatWindowInSteam_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClanChat; }; struct ISteamFriends_SteamFriends018_SetListenForFriendsMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bInterceptEnabled; }; struct ISteamFriends_SteamFriends018_ReplyToFriendMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDFriend; const char *pchMsgToSend; @@ -33715,7 +33715,7 @@ struct ISteamFriends_SteamFriends018_ReplyToFriendMessage_params struct ISteamFriends_SteamFriends018_GetFriendMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDFriend; int32_t iMessageID; @@ -33726,74 +33726,74 @@ struct ISteamFriends_SteamFriends018_GetFriendMessage_params struct ISteamFriends_SteamFriends018_GetFollowerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends018_IsFollowing_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends018_EnumerateFollowingList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unStartIndex; }; struct ISteamFriends_SteamFriends018_IsClanPublic_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_IsClanOfficialGameGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDClan; }; struct ISteamFriends_SteamFriends018_GetNumChatsWithUnreadPriorityMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamFriends_SteamFriends018_ActivateGameOverlayRemotePlayTogetherInviteDialog_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamFriends_SteamFriends018_RegisterProtocolInOverlayBrowser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchProtocol; }; struct ISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialogConnectString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchConnectString; }; struct ISteamFriends_SteamFriends018_RequestEquippedProfileItems_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamID; }; struct ISteamFriends_SteamFriends018_BHasEquippedProfileItem_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamID; uint32_t itemType; @@ -33801,7 +33801,7 @@ struct ISteamFriends_SteamFriends018_BHasEquippedProfileItem_params struct ISteamFriends_SteamFriends018_GetProfileItemPropertyString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamID; uint32_t itemType; @@ -33810,7 +33810,7 @@ struct ISteamFriends_SteamFriends018_GetProfileItemPropertyString_params struct ISteamFriends_SteamFriends018_GetProfileItemPropertyUint_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t itemType; @@ -33819,7 +33819,7 @@ struct ISteamFriends_SteamFriends018_GetProfileItemPropertyUint_params struct ISteamGameCoordinator_SteamGameCoordinator001_SendMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t unMsgType; const void *pubData; @@ -33828,14 +33828,14 @@ struct ISteamGameCoordinator_SteamGameCoordinator001_SendMessage_params struct ISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *pcubMsgSize; }; struct ISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t *punMsgType; void *pubDest; @@ -33845,29 +33845,29 @@ struct ISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage_params struct ISteamGameServer_SteamGameServer002_LogOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer002_LogOff_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer002_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer002_GSSetSpawnCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t ucSpawn; }; struct ISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *pvEncryptionKey; uint32_t *pcbEncryptionKey; @@ -33876,7 +33876,7 @@ struct ISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNe struct ISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unUserID; const void *pvRawKey; @@ -33889,7 +33889,7 @@ struct ISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect_params struct ISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamID; uint32_t unIPPublic; @@ -33899,14 +33899,14 @@ struct ISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect_params struct ISteamGameServer_SteamGameServer002_GSRemoveUserConnect_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unUserID; }; struct ISteamGameServer_SteamGameServer002_GSSendUserDisconnect_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamID; uint32_t unUserID; @@ -33914,7 +33914,7 @@ struct ISteamGameServer_SteamGameServer002_GSSendUserDisconnect_params struct ISteamGameServer_SteamGameServer002_GSSendUserStatusResponse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamID; int32_t nSecondsConnected; @@ -33923,7 +33923,7 @@ struct ISteamGameServer_SteamGameServer002_GSSendUserStatusResponse_params struct ISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t nAppIdServed; uint32_t unServerFlags; @@ -33939,7 +33939,7 @@ struct ISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus_params struct ISteamGameServer_SteamGameServer002_GSUpdateStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t cPlayers; int32_t cPlayersMax; @@ -33950,19 +33950,19 @@ struct ISteamGameServer_SteamGameServer002_GSUpdateStatus_params struct ISteamGameServer_SteamGameServer002_BSecure_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer002_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer002_GSSetServerType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t nGameAppId; uint32_t unServerFlags; @@ -33974,7 +33974,7 @@ struct ISteamGameServer_SteamGameServer002_GSSetServerType_params struct ISteamGameServer_SteamGameServer002_GSSetServerType2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t nGameAppId; uint32_t unServerFlags; @@ -33989,7 +33989,7 @@ struct ISteamGameServer_SteamGameServer002_GSSetServerType2_params struct ISteamGameServer_SteamGameServer002_GSUpdateStatus2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t cPlayers; int32_t cPlayersMax; @@ -34001,14 +34001,14 @@ struct ISteamGameServer_SteamGameServer002_GSUpdateStatus2_params struct ISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID *pSteamID; }; struct ISteamGameServer_SteamGameServer002_GSSetUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamID; const char *pPlayerName; @@ -34017,47 +34017,47 @@ struct ISteamGameServer_SteamGameServer002_GSSetUserData_params struct ISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer002_GSSetGameType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchType; }; struct ISteamGameServer_SteamGameServer003_LogOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer003_LogOff_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer003_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer003_BSecure_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer003_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *pvEncryptionKey; uint32_t *pcbEncryptionKey; @@ -34066,7 +34066,7 @@ struct ISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNe struct ISteamGameServer_SteamGameServer003_GSSendUserConnect_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unUserID; uint32_t unIPPublic; @@ -34077,14 +34077,14 @@ struct ISteamGameServer_SteamGameServer003_GSSendUserConnect_params struct ISteamGameServer_SteamGameServer003_GSRemoveUserConnect_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unUserID; }; struct ISteamGameServer_SteamGameServer003_GSSendUserDisconnect_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamID; uint32_t unUserID; @@ -34092,13 +34092,13 @@ struct ISteamGameServer_SteamGameServer003_GSSendUserDisconnect_params struct ISteamGameServer_SteamGameServer003_GSSetSpawnCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t ucSpawn; }; struct ISteamGameServer_SteamGameServer003_GSSetServerType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t nGameAppId; uint32_t unServerFlags; @@ -34113,7 +34113,7 @@ struct ISteamGameServer_SteamGameServer003_GSSetServerType_params struct ISteamGameServer_SteamGameServer003_GSUpdateStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t cPlayers; int32_t cPlayersMax; @@ -34125,14 +34125,14 @@ struct ISteamGameServer_SteamGameServer003_GSUpdateStatus_params struct ISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID *pSteamID; }; struct ISteamGameServer_SteamGameServer003_GSSetUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamID; const char *pPlayerName; @@ -34141,19 +34141,19 @@ struct ISteamGameServer_SteamGameServer003_GSSetUserData_params struct ISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer003_GSSetGameType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchType; }; struct ISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamID; const char *pchAchievementName; @@ -34161,35 +34161,35 @@ struct ISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus_params struct ISteamGameServer_SteamGameServer004_LogOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer004_LogOff_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer004_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer004_BSecure_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer004_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; uint32_t unIPClient; void *pvAuthBlob; @@ -34198,19 +34198,19 @@ struct ISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate_params struct ISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer004_SendUserDisconnect_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer004_BUpdateUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -34219,7 +34219,7 @@ struct ISteamGameServer_SteamGameServer004_BUpdateUserData_params struct ISteamGameServer_SteamGameServer004_BSetServerType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t nGameAppId; uint32_t unServerFlags; @@ -34234,7 +34234,7 @@ struct ISteamGameServer_SteamGameServer004_BSetServerType_params struct ISteamGameServer_SteamGameServer004_UpdateServerStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t cPlayers; int32_t cPlayersMax; int32_t cBotPlayers; @@ -34245,19 +34245,19 @@ struct ISteamGameServer_SteamGameServer004_UpdateServerStatus_params struct ISteamGameServer_SteamGameServer004_UpdateSpectatorPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer004_SetGameType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchGameType; }; struct ISteamGameServer_SteamGameServer004_BGetUserAchievementStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamID; const char *pchAchievementName; @@ -34265,35 +34265,35 @@ struct ISteamGameServer_SteamGameServer004_BGetUserAchievementStatus_params struct ISteamGameServer_SteamGameServer005_LogOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer005_LogOff_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer005_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer005_BSecure_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer005_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; @@ -34303,19 +34303,19 @@ struct ISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate_params struct ISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer005_SendUserDisconnect_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer005_BUpdateUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -34324,7 +34324,7 @@ struct ISteamGameServer_SteamGameServer005_BUpdateUserData_params struct ISteamGameServer_SteamGameServer005_BSetServerType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unServerFlags; uint32_t unGameIP; @@ -34338,7 +34338,7 @@ struct ISteamGameServer_SteamGameServer005_BSetServerType_params struct ISteamGameServer_SteamGameServer005_UpdateServerStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t cPlayers; int32_t cPlayersMax; int32_t cBotPlayers; @@ -34349,19 +34349,19 @@ struct ISteamGameServer_SteamGameServer005_UpdateServerStatus_params struct ISteamGameServer_SteamGameServer005_UpdateSpectatorPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer005_SetGameType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchGameType; }; struct ISteamGameServer_SteamGameServer005_BGetUserAchievementStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamID; const char *pchAchievementName; @@ -34369,35 +34369,35 @@ struct ISteamGameServer_SteamGameServer005_BGetUserAchievementStatus_params struct ISteamGameServer_SteamGameServer008_LogOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer008_LogOff_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer008_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer008_BSecure_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer008_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; @@ -34407,19 +34407,19 @@ struct ISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate_params struct ISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer008_SendUserDisconnect_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer008_BUpdateUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -34428,7 +34428,7 @@ struct ISteamGameServer_SteamGameServer008_BUpdateUserData_params struct ISteamGameServer_SteamGameServer008_BSetServerType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unServerFlags; uint32_t unGameIP; @@ -34442,7 +34442,7 @@ struct ISteamGameServer_SteamGameServer008_BSetServerType_params struct ISteamGameServer_SteamGameServer008_UpdateServerStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t cPlayers; int32_t cPlayersMax; int32_t cBotPlayers; @@ -34453,19 +34453,19 @@ struct ISteamGameServer_SteamGameServer008_UpdateServerStatus_params struct ISteamGameServer_SteamGameServer008_UpdateSpectatorPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer008_SetGameType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchGameType; }; struct ISteamGameServer_SteamGameServer008_BGetUserAchievementStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamID; const char *pchAchievementName; @@ -34473,12 +34473,12 @@ struct ISteamGameServer_SteamGameServer008_BGetUserAchievementStatus_params struct ISteamGameServer_SteamGameServer008_GetGameplayStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer008_RequestUserGroupStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; @@ -34486,41 +34486,41 @@ struct ISteamGameServer_SteamGameServer008_RequestUserGroupStatus_params struct ISteamGameServer_SteamGameServer008_GetPublicIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamGameServer_SteamGameServer009_LogOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer009_LogOff_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer009_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer009_BSecure_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer009_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; @@ -34530,19 +34530,19 @@ struct ISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate_params struct ISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer009_SendUserDisconnect_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer009_BUpdateUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -34551,7 +34551,7 @@ struct ISteamGameServer_SteamGameServer009_BUpdateUserData_params struct ISteamGameServer_SteamGameServer009_BSetServerType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unServerFlags; uint32_t unGameIP; @@ -34565,7 +34565,7 @@ struct ISteamGameServer_SteamGameServer009_BSetServerType_params struct ISteamGameServer_SteamGameServer009_UpdateServerStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t cPlayers; int32_t cPlayersMax; int32_t cBotPlayers; @@ -34576,19 +34576,19 @@ struct ISteamGameServer_SteamGameServer009_UpdateServerStatus_params struct ISteamGameServer_SteamGameServer009_UpdateSpectatorPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer009_SetGameType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchGameType; }; struct ISteamGameServer_SteamGameServer009_BGetUserAchievementStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamID; const char *pchAchievementName; @@ -34596,12 +34596,12 @@ struct ISteamGameServer_SteamGameServer009_BGetUserAchievementStatus_params struct ISteamGameServer_SteamGameServer009_GetGameplayStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer009_RequestUserGroupStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; @@ -34609,19 +34609,19 @@ struct ISteamGameServer_SteamGameServer009_RequestUserGroupStatus_params struct ISteamGameServer_SteamGameServer009_GetPublicIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamGameServer_SteamGameServer009_SetGameData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchGameData; }; struct ISteamGameServer_SteamGameServer009_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -34629,35 +34629,35 @@ struct ISteamGameServer_SteamGameServer009_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer010_LogOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer010_LogOff_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer010_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer010_BSecure_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer010_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; @@ -34667,19 +34667,19 @@ struct ISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate_params struct ISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer010_SendUserDisconnect_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer010_BUpdateUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -34688,7 +34688,7 @@ struct ISteamGameServer_SteamGameServer010_BUpdateUserData_params struct ISteamGameServer_SteamGameServer010_BSetServerType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unServerFlags; uint32_t unGameIP; @@ -34702,7 +34702,7 @@ struct ISteamGameServer_SteamGameServer010_BSetServerType_params struct ISteamGameServer_SteamGameServer010_UpdateServerStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t cPlayers; int32_t cPlayersMax; int32_t cBotPlayers; @@ -34713,30 +34713,30 @@ struct ISteamGameServer_SteamGameServer010_UpdateServerStatus_params struct ISteamGameServer_SteamGameServer010_UpdateSpectatorPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer010_SetGameTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchGameTags; }; struct ISteamGameServer_SteamGameServer010_GetGameplayStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer010_GetServerReputation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamGameServer_SteamGameServer010_RequestUserGroupStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; @@ -34744,19 +34744,19 @@ struct ISteamGameServer_SteamGameServer010_RequestUserGroupStatus_params struct ISteamGameServer_SteamGameServer010_GetPublicIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamGameServer_SteamGameServer010_SetGameData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchGameData; }; struct ISteamGameServer_SteamGameServer010_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -34764,7 +34764,7 @@ struct ISteamGameServer_SteamGameServer010_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer010_GetAuthSessionTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -34773,7 +34773,7 @@ struct ISteamGameServer_SteamGameServer010_GetAuthSessionTicket_params struct ISteamGameServer_SteamGameServer010_BeginAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -34782,19 +34782,19 @@ struct ISteamGameServer_SteamGameServer010_BeginAuthSession_params struct ISteamGameServer_SteamGameServer010_EndAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamGameServer_SteamGameServer010_CancelAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hAuthTicket; }; struct ISteamGameServer_SteamGameServer011_InitGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unIP; uint16_t usGamePort; @@ -34806,144 +34806,144 @@ struct ISteamGameServer_SteamGameServer011_InitGameServer_params struct ISteamGameServer_SteamGameServer011_SetProduct_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszProduct; }; struct ISteamGameServer_SteamGameServer011_SetGameDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszGameDescription; }; struct ISteamGameServer_SteamGameServer011_SetModDir_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszModDir; }; struct ISteamGameServer_SteamGameServer011_SetDedicatedServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bDedicated; }; struct ISteamGameServer_SteamGameServer011_LogOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszAccountName; const char *pszPassword; }; struct ISteamGameServer_SteamGameServer011_LogOnAnonymous_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer011_LogOff_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer011_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer011_BSecure_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer011_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer011_WasRestartRequested_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer011_SetMaxPlayerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t cPlayersMax; }; struct ISteamGameServer_SteamGameServer011_SetBotPlayerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t cBotplayers; }; struct ISteamGameServer_SteamGameServer011_SetServerName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszServerName; }; struct ISteamGameServer_SteamGameServer011_SetMapName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszMapName; }; struct ISteamGameServer_SteamGameServer011_SetPasswordProtected_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bPasswordProtected; }; struct ISteamGameServer_SteamGameServer011_SetSpectatorPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer011_SetSpectatorServerName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszSpectatorServerName; }; struct ISteamGameServer_SteamGameServer011_ClearAllKeyValues_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer011_SetKeyValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pKey; const char *pValue; }; struct ISteamGameServer_SteamGameServer011_SetGameTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchGameTags; }; struct ISteamGameServer_SteamGameServer011_SetGameData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchGameData; }; struct ISteamGameServer_SteamGameServer011_SetRegion_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszRegion; }; struct ISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; @@ -34953,19 +34953,19 @@ struct ISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate_params struct ISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer011_SendUserDisconnect_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer011_BUpdateUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -34974,7 +34974,7 @@ struct ISteamGameServer_SteamGameServer011_BUpdateUserData_params struct ISteamGameServer_SteamGameServer011_GetAuthSessionTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -34983,7 +34983,7 @@ struct ISteamGameServer_SteamGameServer011_GetAuthSessionTicket_params struct ISteamGameServer_SteamGameServer011_BeginAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -34992,19 +34992,19 @@ struct ISteamGameServer_SteamGameServer011_BeginAuthSession_params struct ISteamGameServer_SteamGameServer011_EndAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamGameServer_SteamGameServer011_CancelAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hAuthTicket; }; struct ISteamGameServer_SteamGameServer011_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -35012,7 +35012,7 @@ struct ISteamGameServer_SteamGameServer011_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer011_RequestUserGroupStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; @@ -35020,24 +35020,24 @@ struct ISteamGameServer_SteamGameServer011_RequestUserGroupStatus_params struct ISteamGameServer_SteamGameServer011_GetGameplayStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer011_GetServerReputation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamGameServer_SteamGameServer011_GetPublicIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamGameServer_SteamGameServer011_HandleIncomingPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pData; int32_t cbData; @@ -35047,7 +35047,7 @@ struct ISteamGameServer_SteamGameServer011_HandleIncomingPacket_params struct ISteamGameServer_SteamGameServer011_GetNextOutgoingPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pOut; int32_t cbMaxOut; @@ -35057,38 +35057,38 @@ struct ISteamGameServer_SteamGameServer011_GetNextOutgoingPacket_params struct ISteamGameServer_SteamGameServer011_EnableHeartbeats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bActive; }; struct ISteamGameServer_SteamGameServer011_SetHeartbeatInterval_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t iHeartbeatInterval; }; struct ISteamGameServer_SteamGameServer011_ForceHeartbeat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer011_AssociateWithClan_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDNewPlayer; }; struct ISteamGameServer_SteamGameServer012_InitGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unIP; uint16_t usGamePort; @@ -35100,143 +35100,143 @@ struct ISteamGameServer_SteamGameServer012_InitGameServer_params struct ISteamGameServer_SteamGameServer012_SetProduct_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszProduct; }; struct ISteamGameServer_SteamGameServer012_SetGameDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszGameDescription; }; struct ISteamGameServer_SteamGameServer012_SetModDir_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszModDir; }; struct ISteamGameServer_SteamGameServer012_SetDedicatedServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bDedicated; }; struct ISteamGameServer_SteamGameServer012_LogOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszToken; }; struct ISteamGameServer_SteamGameServer012_LogOnAnonymous_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer012_LogOff_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer012_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer012_BSecure_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer012_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer012_WasRestartRequested_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer012_SetMaxPlayerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t cPlayersMax; }; struct ISteamGameServer_SteamGameServer012_SetBotPlayerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t cBotplayers; }; struct ISteamGameServer_SteamGameServer012_SetServerName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszServerName; }; struct ISteamGameServer_SteamGameServer012_SetMapName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszMapName; }; struct ISteamGameServer_SteamGameServer012_SetPasswordProtected_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bPasswordProtected; }; struct ISteamGameServer_SteamGameServer012_SetSpectatorPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer012_SetSpectatorServerName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszSpectatorServerName; }; struct ISteamGameServer_SteamGameServer012_ClearAllKeyValues_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer012_SetKeyValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pKey; const char *pValue; }; struct ISteamGameServer_SteamGameServer012_SetGameTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchGameTags; }; struct ISteamGameServer_SteamGameServer012_SetGameData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchGameData; }; struct ISteamGameServer_SteamGameServer012_SetRegion_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszRegion; }; struct ISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; @@ -35246,19 +35246,19 @@ struct ISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate_params struct ISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer012_SendUserDisconnect_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer012_BUpdateUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -35267,7 +35267,7 @@ struct ISteamGameServer_SteamGameServer012_BUpdateUserData_params struct ISteamGameServer_SteamGameServer012_GetAuthSessionTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -35276,7 +35276,7 @@ struct ISteamGameServer_SteamGameServer012_GetAuthSessionTicket_params struct ISteamGameServer_SteamGameServer012_BeginAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -35285,19 +35285,19 @@ struct ISteamGameServer_SteamGameServer012_BeginAuthSession_params struct ISteamGameServer_SteamGameServer012_EndAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamGameServer_SteamGameServer012_CancelAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hAuthTicket; }; struct ISteamGameServer_SteamGameServer012_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -35305,7 +35305,7 @@ struct ISteamGameServer_SteamGameServer012_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer012_RequestUserGroupStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; @@ -35313,24 +35313,24 @@ struct ISteamGameServer_SteamGameServer012_RequestUserGroupStatus_params struct ISteamGameServer_SteamGameServer012_GetGameplayStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer012_GetServerReputation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamGameServer_SteamGameServer012_GetPublicIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamGameServer_SteamGameServer012_HandleIncomingPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pData; int32_t cbData; @@ -35340,7 +35340,7 @@ struct ISteamGameServer_SteamGameServer012_HandleIncomingPacket_params struct ISteamGameServer_SteamGameServer012_GetNextOutgoingPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pOut; int32_t cbMaxOut; @@ -35350,38 +35350,38 @@ struct ISteamGameServer_SteamGameServer012_GetNextOutgoingPacket_params struct ISteamGameServer_SteamGameServer012_EnableHeartbeats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bActive; }; struct ISteamGameServer_SteamGameServer012_SetHeartbeatInterval_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t iHeartbeatInterval; }; struct ISteamGameServer_SteamGameServer012_ForceHeartbeat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer012_AssociateWithClan_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDNewPlayer; }; struct ISteamGameServer_SteamGameServer013_InitGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unIP; uint16_t usGamePort; @@ -35393,143 +35393,143 @@ struct ISteamGameServer_SteamGameServer013_InitGameServer_params struct ISteamGameServer_SteamGameServer013_SetProduct_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszProduct; }; struct ISteamGameServer_SteamGameServer013_SetGameDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszGameDescription; }; struct ISteamGameServer_SteamGameServer013_SetModDir_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszModDir; }; struct ISteamGameServer_SteamGameServer013_SetDedicatedServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bDedicated; }; struct ISteamGameServer_SteamGameServer013_LogOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszToken; }; struct ISteamGameServer_SteamGameServer013_LogOnAnonymous_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer013_LogOff_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer013_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer013_BSecure_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer013_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer013_WasRestartRequested_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer013_SetMaxPlayerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t cPlayersMax; }; struct ISteamGameServer_SteamGameServer013_SetBotPlayerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t cBotplayers; }; struct ISteamGameServer_SteamGameServer013_SetServerName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszServerName; }; struct ISteamGameServer_SteamGameServer013_SetMapName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszMapName; }; struct ISteamGameServer_SteamGameServer013_SetPasswordProtected_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bPasswordProtected; }; struct ISteamGameServer_SteamGameServer013_SetSpectatorPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer013_SetSpectatorServerName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszSpectatorServerName; }; struct ISteamGameServer_SteamGameServer013_ClearAllKeyValues_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer013_SetKeyValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pKey; const char *pValue; }; struct ISteamGameServer_SteamGameServer013_SetGameTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchGameTags; }; struct ISteamGameServer_SteamGameServer013_SetGameData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchGameData; }; struct ISteamGameServer_SteamGameServer013_SetRegion_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszRegion; }; struct ISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; @@ -35539,19 +35539,19 @@ struct ISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate_params struct ISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer013_SendUserDisconnect_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer013_BUpdateUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -35560,7 +35560,7 @@ struct ISteamGameServer_SteamGameServer013_BUpdateUserData_params struct ISteamGameServer_SteamGameServer013_GetAuthSessionTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -35569,7 +35569,7 @@ struct ISteamGameServer_SteamGameServer013_GetAuthSessionTicket_params struct ISteamGameServer_SteamGameServer013_BeginAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -35578,19 +35578,19 @@ struct ISteamGameServer_SteamGameServer013_BeginAuthSession_params struct ISteamGameServer_SteamGameServer013_EndAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamGameServer_SteamGameServer013_CancelAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hAuthTicket; }; struct ISteamGameServer_SteamGameServer013_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -35598,7 +35598,7 @@ struct ISteamGameServer_SteamGameServer013_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer013_RequestUserGroupStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; @@ -35606,24 +35606,24 @@ struct ISteamGameServer_SteamGameServer013_RequestUserGroupStatus_params struct ISteamGameServer_SteamGameServer013_GetGameplayStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer013_GetServerReputation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamGameServer_SteamGameServer013_GetPublicIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; SteamIPAddress_t *_ret; }; struct ISteamGameServer_SteamGameServer013_HandleIncomingPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pData; int32_t cbData; @@ -35633,7 +35633,7 @@ struct ISteamGameServer_SteamGameServer013_HandleIncomingPacket_params struct ISteamGameServer_SteamGameServer013_GetNextOutgoingPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pOut; int32_t cbMaxOut; @@ -35643,38 +35643,38 @@ struct ISteamGameServer_SteamGameServer013_GetNextOutgoingPacket_params struct ISteamGameServer_SteamGameServer013_EnableHeartbeats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bActive; }; struct ISteamGameServer_SteamGameServer013_SetHeartbeatInterval_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t iHeartbeatInterval; }; struct ISteamGameServer_SteamGameServer013_ForceHeartbeat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer013_AssociateWithClan_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDNewPlayer; }; struct ISteamGameServer_SteamGameServer014_InitGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unIP; uint16_t usGamePort; @@ -35686,149 +35686,149 @@ struct ISteamGameServer_SteamGameServer014_InitGameServer_params struct ISteamGameServer_SteamGameServer014_SetProduct_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszProduct; }; struct ISteamGameServer_SteamGameServer014_SetGameDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszGameDescription; }; struct ISteamGameServer_SteamGameServer014_SetModDir_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszModDir; }; struct ISteamGameServer_SteamGameServer014_SetDedicatedServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bDedicated; }; struct ISteamGameServer_SteamGameServer014_LogOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszToken; }; struct ISteamGameServer_SteamGameServer014_LogOnAnonymous_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer014_LogOff_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer014_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer014_BSecure_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer014_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer014_WasRestartRequested_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer014_SetMaxPlayerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t cPlayersMax; }; struct ISteamGameServer_SteamGameServer014_SetBotPlayerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t cBotplayers; }; struct ISteamGameServer_SteamGameServer014_SetServerName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszServerName; }; struct ISteamGameServer_SteamGameServer014_SetMapName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszMapName; }; struct ISteamGameServer_SteamGameServer014_SetPasswordProtected_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bPasswordProtected; }; struct ISteamGameServer_SteamGameServer014_SetSpectatorPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer014_SetSpectatorServerName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszSpectatorServerName; }; struct ISteamGameServer_SteamGameServer014_ClearAllKeyValues_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer014_SetKeyValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pKey; const char *pValue; }; struct ISteamGameServer_SteamGameServer014_SetGameTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchGameTags; }; struct ISteamGameServer_SteamGameServer014_SetGameData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchGameData; }; struct ISteamGameServer_SteamGameServer014_SetRegion_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszRegion; }; struct ISteamGameServer_SteamGameServer014_SetAdvertiseServerActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bActive; }; struct ISteamGameServer_SteamGameServer014_GetAuthSessionTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -35837,7 +35837,7 @@ struct ISteamGameServer_SteamGameServer014_GetAuthSessionTicket_params struct ISteamGameServer_SteamGameServer014_BeginAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -35846,19 +35846,19 @@ struct ISteamGameServer_SteamGameServer014_BeginAuthSession_params struct ISteamGameServer_SteamGameServer014_EndAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamGameServer_SteamGameServer014_CancelAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hAuthTicket; }; struct ISteamGameServer_SteamGameServer014_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -35866,7 +35866,7 @@ struct ISteamGameServer_SteamGameServer014_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer014_RequestUserGroupStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; @@ -35874,24 +35874,24 @@ struct ISteamGameServer_SteamGameServer014_RequestUserGroupStatus_params struct ISteamGameServer_SteamGameServer014_GetGameplayStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer014_GetServerReputation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamGameServer_SteamGameServer014_GetPublicIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; SteamIPAddress_t *_ret; }; struct ISteamGameServer_SteamGameServer014_HandleIncomingPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pData; int32_t cbData; @@ -35901,7 +35901,7 @@ struct ISteamGameServer_SteamGameServer014_HandleIncomingPacket_params struct ISteamGameServer_SteamGameServer014_GetNextOutgoingPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pOut; int32_t cbMaxOut; @@ -35911,21 +35911,21 @@ struct ISteamGameServer_SteamGameServer014_GetNextOutgoingPacket_params struct ISteamGameServer_SteamGameServer014_AssociateWithClan_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDNewPlayer; }; struct ISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; @@ -35935,19 +35935,19 @@ struct ISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPREC struct ISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer014_BUpdateUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -35956,18 +35956,18 @@ struct ISteamGameServer_SteamGameServer014_BUpdateUserData_params struct ISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t iHeartbeatInterval; }; struct ISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer015_InitGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unIP; uint16_t usGamePort; @@ -35979,149 +35979,149 @@ struct ISteamGameServer_SteamGameServer015_InitGameServer_params struct ISteamGameServer_SteamGameServer015_SetProduct_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszProduct; }; struct ISteamGameServer_SteamGameServer015_SetGameDescription_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszGameDescription; }; struct ISteamGameServer_SteamGameServer015_SetModDir_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszModDir; }; struct ISteamGameServer_SteamGameServer015_SetDedicatedServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bDedicated; }; struct ISteamGameServer_SteamGameServer015_LogOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszToken; }; struct ISteamGameServer_SteamGameServer015_LogOnAnonymous_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer015_LogOff_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer015_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer015_BSecure_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer015_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer015_WasRestartRequested_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamGameServer_SteamGameServer015_SetMaxPlayerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t cPlayersMax; }; struct ISteamGameServer_SteamGameServer015_SetBotPlayerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t cBotplayers; }; struct ISteamGameServer_SteamGameServer015_SetServerName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszServerName; }; struct ISteamGameServer_SteamGameServer015_SetMapName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszMapName; }; struct ISteamGameServer_SteamGameServer015_SetPasswordProtected_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bPasswordProtected; }; struct ISteamGameServer_SteamGameServer015_SetSpectatorPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t unSpectatorPort; }; struct ISteamGameServer_SteamGameServer015_SetSpectatorServerName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszSpectatorServerName; }; struct ISteamGameServer_SteamGameServer015_ClearAllKeyValues_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer015_SetKeyValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pKey; const char *pValue; }; struct ISteamGameServer_SteamGameServer015_SetGameTags_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchGameTags; }; struct ISteamGameServer_SteamGameServer015_SetGameData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchGameData; }; struct ISteamGameServer_SteamGameServer015_SetRegion_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pszRegion; }; struct ISteamGameServer_SteamGameServer015_SetAdvertiseServerActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bActive; }; struct ISteamGameServer_SteamGameServer015_GetAuthSessionTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -36131,7 +36131,7 @@ struct ISteamGameServer_SteamGameServer015_GetAuthSessionTicket_params struct ISteamGameServer_SteamGameServer015_BeginAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -36140,19 +36140,19 @@ struct ISteamGameServer_SteamGameServer015_BeginAuthSession_params struct ISteamGameServer_SteamGameServer015_EndAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamGameServer_SteamGameServer015_CancelAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hAuthTicket; }; struct ISteamGameServer_SteamGameServer015_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -36160,7 +36160,7 @@ struct ISteamGameServer_SteamGameServer015_UserHasLicenseForApp_params struct ISteamGameServer_SteamGameServer015_RequestUserGroupStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; CSteamID steamIDGroup; @@ -36168,24 +36168,24 @@ struct ISteamGameServer_SteamGameServer015_RequestUserGroupStatus_params struct ISteamGameServer_SteamGameServer015_GetGameplayStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServer_SteamGameServer015_GetServerReputation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamGameServer_SteamGameServer015_GetPublicIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; SteamIPAddress_t *_ret; }; struct ISteamGameServer_SteamGameServer015_HandleIncomingPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pData; int32_t cbData; @@ -36195,7 +36195,7 @@ struct ISteamGameServer_SteamGameServer015_HandleIncomingPacket_params struct ISteamGameServer_SteamGameServer015_GetNextOutgoingPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pOut; int32_t cbMaxOut; @@ -36205,21 +36205,21 @@ struct ISteamGameServer_SteamGameServer015_GetNextOutgoingPacket_params struct ISteamGameServer_SteamGameServer015_AssociateWithClan_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDClan; }; struct ISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDNewPlayer; }; struct ISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unIPClient; const void *pvAuthBlob; @@ -36229,19 +36229,19 @@ struct ISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPREC struct ISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDUser; }; struct ISteamGameServer_SteamGameServer015_BUpdateUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchPlayerName; @@ -36250,25 +36250,25 @@ struct ISteamGameServer_SteamGameServer015_BUpdateUserData_params struct ISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t iHeartbeatInterval; }; struct ISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamGameServerStats_SteamGameServerStats001_RequestUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -36277,7 +36277,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_params struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -36286,7 +36286,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2_params struct ISteamGameServerStats_SteamGameServerStats001_GetUserAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -36295,7 +36295,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_GetUserAchievement_params struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -36304,7 +36304,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_params struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -36313,7 +36313,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2_params struct ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -36323,7 +36323,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat_param struct ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -36331,7 +36331,7 @@ struct ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement_params struct ISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDUser; const char *pchName; @@ -36339,14 +36339,14 @@ struct ISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement_params struct ISteamGameServerStats_SteamGameServerStats001_StoreUserStats_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDUser; }; struct ISteamGameStats_SteamGameStats001_GetNewSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int8_t nAccountType; uint64_t ulAccountID; @@ -36356,7 +36356,7 @@ struct ISteamGameStats_SteamGameStats001_GetNewSession_params struct ISteamGameStats_SteamGameStats001_EndSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t ulSessionID; uint32_t rtTimeEnded; @@ -36365,7 +36365,7 @@ struct ISteamGameStats_SteamGameStats001_EndSession_params struct ISteamGameStats_SteamGameStats001_AddSessionAttributeInt_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t ulSessionID; const char *pstrName; @@ -36374,7 +36374,7 @@ struct ISteamGameStats_SteamGameStats001_AddSessionAttributeInt_params struct ISteamGameStats_SteamGameStats001_AddSessionAttributeString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t ulSessionID; const char *pstrName; @@ -36383,7 +36383,7 @@ struct ISteamGameStats_SteamGameStats001_AddSessionAttributeString_params struct ISteamGameStats_SteamGameStats001_AddSessionAttributeFloat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t ulSessionID; const char *pstrName; @@ -36392,7 +36392,7 @@ struct ISteamGameStats_SteamGameStats001_AddSessionAttributeFloat_params struct ISteamGameStats_SteamGameStats001_AddNewRow_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t *pulRowID; uint64_t ulSessionID; @@ -36401,21 +36401,21 @@ struct ISteamGameStats_SteamGameStats001_AddNewRow_params struct ISteamGameStats_SteamGameStats001_CommitRow_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t ulRowID; }; struct ISteamGameStats_SteamGameStats001_CommitOutstandingRows_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t ulSessionID; }; struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t ulRowID; const char *pstrName; @@ -36424,7 +36424,7 @@ struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt_params struct ISteamGameStats_SteamGameStats001_AddRowAtributeString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t ulRowID; const char *pstrName; @@ -36433,7 +36433,7 @@ struct ISteamGameStats_SteamGameStats001_AddRowAtributeString_params struct ISteamGameStats_SteamGameStats001_AddRowAttributeFloat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t ulRowID; const char *pstrName; @@ -36442,7 +36442,7 @@ struct ISteamGameStats_SteamGameStats001_AddRowAttributeFloat_params struct ISteamGameStats_SteamGameStats001_AddSessionAttributeInt64_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t ulSessionID; const char *pstrName; @@ -36451,7 +36451,7 @@ struct ISteamGameStats_SteamGameStats001_AddSessionAttributeInt64_params struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt64_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t ulRowID; const char *pstrName; @@ -36460,72 +36460,72 @@ struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt64_params struct ISteamInput_SteamInput001_Init_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamInput_SteamInput001_Shutdown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamInput_SteamInput001_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamInput_SteamInput001_GetConnectedControllers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamInput_SteamInput001_GetActionSetHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamInput_SteamInput001_ActivateActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint64_t actionSetHandle; }; struct ISteamInput_SteamInput001_GetCurrentActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput001_ActivateActionSetLayer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint64_t actionSetLayerHandle; }; struct ISteamInput_SteamInput001_DeactivateActionSetLayer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint64_t actionSetLayerHandle; }; struct ISteamInput_SteamInput001_DeactivateAllActionSetLayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; }; struct ISteamInput_SteamInput001_GetActiveActionSetLayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t inputHandle; uint64_t *handlesOut; @@ -36533,14 +36533,14 @@ struct ISteamInput_SteamInput001_GetActiveActionSetLayers_params struct ISteamInput_SteamInput001_GetDigitalActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamInput_SteamInput001_GetDigitalActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; InputDigitalActionData_t *_ret; uint64_t inputHandle; uint64_t digitalActionHandle; @@ -36548,7 +36548,7 @@ struct ISteamInput_SteamInput001_GetDigitalActionData_params struct ISteamInput_SteamInput001_GetDigitalActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t inputHandle; uint64_t actionSetHandle; @@ -36558,14 +36558,14 @@ struct ISteamInput_SteamInput001_GetDigitalActionOrigins_params struct ISteamInput_SteamInput001_GetAnalogActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamInput_SteamInput001_GetAnalogActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; InputAnalogActionData_t *_ret; uint64_t inputHandle; uint64_t analogActionHandle; @@ -36573,7 +36573,7 @@ struct ISteamInput_SteamInput001_GetAnalogActionData_params struct ISteamInput_SteamInput001_GetAnalogActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t inputHandle; uint64_t actionSetHandle; @@ -36583,35 +36583,35 @@ struct ISteamInput_SteamInput001_GetAnalogActionOrigins_params struct ISteamInput_SteamInput001_GetGlyphForActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput001_GetStringForActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput001_StopAnalogActionMomentum_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint64_t eAction; }; struct ISteamInput_SteamInput001_GetMotionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; InputMotionData_t *_ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput001_TriggerVibration_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -36619,7 +36619,7 @@ struct ISteamInput_SteamInput001_TriggerVibration_params struct ISteamInput_SteamInput001_SetLEDColor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint8_t nColorR; uint8_t nColorG; @@ -36629,7 +36629,7 @@ struct ISteamInput_SteamInput001_SetLEDColor_params struct ISteamInput_SteamInput001_TriggerHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -36637,7 +36637,7 @@ struct ISteamInput_SteamInput001_TriggerHapticPulse_params struct ISteamInput_SteamInput001_TriggerRepeatedHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -36648,49 +36648,49 @@ struct ISteamInput_SteamInput001_TriggerRepeatedHapticPulse_params struct ISteamInput_SteamInput001_ShowBindingPanel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput001_GetInputTypeForHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput001_GetControllerForGamepadIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t nIndex; }; struct ISteamInput_SteamInput001_GetGamepadIndexForController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t ulinputHandle; }; struct ISteamInput_SteamInput001_GetStringForXboxOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput001_GetGlyphForXboxOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput001_GetActionOriginFromXboxOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t inputHandle; uint32_t eOrigin; @@ -36698,7 +36698,7 @@ struct ISteamInput_SteamInput001_GetActionOriginFromXboxOrigin_params struct ISteamInput_SteamInput001_TranslateActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t eDestinationInputType; uint32_t eSourceOrigin; @@ -36706,7 +36706,7 @@ struct ISteamInput_SteamInput001_TranslateActionOrigin_params struct ISteamInput_SteamInput001_GetDeviceBindingRevision_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t inputHandle; int32_t *pMajor; @@ -36715,79 +36715,79 @@ struct ISteamInput_SteamInput001_GetDeviceBindingRevision_params struct ISteamInput_SteamInput001_GetRemotePlaySessionID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput002_Init_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamInput_SteamInput002_Shutdown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamInput_SteamInput002_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamInput_SteamInput002_GetConnectedControllers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamInput_SteamInput002_GetActionSetHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamInput_SteamInput002_ActivateActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint64_t actionSetHandle; }; struct ISteamInput_SteamInput002_GetCurrentActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput002_ActivateActionSetLayer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint64_t actionSetLayerHandle; }; struct ISteamInput_SteamInput002_DeactivateActionSetLayer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint64_t actionSetLayerHandle; }; struct ISteamInput_SteamInput002_DeactivateAllActionSetLayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; }; struct ISteamInput_SteamInput002_GetActiveActionSetLayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t inputHandle; uint64_t *handlesOut; @@ -36795,14 +36795,14 @@ struct ISteamInput_SteamInput002_GetActiveActionSetLayers_params struct ISteamInput_SteamInput002_GetDigitalActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamInput_SteamInput002_GetDigitalActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; InputDigitalActionData_t *_ret; uint64_t inputHandle; uint64_t digitalActionHandle; @@ -36810,7 +36810,7 @@ struct ISteamInput_SteamInput002_GetDigitalActionData_params struct ISteamInput_SteamInput002_GetDigitalActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t inputHandle; uint64_t actionSetHandle; @@ -36820,14 +36820,14 @@ struct ISteamInput_SteamInput002_GetDigitalActionOrigins_params struct ISteamInput_SteamInput002_GetAnalogActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamInput_SteamInput002_GetAnalogActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; InputAnalogActionData_t *_ret; uint64_t inputHandle; uint64_t analogActionHandle; @@ -36835,7 +36835,7 @@ struct ISteamInput_SteamInput002_GetAnalogActionData_params struct ISteamInput_SteamInput002_GetAnalogActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t inputHandle; uint64_t actionSetHandle; @@ -36845,35 +36845,35 @@ struct ISteamInput_SteamInput002_GetAnalogActionOrigins_params struct ISteamInput_SteamInput002_GetGlyphForActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput002_GetStringForActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput002_StopAnalogActionMomentum_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint64_t eAction; }; struct ISteamInput_SteamInput002_GetMotionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; InputMotionData_t *_ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput002_TriggerVibration_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -36881,7 +36881,7 @@ struct ISteamInput_SteamInput002_TriggerVibration_params struct ISteamInput_SteamInput002_SetLEDColor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint8_t nColorR; uint8_t nColorG; @@ -36891,7 +36891,7 @@ struct ISteamInput_SteamInput002_SetLEDColor_params struct ISteamInput_SteamInput002_TriggerHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -36899,7 +36899,7 @@ struct ISteamInput_SteamInput002_TriggerHapticPulse_params struct ISteamInput_SteamInput002_TriggerRepeatedHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -36910,49 +36910,49 @@ struct ISteamInput_SteamInput002_TriggerRepeatedHapticPulse_params struct ISteamInput_SteamInput002_ShowBindingPanel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput002_GetInputTypeForHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput002_GetControllerForGamepadIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t nIndex; }; struct ISteamInput_SteamInput002_GetGamepadIndexForController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t ulinputHandle; }; struct ISteamInput_SteamInput002_GetStringForXboxOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput002_GetGlyphForXboxOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput002_GetActionOriginFromXboxOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t inputHandle; uint32_t eOrigin; @@ -36960,7 +36960,7 @@ struct ISteamInput_SteamInput002_GetActionOriginFromXboxOrigin_params struct ISteamInput_SteamInput002_TranslateActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t eDestinationInputType; uint32_t eSourceOrigin; @@ -36968,7 +36968,7 @@ struct ISteamInput_SteamInput002_TranslateActionOrigin_params struct ISteamInput_SteamInput002_GetDeviceBindingRevision_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t inputHandle; int32_t *pMajor; @@ -36977,40 +36977,40 @@ struct ISteamInput_SteamInput002_GetDeviceBindingRevision_params struct ISteamInput_SteamInput002_GetRemotePlaySessionID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput005_Init_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bExplicitlyCallRunFrame; }; struct ISteamInput_SteamInput005_Shutdown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamInput_SteamInput005_SetInputActionManifestFilePath_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchInputActionManifestAbsolutePath; }; struct ISteamInput_SteamInput005_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bReservedValue; }; struct ISteamInput_SteamInput005_BWaitForData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bWaitForever; uint32_t unTimeout; @@ -37018,72 +37018,72 @@ struct ISteamInput_SteamInput005_BWaitForData_params struct ISteamInput_SteamInput005_BNewDataAvailable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamInput_SteamInput005_GetConnectedControllers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamInput_SteamInput005_EnableDeviceCallbacks_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamInput_SteamInput005_EnableActionEventCallbacks_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pCallback)(SteamInputActionEvent_t *); }; struct ISteamInput_SteamInput005_GetActionSetHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamInput_SteamInput005_ActivateActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint64_t actionSetHandle; }; struct ISteamInput_SteamInput005_GetCurrentActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput005_ActivateActionSetLayer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint64_t actionSetLayerHandle; }; struct ISteamInput_SteamInput005_DeactivateActionSetLayer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint64_t actionSetLayerHandle; }; struct ISteamInput_SteamInput005_DeactivateAllActionSetLayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; }; struct ISteamInput_SteamInput005_GetActiveActionSetLayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t inputHandle; uint64_t *handlesOut; @@ -37091,14 +37091,14 @@ struct ISteamInput_SteamInput005_GetActiveActionSetLayers_params struct ISteamInput_SteamInput005_GetDigitalActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamInput_SteamInput005_GetDigitalActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; InputDigitalActionData_t *_ret; uint64_t inputHandle; uint64_t digitalActionHandle; @@ -37106,7 +37106,7 @@ struct ISteamInput_SteamInput005_GetDigitalActionData_params struct ISteamInput_SteamInput005_GetDigitalActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t inputHandle; uint64_t actionSetHandle; @@ -37116,21 +37116,21 @@ struct ISteamInput_SteamInput005_GetDigitalActionOrigins_params struct ISteamInput_SteamInput005_GetStringForDigitalActionName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint64_t eActionHandle; }; struct ISteamInput_SteamInput005_GetAnalogActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamInput_SteamInput005_GetAnalogActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; InputAnalogActionData_t *_ret; uint64_t inputHandle; uint64_t analogActionHandle; @@ -37138,7 +37138,7 @@ struct ISteamInput_SteamInput005_GetAnalogActionData_params struct ISteamInput_SteamInput005_GetAnalogActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t inputHandle; uint64_t actionSetHandle; @@ -37148,7 +37148,7 @@ struct ISteamInput_SteamInput005_GetAnalogActionOrigins_params struct ISteamInput_SteamInput005_GetGlyphPNGForActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; uint32_t eSize; @@ -37157,7 +37157,7 @@ struct ISteamInput_SteamInput005_GetGlyphPNGForActionOrigin_params struct ISteamInput_SteamInput005_GetGlyphSVGForActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; uint32_t unFlags; @@ -37165,42 +37165,42 @@ struct ISteamInput_SteamInput005_GetGlyphSVGForActionOrigin_params struct ISteamInput_SteamInput005_GetGlyphForActionOrigin_Legacy_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput005_GetStringForActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput005_GetStringForAnalogActionName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint64_t eActionHandle; }; struct ISteamInput_SteamInput005_StopAnalogActionMomentum_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint64_t eAction; }; struct ISteamInput_SteamInput005_GetMotionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; InputMotionData_t *_ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput005_TriggerVibration_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -37208,7 +37208,7 @@ struct ISteamInput_SteamInput005_TriggerVibration_params struct ISteamInput_SteamInput005_TriggerVibrationExtended_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -37218,7 +37218,7 @@ struct ISteamInput_SteamInput005_TriggerVibrationExtended_params struct ISteamInput_SteamInput005_TriggerSimpleHapticEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint32_t eHapticLocation; uint8_t nIntensity; @@ -37229,7 +37229,7 @@ struct ISteamInput_SteamInput005_TriggerSimpleHapticEvent_params struct ISteamInput_SteamInput005_SetLEDColor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint8_t nColorR; uint8_t nColorG; @@ -37239,7 +37239,7 @@ struct ISteamInput_SteamInput005_SetLEDColor_params struct ISteamInput_SteamInput005_Legacy_TriggerHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -37247,7 +37247,7 @@ struct ISteamInput_SteamInput005_Legacy_TriggerHapticPulse_params struct ISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -37258,49 +37258,49 @@ struct ISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse_params struct ISteamInput_SteamInput005_ShowBindingPanel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput005_GetInputTypeForHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput005_GetControllerForGamepadIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t nIndex; }; struct ISteamInput_SteamInput005_GetGamepadIndexForController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t ulinputHandle; }; struct ISteamInput_SteamInput005_GetStringForXboxOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput005_GetGlyphForXboxOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput005_GetActionOriginFromXboxOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t inputHandle; uint32_t eOrigin; @@ -37308,7 +37308,7 @@ struct ISteamInput_SteamInput005_GetActionOriginFromXboxOrigin_params struct ISteamInput_SteamInput005_TranslateActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t eDestinationInputType; uint32_t eSourceOrigin; @@ -37316,7 +37316,7 @@ struct ISteamInput_SteamInput005_TranslateActionOrigin_params struct ISteamInput_SteamInput005_GetDeviceBindingRevision_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t inputHandle; int32_t *pMajor; @@ -37325,46 +37325,46 @@ struct ISteamInput_SteamInput005_GetDeviceBindingRevision_params struct ISteamInput_SteamInput005_GetRemotePlaySessionID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput005_GetSessionInputConfigurationSettings_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t _ret; }; struct ISteamInput_SteamInput006_Init_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bExplicitlyCallRunFrame; }; struct ISteamInput_SteamInput006_Shutdown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamInput_SteamInput006_SetInputActionManifestFilePath_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchInputActionManifestAbsolutePath; }; struct ISteamInput_SteamInput006_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bReservedValue; }; struct ISteamInput_SteamInput006_BWaitForData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bWaitForever; uint32_t unTimeout; @@ -37372,72 +37372,72 @@ struct ISteamInput_SteamInput006_BWaitForData_params struct ISteamInput_SteamInput006_BNewDataAvailable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamInput_SteamInput006_GetConnectedControllers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t *handlesOut; }; struct ISteamInput_SteamInput006_EnableDeviceCallbacks_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamInput_SteamInput006_EnableActionEventCallbacks_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pCallback)(SteamInputActionEvent_t *); }; struct ISteamInput_SteamInput006_GetActionSetHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionSetName; }; struct ISteamInput_SteamInput006_ActivateActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint64_t actionSetHandle; }; struct ISteamInput_SteamInput006_GetCurrentActionSet_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput006_ActivateActionSetLayer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint64_t actionSetLayerHandle; }; struct ISteamInput_SteamInput006_DeactivateActionSetLayer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint64_t actionSetLayerHandle; }; struct ISteamInput_SteamInput006_DeactivateAllActionSetLayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; }; struct ISteamInput_SteamInput006_GetActiveActionSetLayers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t inputHandle; uint64_t *handlesOut; @@ -37445,14 +37445,14 @@ struct ISteamInput_SteamInput006_GetActiveActionSetLayers_params struct ISteamInput_SteamInput006_GetDigitalActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamInput_SteamInput006_GetDigitalActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; InputDigitalActionData_t *_ret; uint64_t inputHandle; uint64_t digitalActionHandle; @@ -37460,7 +37460,7 @@ struct ISteamInput_SteamInput006_GetDigitalActionData_params struct ISteamInput_SteamInput006_GetDigitalActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t inputHandle; uint64_t actionSetHandle; @@ -37470,21 +37470,21 @@ struct ISteamInput_SteamInput006_GetDigitalActionOrigins_params struct ISteamInput_SteamInput006_GetStringForDigitalActionName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint64_t eActionHandle; }; struct ISteamInput_SteamInput006_GetAnalogActionHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pszActionName; }; struct ISteamInput_SteamInput006_GetAnalogActionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; InputAnalogActionData_t *_ret; uint64_t inputHandle; uint64_t analogActionHandle; @@ -37492,7 +37492,7 @@ struct ISteamInput_SteamInput006_GetAnalogActionData_params struct ISteamInput_SteamInput006_GetAnalogActionOrigins_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t inputHandle; uint64_t actionSetHandle; @@ -37502,7 +37502,7 @@ struct ISteamInput_SteamInput006_GetAnalogActionOrigins_params struct ISteamInput_SteamInput006_GetGlyphPNGForActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; uint32_t eSize; @@ -37511,7 +37511,7 @@ struct ISteamInput_SteamInput006_GetGlyphPNGForActionOrigin_params struct ISteamInput_SteamInput006_GetGlyphSVGForActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; uint32_t unFlags; @@ -37519,42 +37519,42 @@ struct ISteamInput_SteamInput006_GetGlyphSVGForActionOrigin_params struct ISteamInput_SteamInput006_GetGlyphForActionOrigin_Legacy_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput006_GetStringForActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput006_GetStringForAnalogActionName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint64_t eActionHandle; }; struct ISteamInput_SteamInput006_StopAnalogActionMomentum_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint64_t eAction; }; struct ISteamInput_SteamInput006_GetMotionData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; InputMotionData_t *_ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput006_TriggerVibration_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -37562,7 +37562,7 @@ struct ISteamInput_SteamInput006_TriggerVibration_params struct ISteamInput_SteamInput006_TriggerVibrationExtended_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint16_t usLeftSpeed; uint16_t usRightSpeed; @@ -37572,7 +37572,7 @@ struct ISteamInput_SteamInput006_TriggerVibrationExtended_params struct ISteamInput_SteamInput006_TriggerSimpleHapticEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint32_t eHapticLocation; uint8_t nIntensity; @@ -37583,7 +37583,7 @@ struct ISteamInput_SteamInput006_TriggerSimpleHapticEvent_params struct ISteamInput_SteamInput006_SetLEDColor_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint8_t nColorR; uint8_t nColorG; @@ -37593,7 +37593,7 @@ struct ISteamInput_SteamInput006_SetLEDColor_params struct ISteamInput_SteamInput006_Legacy_TriggerHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -37601,7 +37601,7 @@ struct ISteamInput_SteamInput006_Legacy_TriggerHapticPulse_params struct ISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; uint32_t eTargetPad; uint16_t usDurationMicroSec; @@ -37612,49 +37612,49 @@ struct ISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse_params struct ISteamInput_SteamInput006_ShowBindingPanel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput006_GetInputTypeForHandle_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput006_GetControllerForGamepadIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; int32_t nIndex; }; struct ISteamInput_SteamInput006_GetGamepadIndexForController_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint64_t ulinputHandle; }; struct ISteamInput_SteamInput006_GetStringForXboxOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput006_GetGlyphForXboxOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eOrigin; }; struct ISteamInput_SteamInput006_GetActionOriginFromXboxOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t inputHandle; uint32_t eOrigin; @@ -37662,7 +37662,7 @@ struct ISteamInput_SteamInput006_GetActionOriginFromXboxOrigin_params struct ISteamInput_SteamInput006_TranslateActionOrigin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t eDestinationInputType; uint32_t eSourceOrigin; @@ -37670,7 +37670,7 @@ struct ISteamInput_SteamInput006_TranslateActionOrigin_params struct ISteamInput_SteamInput006_GetDeviceBindingRevision_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t inputHandle; int32_t *pMajor; @@ -37679,39 +37679,39 @@ struct ISteamInput_SteamInput006_GetDeviceBindingRevision_params struct ISteamInput_SteamInput006_GetRemotePlaySessionID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t inputHandle; }; struct ISteamInput_SteamInput006_GetSessionInputConfigurationSettings_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t _ret; }; struct ISteamInput_SteamInput006_SetDualSenseTriggerEffect_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t inputHandle; const ScePadTriggerEffectParam *pParam; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bActive; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t iHeartbeatInterval; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pData; int32_t cbData; @@ -37721,7 +37721,7 @@ struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacke struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pOut; int32_t cbMaxOut; @@ -37731,7 +37731,7 @@ struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPack struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t nProtocolVersion; int8_t bDedicatedServer; const char *pRegionName; @@ -37743,55 +37743,55 @@ struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData_ struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pKey; const char *pValue; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pServerAddress; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pServerAddress; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t iServer; char *pOut; @@ -37800,7 +37800,7 @@ struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddr struct ISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchKeyToFind; const char *pchValuesToFind; @@ -37808,7 +37808,7 @@ struct ISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams_params struct ISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDLobby; int32_t nPlayerMin; @@ -37817,7 +37817,7 @@ struct ISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby_params struct ISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nPlayerMin; int32_t nPlayerMax; @@ -37825,19 +37825,19 @@ struct ISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo_params struct ISteamGameSearch_SteamMatchGameSearch001_AcceptGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamGameSearch_SteamMatchGameSearch001_DeclineGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDHost; char *pchConnectionDetails; @@ -37846,13 +37846,13 @@ struct ISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails_params struct ISteamGameSearch_SteamMatchGameSearch001_EndGameSearch_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchKey; const char *pchValue; @@ -37860,7 +37860,7 @@ struct ISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams_params struct ISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchConnectionDetails; int32_t cubConnectionDetails; @@ -37868,7 +37868,7 @@ struct ISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails_params struct ISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nPlayerMin; int32_t nPlayerMax; @@ -37877,20 +37877,20 @@ struct ISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame_params struct ISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t ullUniqueGameID; }; struct ISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t ullUniqueGameID; CSteamID steamIDPlayer; @@ -37899,20 +37899,20 @@ struct ISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult_params struct ISteamGameSearch_SteamMatchGameSearch001_EndGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t ullUniqueGameID; }; struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -37924,7 +37924,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -37935,7 +37935,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -37945,7 +37945,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -37958,7 +37958,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2_params struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -37970,7 +37970,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2_params struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -37981,7 +37981,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2_params struct ISteamMatchmaking_SteamMatchMaking001_RequestLobbyList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t ulGameID; MatchMakingKeyValuePair_t *pFilters; uint32_t nFilters; @@ -37989,33 +37989,33 @@ struct ISteamMatchmaking_SteamMatchMaking001_RequestLobbyList_params struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iLobby; }; struct ISteamMatchmaking_SteamMatchMaking001_CreateLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t ulGameID; int8_t bPrivate; }; struct ISteamMatchmaking_SteamMatchMaking001_JoinLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking001_LeaveLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; @@ -38023,14 +38023,14 @@ struct ISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby_params struct ISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDLobby; int32_t iMember; @@ -38038,7 +38038,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex_params struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID SteamIDLobby; const char *pchKey; @@ -38046,7 +38046,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -38055,7 +38055,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDLobby; CSteamID steamIDUser; @@ -38064,7 +38064,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -38073,7 +38073,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; @@ -38082,7 +38082,7 @@ struct ISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg_params struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; int32_t iChatID; @@ -38094,20 +38094,20 @@ struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking001_RequestLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -38120,7 +38120,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38132,7 +38132,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38143,37 +38143,37 @@ struct ISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking002_RequestLobbyList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iLobby; }; struct ISteamMatchmaking_SteamMatchMaking002_CreateLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bPrivate; }; struct ISteamMatchmaking_SteamMatchMaking002_JoinLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking002_LeaveLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; @@ -38181,14 +38181,14 @@ struct ISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby_params struct ISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDLobby; int32_t iMember; @@ -38196,7 +38196,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex_params struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDLobby; const char *pchKey; @@ -38204,7 +38204,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -38213,7 +38213,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDLobby; CSteamID steamIDUser; @@ -38222,7 +38222,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -38230,7 +38230,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; @@ -38239,7 +38239,7 @@ struct ISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg_params struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; int32_t iChatID; @@ -38251,14 +38251,14 @@ struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking002_RequestLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; uint32_t unGameServerIP; uint16_t unGameServerPort; @@ -38267,13 +38267,13 @@ struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -38286,7 +38286,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38298,7 +38298,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38309,19 +38309,19 @@ struct ISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking003_RequestLobbyList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; const char *pchValueToMatch; }; struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; int32_t nValueToMatch; int32_t nComparisonType; @@ -38329,37 +38329,37 @@ struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter_ struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iLobby; }; struct ISteamMatchmaking_SteamMatchMaking003_CreateLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bPrivate; }; struct ISteamMatchmaking_SteamMatchMaking003_JoinLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking003_LeaveLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; @@ -38367,14 +38367,14 @@ struct ISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby_params struct ISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDLobby; int32_t iMember; @@ -38382,7 +38382,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex_params struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDLobby; const char *pchKey; @@ -38390,7 +38390,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -38399,7 +38399,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDLobby; CSteamID steamIDUser; @@ -38408,7 +38408,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -38416,7 +38416,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; @@ -38425,7 +38425,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg_params struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; int32_t iChatID; @@ -38437,14 +38437,14 @@ struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking003_RequestLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; uint32_t unGameServerIP; uint16_t unGameServerPort; @@ -38453,7 +38453,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; @@ -38463,7 +38463,7 @@ struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; @@ -38471,33 +38471,33 @@ struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; int8_t bVoiceEnabled; }; struct ISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -38510,7 +38510,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38522,7 +38522,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38533,19 +38533,19 @@ struct ISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking004_RequestLobbyList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; const char *pchValueToMatch; }; struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; int32_t nValueToMatch; int32_t nComparisonType; @@ -38553,37 +38553,37 @@ struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter_ struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iLobby; }; struct ISteamMatchmaking_SteamMatchMaking004_CreateLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bPrivate; }; struct ISteamMatchmaking_SteamMatchMaking004_JoinLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking004_LeaveLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; @@ -38591,14 +38591,14 @@ struct ISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby_params struct ISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDLobby; int32_t iMember; @@ -38606,7 +38606,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex_params struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDLobby; const char *pchKey; @@ -38614,7 +38614,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -38623,7 +38623,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDLobby; CSteamID steamIDUser; @@ -38632,7 +38632,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -38640,7 +38640,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; @@ -38649,7 +38649,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg_params struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; int32_t iChatID; @@ -38661,14 +38661,14 @@ struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking004_RequestLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; uint32_t unGameServerIP; uint16_t unGameServerPort; @@ -38677,7 +38677,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; @@ -38687,7 +38687,7 @@ struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; @@ -38695,26 +38695,26 @@ struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -38727,7 +38727,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38739,7 +38739,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38750,19 +38750,19 @@ struct ISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking005_RequestLobbyList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; const char *pchValueToMatch; }; struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; int32_t nValueToMatch; int32_t nComparisonType; @@ -38770,44 +38770,44 @@ struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter_ struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; int32_t nValueToBeCloseTo; }; struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iLobby; }; struct ISteamMatchmaking_SteamMatchMaking005_CreateLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eLobbyType; }; struct ISteamMatchmaking_SteamMatchMaking005_JoinLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking005_LeaveLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; @@ -38815,14 +38815,14 @@ struct ISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby_params struct ISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDLobby; int32_t iMember; @@ -38830,7 +38830,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex_params struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDLobby; const char *pchKey; @@ -38838,7 +38838,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -38847,7 +38847,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDLobby; CSteamID steamIDUser; @@ -38856,7 +38856,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -38864,7 +38864,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; @@ -38873,7 +38873,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg_params struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; int32_t iChatID; @@ -38885,14 +38885,14 @@ struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking005_RequestLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; uint32_t unGameServerIP; uint16_t unGameServerPort; @@ -38901,7 +38901,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; @@ -38911,7 +38911,7 @@ struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; @@ -38919,20 +38919,20 @@ struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t eLobbyType; @@ -38940,27 +38940,27 @@ struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyType_params struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; float _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -38973,7 +38973,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38985,7 +38985,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -38996,20 +38996,20 @@ struct ISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking006_RequestLobbyList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; const char *pchValueToMatch; }; struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; int32_t nValueToMatch; int32_t nComparisonType; @@ -39017,41 +39017,41 @@ struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter_ struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; int32_t nValueToBeCloseTo; }; struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iLobby; }; struct ISteamMatchmaking_SteamMatchMaking006_CreateLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eLobbyType; }; struct ISteamMatchmaking_SteamMatchMaking006_JoinLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking006_LeaveLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; @@ -39059,14 +39059,14 @@ struct ISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby_params struct ISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDLobby; int32_t iMember; @@ -39074,7 +39074,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex_params struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDLobby; const char *pchKey; @@ -39082,7 +39082,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -39091,7 +39091,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDLobby; CSteamID steamIDUser; @@ -39100,7 +39100,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -39108,7 +39108,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; @@ -39117,7 +39117,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg_params struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; int32_t iChatID; @@ -39129,14 +39129,14 @@ struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking006_RequestLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; uint32_t unGameServerIP; uint16_t unGameServerPort; @@ -39145,7 +39145,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; @@ -39155,7 +39155,7 @@ struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; @@ -39163,14 +39163,14 @@ struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t eLobbyType; @@ -39178,20 +39178,20 @@ struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyType_params struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -39204,7 +39204,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -39216,7 +39216,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -39227,13 +39227,13 @@ struct ISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking007_RequestLobbyList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; const char *pchValueToMatch; uint32_t eComparisonType; @@ -39241,7 +39241,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter_par struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; int32_t nValueToMatch; uint32_t eComparisonType; @@ -39249,27 +39249,27 @@ struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter_ struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; int32_t nValueToBeCloseTo; }; struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t nSlotsAvailable; }; struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iLobby; }; struct ISteamMatchmaking_SteamMatchMaking007_CreateLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eLobbyType; int32_t cMaxMembers; @@ -39277,20 +39277,20 @@ struct ISteamMatchmaking_SteamMatchMaking007_CreateLobby_params struct ISteamMatchmaking_SteamMatchMaking007_JoinLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking007_LeaveLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; @@ -39298,14 +39298,14 @@ struct ISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby_params struct ISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDLobby; int32_t iMember; @@ -39313,7 +39313,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex_params struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDLobby; const char *pchKey; @@ -39321,7 +39321,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -39330,14 +39330,14 @@ struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t iLobbyData; @@ -39349,7 +39349,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex_params struct ISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -39357,7 +39357,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData_params struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDLobby; CSteamID steamIDUser; @@ -39366,7 +39366,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -39374,7 +39374,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; @@ -39383,7 +39383,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg_params struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; int32_t iChatID; @@ -39395,14 +39395,14 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking007_RequestLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; uint32_t unGameServerIP; uint16_t unGameServerPort; @@ -39411,7 +39411,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; @@ -39421,7 +39421,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; @@ -39429,14 +39429,14 @@ struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t eLobbyType; @@ -39444,7 +39444,7 @@ struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyType_params struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; int8_t bLobbyJoinable; @@ -39452,14 +39452,14 @@ struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable_params struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDNewOwner; @@ -39467,13 +39467,13 @@ struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner_params struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -39486,7 +39486,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -39498,7 +39498,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -39509,13 +39509,13 @@ struct ISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking008_RequestLobbyList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; const char *pchValueToMatch; uint32_t eComparisonType; @@ -39523,7 +39523,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter_par struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; int32_t nValueToMatch; uint32_t eComparisonType; @@ -39531,39 +39531,39 @@ struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter_ struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; int32_t nValueToBeCloseTo; }; struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t nSlotsAvailable; }; struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eLobbyDistanceFilter; }; struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t cMaxResults; }; struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iLobby; }; struct ISteamMatchmaking_SteamMatchMaking008_CreateLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eLobbyType; int32_t cMaxMembers; @@ -39571,20 +39571,20 @@ struct ISteamMatchmaking_SteamMatchMaking008_CreateLobby_params struct ISteamMatchmaking_SteamMatchMaking008_JoinLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking008_LeaveLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; @@ -39592,14 +39592,14 @@ struct ISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby_params struct ISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDLobby; int32_t iMember; @@ -39607,7 +39607,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex_params struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDLobby; const char *pchKey; @@ -39615,7 +39615,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -39624,14 +39624,14 @@ struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t iLobbyData; @@ -39643,7 +39643,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex_params struct ISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -39651,7 +39651,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData_params struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDLobby; CSteamID steamIDUser; @@ -39660,7 +39660,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -39668,7 +39668,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; @@ -39677,7 +39677,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg_params struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; int32_t iChatID; @@ -39689,14 +39689,14 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking008_RequestLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; uint32_t unGameServerIP; uint16_t unGameServerPort; @@ -39705,7 +39705,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; @@ -39715,7 +39715,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; @@ -39723,14 +39723,14 @@ struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t eLobbyType; @@ -39738,7 +39738,7 @@ struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyType_params struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; int8_t bLobbyJoinable; @@ -39746,14 +39746,14 @@ struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable_params struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDNewOwner; @@ -39761,13 +39761,13 @@ struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner_params struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iGame; uint32_t *pnAppID; @@ -39780,7 +39780,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t nAppID; uint32_t nIP; @@ -39792,7 +39792,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nAppID; uint32_t nIP; @@ -39803,13 +39803,13 @@ struct ISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame_params struct ISteamMatchmaking_SteamMatchMaking009_RequestLobbyList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; const char *pchValueToMatch; uint32_t eComparisonType; @@ -39817,7 +39817,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter_par struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; int32_t nValueToMatch; uint32_t eComparisonType; @@ -39825,45 +39825,45 @@ struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter_ struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchKeyToMatch; int32_t nValueToBeCloseTo; }; struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t nSlotsAvailable; }; struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eLobbyDistanceFilter; }; struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t cMaxResults; }; struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; int32_t iLobby; }; struct ISteamMatchmaking_SteamMatchMaking009_CreateLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t eLobbyType; int32_t cMaxMembers; @@ -39871,20 +39871,20 @@ struct ISteamMatchmaking_SteamMatchMaking009_CreateLobby_params struct ISteamMatchmaking_SteamMatchMaking009_JoinLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking009_LeaveLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDInvitee; @@ -39892,14 +39892,14 @@ struct ISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby_params struct ISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDLobby; int32_t iMember; @@ -39907,7 +39907,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex_params struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDLobby; const char *pchKey; @@ -39915,7 +39915,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -39924,14 +39924,14 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyData_params struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t iLobbyData; @@ -39943,7 +39943,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex_params struct ISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const char *pchKey; @@ -39951,7 +39951,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData_params struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; CSteamID steamIDLobby; CSteamID steamIDUser; @@ -39960,7 +39960,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; const char *pchKey; const char *pchValue; @@ -39968,7 +39968,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData_params struct ISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; const void *pvMsgBody; @@ -39977,7 +39977,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg_params struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; int32_t iChatID; @@ -39989,14 +39989,14 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry_params struct ISteamMatchmaking_SteamMatchMaking009_RequestLobbyData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDLobby; uint32_t unGameServerIP; uint16_t unGameServerPort; @@ -40005,7 +40005,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t *punGameServerIP; @@ -40015,7 +40015,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer_params struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; int32_t cMaxMembers; @@ -40023,14 +40023,14 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit_params struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; uint32_t eLobbyType; @@ -40038,7 +40038,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyType_params struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; int8_t bLobbyJoinable; @@ -40046,14 +40046,14 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable_params struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; CSteamID steamIDLobby; }; struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDNewOwner; @@ -40061,7 +40061,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner_params struct ISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDLobby; CSteamID steamIDLobbyDependent; @@ -40069,7 +40069,7 @@ struct ISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby_params struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; uint32_t nFilters; @@ -40078,14 +40078,14 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServer struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t iApp; w_ISteamMatchmakingServerListResponse_099u *pRequestServersResponse; }; struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; uint32_t nFilters; @@ -40094,7 +40094,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerL struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; uint32_t nFilters; @@ -40103,7 +40103,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServe struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; uint32_t nFilters; @@ -40112,7 +40112,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerL struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; uint32_t nFilters; @@ -40121,7 +40121,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServe struct ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; gameserveritem_t_105 *_ret; uint32_t eType; int32_t iServer; @@ -40129,40 +40129,40 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails_para struct ISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eType; }; struct ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eType; }; struct ISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eType; }; struct ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t eType; }; struct ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eType; int32_t iServer; }; struct ISteamMatchmakingServers_SteamMatchMakingServers001_PingServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t unIP; uint16_t usPort; @@ -40171,7 +40171,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_PingServer_params struct ISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t unIP; uint16_t usPort; @@ -40180,7 +40180,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails_params struct ISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t unIP; uint16_t usPort; @@ -40189,13 +40189,13 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules_params struct ISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t hServerQuery; }; struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; @@ -40205,7 +40205,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServer struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; uint32_t iApp; w_ISteamMatchmakingServerListResponse_106 *pRequestServersResponse; @@ -40213,7 +40213,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList_ struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; @@ -40223,7 +40223,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerL struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; @@ -40233,7 +40233,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServe struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; @@ -40243,7 +40243,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerL struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *_ret; uint32_t iApp; MatchMakingKeyValuePair_t **ppchFilters; @@ -40253,13 +40253,13 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServe struct ISteamMatchmakingServers_SteamMatchMakingServers002_ReleaseRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *hServerListRequest; }; struct ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; gameserveritem_t_105 *_ret; void *hRequest; int32_t iServer; @@ -40267,40 +40267,40 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails_para struct ISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *hRequest; }; struct ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *hRequest; }; struct ISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *hRequest; }; struct ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *hRequest; }; struct ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void *hRequest; int32_t iServer; }; struct ISteamMatchmakingServers_SteamMatchMakingServers002_PingServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t unIP; uint16_t usPort; @@ -40309,7 +40309,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_PingServer_params struct ISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t unIP; uint16_t usPort; @@ -40318,7 +40318,7 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails_params struct ISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t unIP; uint16_t usPort; @@ -40327,13 +40327,13 @@ struct ISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules_params struct ISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t hServerQuery; }; struct ISteamNetworking_SteamNetworking001_CreateListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nVirtualP2PPort; uint32_t nIP; @@ -40342,7 +40342,7 @@ struct ISteamNetworking_SteamNetworking001_CreateListenSocket_params struct ISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDTarget; int32_t nVirtualPort; @@ -40351,7 +40351,7 @@ struct ISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket_params struct ISteamNetworking_SteamNetworking001_CreateConnectionSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t nIP; uint16_t nPort; @@ -40360,7 +40360,7 @@ struct ISteamNetworking_SteamNetworking001_CreateConnectionSocket_params struct ISteamNetworking_SteamNetworking001_DestroySocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -40368,7 +40368,7 @@ struct ISteamNetworking_SteamNetworking001_DestroySocket_params struct ISteamNetworking_SteamNetworking001_DestroyListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -40376,7 +40376,7 @@ struct ISteamNetworking_SteamNetworking001_DestroyListenSocket_params struct ISteamNetworking_SteamNetworking001_SendDataOnSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; void *pubData; @@ -40386,7 +40386,7 @@ struct ISteamNetworking_SteamNetworking001_SendDataOnSocket_params struct ISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; uint32_t *pcubMsgSize; @@ -40394,7 +40394,7 @@ struct ISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket_params struct ISteamNetworking_SteamNetworking001_RetrieveDataFromSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; void *pubDest; @@ -40404,7 +40404,7 @@ struct ISteamNetworking_SteamNetworking001_RetrieveDataFromSocket_params struct ISteamNetworking_SteamNetworking001_IsDataAvailable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pcubMsgSize; @@ -40413,7 +40413,7 @@ struct ISteamNetworking_SteamNetworking001_IsDataAvailable_params struct ISteamNetworking_SteamNetworking001_RetrieveData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hListenSocket; void *pubDest; @@ -40424,7 +40424,7 @@ struct ISteamNetworking_SteamNetworking001_RetrieveData_params struct ISteamNetworking_SteamNetworking001_GetSocketInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; CSteamID *pSteamIDRemote; @@ -40435,7 +40435,7 @@ struct ISteamNetworking_SteamNetworking001_GetSocketInfo_params struct ISteamNetworking_SteamNetworking001_GetListenSocketInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pnIP; @@ -40444,7 +40444,7 @@ struct ISteamNetworking_SteamNetworking001_GetListenSocketInfo_params struct ISteamNetworking_SteamNetworking002_CreateListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nVirtualP2PPort; uint32_t nIP; @@ -40454,7 +40454,7 @@ struct ISteamNetworking_SteamNetworking002_CreateListenSocket_params struct ISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDTarget; int32_t nVirtualPort; @@ -40464,7 +40464,7 @@ struct ISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket_params struct ISteamNetworking_SteamNetworking002_CreateConnectionSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t nIP; uint16_t nPort; @@ -40473,7 +40473,7 @@ struct ISteamNetworking_SteamNetworking002_CreateConnectionSocket_params struct ISteamNetworking_SteamNetworking002_DestroySocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -40481,7 +40481,7 @@ struct ISteamNetworking_SteamNetworking002_DestroySocket_params struct ISteamNetworking_SteamNetworking002_DestroyListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -40489,7 +40489,7 @@ struct ISteamNetworking_SteamNetworking002_DestroyListenSocket_params struct ISteamNetworking_SteamNetworking002_SendDataOnSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; void *pubData; @@ -40499,7 +40499,7 @@ struct ISteamNetworking_SteamNetworking002_SendDataOnSocket_params struct ISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; uint32_t *pcubMsgSize; @@ -40507,7 +40507,7 @@ struct ISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket_params struct ISteamNetworking_SteamNetworking002_RetrieveDataFromSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; void *pubDest; @@ -40517,7 +40517,7 @@ struct ISteamNetworking_SteamNetworking002_RetrieveDataFromSocket_params struct ISteamNetworking_SteamNetworking002_IsDataAvailable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pcubMsgSize; @@ -40526,7 +40526,7 @@ struct ISteamNetworking_SteamNetworking002_IsDataAvailable_params struct ISteamNetworking_SteamNetworking002_RetrieveData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hListenSocket; void *pubDest; @@ -40537,7 +40537,7 @@ struct ISteamNetworking_SteamNetworking002_RetrieveData_params struct ISteamNetworking_SteamNetworking002_GetSocketInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; CSteamID *pSteamIDRemote; @@ -40548,7 +40548,7 @@ struct ISteamNetworking_SteamNetworking002_GetSocketInfo_params struct ISteamNetworking_SteamNetworking002_GetListenSocketInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pnIP; @@ -40557,21 +40557,21 @@ struct ISteamNetworking_SteamNetworking002_GetListenSocketInfo_params struct ISteamNetworking_SteamNetworking002_GetSocketConnectionType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hSocket; }; struct ISteamNetworking_SteamNetworking002_GetMaxPacketSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hSocket; }; struct ISteamNetworking_SteamNetworking003_SendP2PPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDRemote; const void *pubData; @@ -40581,14 +40581,14 @@ struct ISteamNetworking_SteamNetworking003_SendP2PPacket_params struct ISteamNetworking_SteamNetworking003_IsP2PPacketAvailable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *pcubMsgSize; }; struct ISteamNetworking_SteamNetworking003_ReadP2PPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *pubDest; uint32_t cubDest; @@ -40598,21 +40598,21 @@ struct ISteamNetworking_SteamNetworking003_ReadP2PPacket_params struct ISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking003_GetP2PSessionState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDRemote; P2PSessionState_t *pConnectionState; @@ -40620,7 +40620,7 @@ struct ISteamNetworking_SteamNetworking003_GetP2PSessionState_params struct ISteamNetworking_SteamNetworking003_CreateListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nVirtualP2PPort; uint32_t nIP; @@ -40630,7 +40630,7 @@ struct ISteamNetworking_SteamNetworking003_CreateListenSocket_params struct ISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDTarget; int32_t nVirtualPort; @@ -40640,7 +40640,7 @@ struct ISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket_params struct ISteamNetworking_SteamNetworking003_CreateConnectionSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t nIP; uint16_t nPort; @@ -40649,7 +40649,7 @@ struct ISteamNetworking_SteamNetworking003_CreateConnectionSocket_params struct ISteamNetworking_SteamNetworking003_DestroySocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -40657,7 +40657,7 @@ struct ISteamNetworking_SteamNetworking003_DestroySocket_params struct ISteamNetworking_SteamNetworking003_DestroyListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -40665,7 +40665,7 @@ struct ISteamNetworking_SteamNetworking003_DestroyListenSocket_params struct ISteamNetworking_SteamNetworking003_SendDataOnSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; void *pubData; @@ -40675,7 +40675,7 @@ struct ISteamNetworking_SteamNetworking003_SendDataOnSocket_params struct ISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; uint32_t *pcubMsgSize; @@ -40683,7 +40683,7 @@ struct ISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket_params struct ISteamNetworking_SteamNetworking003_RetrieveDataFromSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; void *pubDest; @@ -40693,7 +40693,7 @@ struct ISteamNetworking_SteamNetworking003_RetrieveDataFromSocket_params struct ISteamNetworking_SteamNetworking003_IsDataAvailable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pcubMsgSize; @@ -40702,7 +40702,7 @@ struct ISteamNetworking_SteamNetworking003_IsDataAvailable_params struct ISteamNetworking_SteamNetworking003_RetrieveData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hListenSocket; void *pubDest; @@ -40713,7 +40713,7 @@ struct ISteamNetworking_SteamNetworking003_RetrieveData_params struct ISteamNetworking_SteamNetworking003_GetSocketInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; CSteamID *pSteamIDRemote; @@ -40724,7 +40724,7 @@ struct ISteamNetworking_SteamNetworking003_GetSocketInfo_params struct ISteamNetworking_SteamNetworking003_GetListenSocketInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pnIP; @@ -40733,21 +40733,21 @@ struct ISteamNetworking_SteamNetworking003_GetListenSocketInfo_params struct ISteamNetworking_SteamNetworking003_GetSocketConnectionType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hSocket; }; struct ISteamNetworking_SteamNetworking003_GetMaxPacketSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hSocket; }; struct ISteamNetworking_SteamNetworking004_SendP2PPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDRemote; const void *pubData; @@ -40758,7 +40758,7 @@ struct ISteamNetworking_SteamNetworking004_SendP2PPacket_params struct ISteamNetworking_SteamNetworking004_IsP2PPacketAvailable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *pcubMsgSize; int32_t nVirtualPort; @@ -40766,7 +40766,7 @@ struct ISteamNetworking_SteamNetworking004_IsP2PPacketAvailable_params struct ISteamNetworking_SteamNetworking004_ReadP2PPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *pubDest; uint32_t cubDest; @@ -40777,21 +40777,21 @@ struct ISteamNetworking_SteamNetworking004_ReadP2PPacket_params struct ISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking004_GetP2PSessionState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDRemote; P2PSessionState_t *pConnectionState; @@ -40799,7 +40799,7 @@ struct ISteamNetworking_SteamNetworking004_GetP2PSessionState_params struct ISteamNetworking_SteamNetworking004_CreateListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nVirtualP2PPort; uint32_t nIP; @@ -40809,7 +40809,7 @@ struct ISteamNetworking_SteamNetworking004_CreateListenSocket_params struct ISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDTarget; int32_t nVirtualPort; @@ -40819,7 +40819,7 @@ struct ISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket_params struct ISteamNetworking_SteamNetworking004_CreateConnectionSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t nIP; uint16_t nPort; @@ -40828,7 +40828,7 @@ struct ISteamNetworking_SteamNetworking004_CreateConnectionSocket_params struct ISteamNetworking_SteamNetworking004_DestroySocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -40836,7 +40836,7 @@ struct ISteamNetworking_SteamNetworking004_DestroySocket_params struct ISteamNetworking_SteamNetworking004_DestroyListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -40844,7 +40844,7 @@ struct ISteamNetworking_SteamNetworking004_DestroyListenSocket_params struct ISteamNetworking_SteamNetworking004_SendDataOnSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; void *pubData; @@ -40854,7 +40854,7 @@ struct ISteamNetworking_SteamNetworking004_SendDataOnSocket_params struct ISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; uint32_t *pcubMsgSize; @@ -40862,7 +40862,7 @@ struct ISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket_params struct ISteamNetworking_SteamNetworking004_RetrieveDataFromSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; void *pubDest; @@ -40872,7 +40872,7 @@ struct ISteamNetworking_SteamNetworking004_RetrieveDataFromSocket_params struct ISteamNetworking_SteamNetworking004_IsDataAvailable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pcubMsgSize; @@ -40881,7 +40881,7 @@ struct ISteamNetworking_SteamNetworking004_IsDataAvailable_params struct ISteamNetworking_SteamNetworking004_RetrieveData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hListenSocket; void *pubDest; @@ -40892,7 +40892,7 @@ struct ISteamNetworking_SteamNetworking004_RetrieveData_params struct ISteamNetworking_SteamNetworking004_GetSocketInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; CSteamID *pSteamIDRemote; @@ -40903,7 +40903,7 @@ struct ISteamNetworking_SteamNetworking004_GetSocketInfo_params struct ISteamNetworking_SteamNetworking004_GetListenSocketInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pnIP; @@ -40912,21 +40912,21 @@ struct ISteamNetworking_SteamNetworking004_GetListenSocketInfo_params struct ISteamNetworking_SteamNetworking004_GetSocketConnectionType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hSocket; }; struct ISteamNetworking_SteamNetworking004_GetMaxPacketSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hSocket; }; struct ISteamNetworking_SteamNetworking005_SendP2PPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDRemote; const void *pubData; @@ -40937,7 +40937,7 @@ struct ISteamNetworking_SteamNetworking005_SendP2PPacket_params struct ISteamNetworking_SteamNetworking005_IsP2PPacketAvailable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *pcubMsgSize; int32_t nChannel; @@ -40945,7 +40945,7 @@ struct ISteamNetworking_SteamNetworking005_IsP2PPacketAvailable_params struct ISteamNetworking_SteamNetworking005_ReadP2PPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *pubDest; uint32_t cubDest; @@ -40956,21 +40956,21 @@ struct ISteamNetworking_SteamNetworking005_ReadP2PPacket_params struct ISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDRemote; int32_t nChannel; @@ -40978,7 +40978,7 @@ struct ISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser_params struct ISteamNetworking_SteamNetworking005_GetP2PSessionState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDRemote; P2PSessionState_t *pConnectionState; @@ -40986,14 +40986,14 @@ struct ISteamNetworking_SteamNetworking005_GetP2PSessionState_params struct ISteamNetworking_SteamNetworking005_AllowP2PPacketRelay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bAllow; }; struct ISteamNetworking_SteamNetworking005_CreateListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nVirtualP2PPort; uint32_t nIP; @@ -41003,7 +41003,7 @@ struct ISteamNetworking_SteamNetworking005_CreateListenSocket_params struct ISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDTarget; int32_t nVirtualPort; @@ -41013,7 +41013,7 @@ struct ISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket_params struct ISteamNetworking_SteamNetworking005_CreateConnectionSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t nIP; uint16_t nPort; @@ -41022,7 +41022,7 @@ struct ISteamNetworking_SteamNetworking005_CreateConnectionSocket_params struct ISteamNetworking_SteamNetworking005_DestroySocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -41030,7 +41030,7 @@ struct ISteamNetworking_SteamNetworking005_DestroySocket_params struct ISteamNetworking_SteamNetworking005_DestroyListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -41038,7 +41038,7 @@ struct ISteamNetworking_SteamNetworking005_DestroyListenSocket_params struct ISteamNetworking_SteamNetworking005_SendDataOnSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; void *pubData; @@ -41048,7 +41048,7 @@ struct ISteamNetworking_SteamNetworking005_SendDataOnSocket_params struct ISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; uint32_t *pcubMsgSize; @@ -41056,7 +41056,7 @@ struct ISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket_params struct ISteamNetworking_SteamNetworking005_RetrieveDataFromSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; void *pubDest; @@ -41066,7 +41066,7 @@ struct ISteamNetworking_SteamNetworking005_RetrieveDataFromSocket_params struct ISteamNetworking_SteamNetworking005_IsDataAvailable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pcubMsgSize; @@ -41075,7 +41075,7 @@ struct ISteamNetworking_SteamNetworking005_IsDataAvailable_params struct ISteamNetworking_SteamNetworking005_RetrieveData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hListenSocket; void *pubDest; @@ -41086,7 +41086,7 @@ struct ISteamNetworking_SteamNetworking005_RetrieveData_params struct ISteamNetworking_SteamNetworking005_GetSocketInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; CSteamID *pSteamIDRemote; @@ -41097,7 +41097,7 @@ struct ISteamNetworking_SteamNetworking005_GetSocketInfo_params struct ISteamNetworking_SteamNetworking005_GetListenSocketInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pnIP; @@ -41106,21 +41106,21 @@ struct ISteamNetworking_SteamNetworking005_GetListenSocketInfo_params struct ISteamNetworking_SteamNetworking005_GetSocketConnectionType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hSocket; }; struct ISteamNetworking_SteamNetworking005_GetMaxPacketSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hSocket; }; struct ISteamNetworking_SteamNetworking006_SendP2PPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDRemote; const void *pubData; @@ -41131,7 +41131,7 @@ struct ISteamNetworking_SteamNetworking006_SendP2PPacket_params struct ISteamNetworking_SteamNetworking006_IsP2PPacketAvailable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *pcubMsgSize; int32_t nChannel; @@ -41139,7 +41139,7 @@ struct ISteamNetworking_SteamNetworking006_IsP2PPacketAvailable_params struct ISteamNetworking_SteamNetworking006_ReadP2PPacket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *pubDest; uint32_t cubDest; @@ -41150,21 +41150,21 @@ struct ISteamNetworking_SteamNetworking006_ReadP2PPacket_params struct ISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDRemote; }; struct ISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDRemote; int32_t nChannel; @@ -41172,7 +41172,7 @@ struct ISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser_params struct ISteamNetworking_SteamNetworking006_GetP2PSessionState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; CSteamID steamIDRemote; P2PSessionState_t *pConnectionState; @@ -41180,14 +41180,14 @@ struct ISteamNetworking_SteamNetworking006_GetP2PSessionState_params struct ISteamNetworking_SteamNetworking006_AllowP2PPacketRelay_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int8_t bAllow; }; struct ISteamNetworking_SteamNetworking006_CreateListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nVirtualP2PPort; SteamIPAddress_t nIP; @@ -41197,7 +41197,7 @@ struct ISteamNetworking_SteamNetworking006_CreateListenSocket_params struct ISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamIDTarget; int32_t nVirtualPort; @@ -41207,7 +41207,7 @@ struct ISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket_params struct ISteamNetworking_SteamNetworking006_CreateConnectionSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamIPAddress_t nIP; uint16_t nPort; @@ -41216,7 +41216,7 @@ struct ISteamNetworking_SteamNetworking006_CreateConnectionSocket_params struct ISteamNetworking_SteamNetworking006_DestroySocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -41224,7 +41224,7 @@ struct ISteamNetworking_SteamNetworking006_DestroySocket_params struct ISteamNetworking_SteamNetworking006_DestroyListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; int8_t bNotifyRemoteEnd; @@ -41232,7 +41232,7 @@ struct ISteamNetworking_SteamNetworking006_DestroyListenSocket_params struct ISteamNetworking_SteamNetworking006_SendDataOnSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; void *pubData; @@ -41242,7 +41242,7 @@ struct ISteamNetworking_SteamNetworking006_SendDataOnSocket_params struct ISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; uint32_t *pcubMsgSize; @@ -41250,7 +41250,7 @@ struct ISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket_params struct ISteamNetworking_SteamNetworking006_RetrieveDataFromSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; void *pubDest; @@ -41260,7 +41260,7 @@ struct ISteamNetworking_SteamNetworking006_RetrieveDataFromSocket_params struct ISteamNetworking_SteamNetworking006_IsDataAvailable_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hListenSocket; uint32_t *pcubMsgSize; @@ -41269,7 +41269,7 @@ struct ISteamNetworking_SteamNetworking006_IsDataAvailable_params struct ISteamNetworking_SteamNetworking006_RetrieveData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hListenSocket; void *pubDest; @@ -41280,7 +41280,7 @@ struct ISteamNetworking_SteamNetworking006_RetrieveData_params struct ISteamNetworking_SteamNetworking006_GetSocketInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; CSteamID *pSteamIDRemote; @@ -41291,7 +41291,7 @@ struct ISteamNetworking_SteamNetworking006_GetSocketInfo_params struct ISteamNetworking_SteamNetworking006_GetListenSocketInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hListenSocket; SteamIPAddress_t *pnIP; @@ -41300,26 +41300,26 @@ struct ISteamNetworking_SteamNetworking006_GetListenSocketInfo_params struct ISteamNetworking_SteamNetworking006_GetSocketConnectionType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hSocket; }; struct ISteamNetworking_SteamNetworking006_GetMaxPacketSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hSocket; }; struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_DestroyFakeUDPPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIPAddr *remoteAddress; const void *pData; @@ -41329,7 +41329,7 @@ struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFa struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; w_SteamNetworkingMessage_t_153a **ppOutMessages; int32_t nMaxMessages; @@ -41337,13 +41337,13 @@ struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const SteamNetworkingIPAddr *remoteAddress; }; struct ISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityRemote; const void *pubData; @@ -41354,7 +41354,7 @@ struct ISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser_par struct ISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChannel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t nLocalChannel; w_SteamNetworkingMessage_t_153a **ppOutMessages; @@ -41363,21 +41363,21 @@ struct ISteamNetworkingMessages_SteamNetworkingMessages002_ReceiveMessagesOnChan struct ISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const SteamNetworkingIdentity_144 *identityRemote; }; struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const SteamNetworkingIdentity_144 *identityRemote; }; struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const SteamNetworkingIdentity_144 *identityRemote; int32_t nLocalChannel; @@ -41385,7 +41385,7 @@ struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser_ struct ISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityRemote; SteamNetConnectionInfo_t_153a *pConnectionInfo; @@ -41394,28 +41394,28 @@ struct ISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionI struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIPAddr *localAddress; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIPAddr *address; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nVirtualPort; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityRemote; int32_t nVirtualPort; @@ -41423,14 +41423,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P_params struct ISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPeer; int32_t nReason; @@ -41440,14 +41440,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection_params struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPeer; int64_t nUserData; @@ -41455,21 +41455,21 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData_p struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; uint32_t hPeer; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hPeer; const char *pszName; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPeer; char *pszName; @@ -41478,7 +41478,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName_param struct ISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; const void *pData; @@ -41488,14 +41488,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection struct ISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hConn; w_SteamNetworkingMessage_t_144 **ppOutMessages; @@ -41504,7 +41504,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnConnec struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hSocket; w_SteamNetworkingMessage_t_144 **ppOutMessages; @@ -41513,7 +41513,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceiveMessagesOnListen struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hConn; SteamNetConnectionInfo_t_144 *pInfo; @@ -41521,7 +41521,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo_param struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hConn; SteamNetworkingQuickConnectionStatus *pStats; @@ -41529,7 +41529,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatu struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hConn; char *pszBuf; @@ -41538,7 +41538,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionSt struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; SteamNetworkingIPAddr *address; @@ -41546,7 +41546,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress_ struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *pOutConnection1; uint32_t *pOutConnection2; @@ -41557,14 +41557,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair_params struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pvTicket; int32_t cbTicket; @@ -41573,7 +41573,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket struct ISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const SteamNetworkingIdentity_144 *identityGameServer; int32_t nVirtualPort; @@ -41582,7 +41582,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForS struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityTarget; int32_t nVirtualPort; @@ -41590,54 +41590,54 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicate struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; SteamDatagramHostedAddress *pRouting; }; struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nVirtualPort; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIPAddr *localAddress; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIPAddr *address; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nVirtualPort; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityRemote; int32_t nVirtualPort; @@ -41645,14 +41645,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P_params struct ISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPeer; int32_t nReason; @@ -41662,14 +41662,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection_params struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPeer; int64_t nUserData; @@ -41677,21 +41677,21 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData_p struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; uint32_t hPeer; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hPeer; const char *pszName; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPeer; char *pszName; @@ -41700,7 +41700,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName_param struct ISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; const void *pData; @@ -41710,14 +41710,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection struct ISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hConn; w_SteamNetworkingMessage_t_144 **ppOutMessages; @@ -41726,7 +41726,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnConnec struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hSocket; w_SteamNetworkingMessage_t_144 **ppOutMessages; @@ -41735,7 +41735,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceiveMessagesOnListen struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hConn; SteamNetConnectionInfo_t_144 *pInfo; @@ -41743,7 +41743,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo_param struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hConn; SteamNetworkingQuickConnectionStatus *pStats; @@ -41751,7 +41751,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatu struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hConn; char *pszBuf; @@ -41760,7 +41760,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionSt struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; SteamNetworkingIPAddr *address; @@ -41768,7 +41768,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress_ struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *pOutConnection1; uint32_t *pOutConnection2; @@ -41779,27 +41779,27 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair_params struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamNetAuthenticationStatus_t *pDetails; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pvTicket; int32_t cbTicket; @@ -41808,7 +41808,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket struct ISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const SteamNetworkingIdentity_144 *identityGameServer; int32_t nVirtualPort; @@ -41817,7 +41817,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForS struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityTarget; int32_t nVirtualPort; @@ -41825,33 +41825,33 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicate struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamDatagramHostedAddress *pRouting; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nVirtualPort; }; struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamDatagramGameCoordinatorServerLogin *pLoginInfo; int32_t *pcbSignedBlob; @@ -41860,7 +41860,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServe struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIPAddr *localAddress; int32_t nOptions; @@ -41869,7 +41869,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP_pa struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIPAddr *address; int32_t nOptions; @@ -41878,7 +41878,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress_para struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nVirtualPort; int32_t nOptions; @@ -41887,7 +41887,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P_p struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityRemote; int32_t nVirtualPort; @@ -41897,14 +41897,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P_params struct ISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPeer; int32_t nReason; @@ -41914,14 +41914,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection_params struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPeer; int64_t nUserData; @@ -41929,21 +41929,21 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData_p struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; uint32_t hPeer; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hPeer; const char *pszName; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPeer; char *pszName; @@ -41952,7 +41952,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName_param struct ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; const void *pData; @@ -41963,7 +41963,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection struct ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t nMessages; w_SteamNetworkingMessage_t_147 **pMessages; int64_t *pOutMessageNumberOrResult; @@ -41971,14 +41971,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessages_params struct ISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hConn; w_SteamNetworkingMessage_t_147 **ppOutMessages; @@ -41987,7 +41987,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnConnec struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hSocket; w_SteamNetworkingMessage_t_147 **ppOutMessages; @@ -41996,7 +41996,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceiveMessagesOnListen struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hConn; SteamNetConnectionInfo_t_144 *pInfo; @@ -42004,7 +42004,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo_param struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hConn; SteamNetworkingQuickConnectionStatus *pStats; @@ -42012,7 +42012,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatu struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hConn; char *pszBuf; @@ -42021,7 +42021,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionSt struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; SteamNetworkingIPAddr *address; @@ -42029,7 +42029,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress_ struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *pOutConnection1; uint32_t *pOutConnection2; @@ -42040,27 +42040,27 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair_params struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamNetAuthenticationStatus_t *pDetails; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pvTicket; int32_t cbTicket; @@ -42069,7 +42069,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket struct ISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const SteamNetworkingIdentity_144 *identityGameServer; int32_t nVirtualPort; @@ -42078,7 +42078,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForS struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityTarget; int32_t nVirtualPort; @@ -42088,26 +42088,26 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicate struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamDatagramHostedAddress *pRouting; }; struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nVirtualPort; int32_t nOptions; @@ -42116,7 +42116,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedSe struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamDatagramGameCoordinatorServerLogin *pLoginInfo; int32_t *pcbSignedBlob; @@ -42125,7 +42125,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServe struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; w_ISteamNetworkingConnectionCustomSignaling *pSignaling; const SteamNetworkingIdentity_144 *pPeerIdentity; @@ -42135,7 +42135,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignali struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pMsg; int32_t cbMsg; @@ -42144,7 +42144,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIPAddr *localAddress; int32_t nOptions; @@ -42153,7 +42153,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP_pa struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIPAddr *address; int32_t nOptions; @@ -42162,7 +42162,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress_para struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nVirtualPort; int32_t nOptions; @@ -42171,7 +42171,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P_p struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityRemote; int32_t nVirtualPort; @@ -42181,14 +42181,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P_params struct ISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPeer; int32_t nReason; @@ -42198,14 +42198,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection_params struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPeer; int64_t nUserData; @@ -42213,21 +42213,21 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData_p struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; uint32_t hPeer; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hPeer; const char *pszName; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPeer; char *pszName; @@ -42236,7 +42236,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName_param struct ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; const void *pData; @@ -42247,7 +42247,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection struct ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t nMessages; w_SteamNetworkingMessage_t_147 *const *pMessages; int64_t *pOutMessageNumberOrResult; @@ -42255,14 +42255,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessages_params struct ISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hConn; w_SteamNetworkingMessage_t_147 **ppOutMessages; @@ -42271,7 +42271,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnConnec struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hConn; SteamNetConnectionInfo_t_144 *pInfo; @@ -42279,7 +42279,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo_param struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hConn; SteamNetworkingQuickConnectionStatus *pStats; @@ -42287,7 +42287,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatu struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hConn; char *pszBuf; @@ -42296,7 +42296,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionSt struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; SteamNetworkingIPAddr *address; @@ -42304,7 +42304,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress_ struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *pOutConnection1; uint32_t *pOutConnection2; @@ -42315,40 +42315,40 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair_params struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamNetAuthenticationStatus_t *pDetails; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPollGroup; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hConn; uint32_t hPollGroup; @@ -42356,7 +42356,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup_ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hPollGroup; w_SteamNetworkingMessage_t_147 **ppOutMessages; @@ -42365,7 +42365,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceiveMessagesOnPollGr struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pvTicket; int32_t cbTicket; @@ -42374,7 +42374,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket struct ISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const SteamNetworkingIdentity_144 *identityGameServer; int32_t nVirtualPort; @@ -42383,7 +42383,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForS struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityTarget; int32_t nVirtualPort; @@ -42393,26 +42393,26 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicate struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamDatagramHostedAddress *pRouting; }; struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nVirtualPort; int32_t nOptions; @@ -42421,7 +42421,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedSe struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamDatagramGameCoordinatorServerLogin *pLoginInfo; int32_t *pcbSignedBlob; @@ -42430,7 +42430,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServe struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; w_ISteamNetworkingConnectionCustomSignaling *pSignaling; const SteamNetworkingIdentity_144 *pPeerIdentity; @@ -42440,7 +42440,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignali struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pMsg; int32_t cbMsg; @@ -42449,7 +42449,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pcbBlob; void *pBlob; @@ -42458,7 +42458,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest_p struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pCertificate; int32_t cbCertificate; @@ -42467,7 +42467,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate_params struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIPAddr *localAddress; int32_t nOptions; @@ -42476,7 +42476,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP_pa struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIPAddr *address; int32_t nOptions; @@ -42485,7 +42485,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress_para struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nLocalVirtualPort; int32_t nOptions; @@ -42494,7 +42494,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P_p struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityRemote; int32_t nRemoteVirtualPort; @@ -42504,14 +42504,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P_params struct ISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPeer; int32_t nReason; @@ -42521,14 +42521,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection_params struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPeer; int64_t nUserData; @@ -42536,21 +42536,21 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData_p struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; uint32_t hPeer; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hPeer; const char *pszName; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPeer; char *pszName; @@ -42559,7 +42559,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName_param struct ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; const void *pData; @@ -42570,7 +42570,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection struct ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t nMessages; w_SteamNetworkingMessage_t_147 *const *pMessages; int64_t *pOutMessageNumberOrResult; @@ -42578,14 +42578,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessages_params struct ISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hConn; w_SteamNetworkingMessage_t_147 **ppOutMessages; @@ -42594,7 +42594,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnConnec struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hConn; SteamNetConnectionInfo_t_144 *pInfo; @@ -42602,7 +42602,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo_param struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hConn; SteamNetworkingQuickConnectionStatus *pStats; @@ -42610,7 +42610,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatu struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hConn; char *pszBuf; @@ -42619,7 +42619,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionSt struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; SteamNetworkingIPAddr *address; @@ -42627,7 +42627,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress_ struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *pOutConnection1; uint32_t *pOutConnection2; @@ -42638,40 +42638,40 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair_params struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamNetAuthenticationStatus_t *pDetails; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPollGroup; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hConn; uint32_t hPollGroup; @@ -42679,7 +42679,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup_ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hPollGroup; w_SteamNetworkingMessage_t_147 **ppOutMessages; @@ -42688,7 +42688,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceiveMessagesOnPollGr struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pvTicket; int32_t cbTicket; @@ -42697,7 +42697,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket struct ISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const SteamNetworkingIdentity_144 *identityGameServer; int32_t nRemoteVirtualPort; @@ -42706,7 +42706,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForS struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityTarget; int32_t nRemoteVirtualPort; @@ -42716,26 +42716,26 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicate struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamDatagramHostedAddress *pRouting; }; struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nLocalVirtualPort; int32_t nOptions; @@ -42744,7 +42744,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedSe struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamDatagramGameCoordinatorServerLogin *pLoginInfo; int32_t *pcbSignedBlob; @@ -42753,7 +42753,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServe struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void /*ISteamNetworkingConnectionSignaling*/ *pSignaling; const SteamNetworkingIdentity_144 *pPeerIdentity; @@ -42764,7 +42764,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignali struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pMsg; int32_t cbMsg; @@ -42773,7 +42773,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pcbBlob; void *pBlob; @@ -42782,7 +42782,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest_p struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pCertificate; int32_t cbCertificate; @@ -42791,12 +42791,12 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate_params struct ISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIPAddr *localAddress; int32_t nOptions; @@ -42805,7 +42805,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP_pa struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIPAddr *address; int32_t nOptions; @@ -42814,7 +42814,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress_para struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nLocalVirtualPort; int32_t nOptions; @@ -42823,7 +42823,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P_p struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityRemote; int32_t nRemoteVirtualPort; @@ -42833,14 +42833,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P_params struct ISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPeer; int32_t nReason; @@ -42850,14 +42850,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection_params struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPeer; int64_t nUserData; @@ -42865,21 +42865,21 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData_p struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; uint32_t hPeer; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hPeer; const char *pszName; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPeer; char *pszName; @@ -42888,7 +42888,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName_param struct ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; const void *pData; @@ -42899,7 +42899,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection struct ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t nMessages; w_SteamNetworkingMessage_t_153a *const *pMessages; int64_t *pOutMessageNumberOrResult; @@ -42907,14 +42907,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessages_params struct ISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hConn; w_SteamNetworkingMessage_t_153a **ppOutMessages; @@ -42923,7 +42923,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnConnec struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hConn; SteamNetConnectionInfo_t_153a *pInfo; @@ -42931,7 +42931,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo_param struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; SteamNetConnectionRealTimeStatus_t *pStatus; @@ -42941,7 +42941,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeSt struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hConn; char *pszBuf; @@ -42950,7 +42950,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionSt struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hSocket; SteamNetworkingIPAddr *address; @@ -42958,7 +42958,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress_ struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *pOutConnection1; uint32_t *pOutConnection2; @@ -42969,7 +42969,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair_params struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; int32_t nNumLanes; @@ -42979,40 +42979,40 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLane struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamNetAuthenticationStatus_t *pDetails; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hPollGroup; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t hConn; uint32_t hPollGroup; @@ -43020,7 +43020,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup_ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGroup_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t hPollGroup; w_SteamNetworkingMessage_t_153a **ppOutMessages; @@ -43029,7 +43029,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceiveMessagesOnPollGr struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pvTicket; int32_t cbTicket; @@ -43038,7 +43038,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket struct ISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const SteamNetworkingIdentity_144 *identityGameServer; int32_t nRemoteVirtualPort; @@ -43047,7 +43047,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForS struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIdentity_144 *identityTarget; int32_t nRemoteVirtualPort; @@ -43057,26 +43057,26 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicate struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint16_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamDatagramHostedAddress *pRouting; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t nLocalVirtualPort; int32_t nOptions; @@ -43085,7 +43085,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedSe struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamDatagramGameCoordinatorServerLogin *pLoginInfo; int32_t *pcbSignedBlob; @@ -43094,7 +43094,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServe struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void /*ISteamNetworkingConnectionSignaling*/ *pSignaling; const SteamNetworkingIdentity_144 *pPeerIdentity; @@ -43105,7 +43105,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignali struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pMsg; int32_t cbMsg; @@ -43114,7 +43114,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t *pcbBlob; void *pBlob; @@ -43123,7 +43123,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest_p struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const void *pCertificate; int32_t cbCertificate; @@ -43132,32 +43132,32 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate_params struct ISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const SteamNetworkingIdentity_144 *pIdentity; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t nNumPorts; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t idxFirstPort; SteamNetworkingFakeIPResult_t *pInfo; }; struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int32_t idxFakePort; int32_t nOptions; @@ -43166,7 +43166,7 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFa struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t hConn; SteamNetworkingIPAddr *pOutAddr; @@ -43174,14 +43174,14 @@ struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConne struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void /*ISteamNetworkingFakeUDPPort*/ *_ret; int32_t idxFakeServerPort; }; struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDRemote; uint32_t unConnectionIDSrc; const void *pMsgRendezvous; @@ -43190,7 +43190,7 @@ struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_Sen struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDRemote; uint32_t unConnectionIDDest; uint32_t nReason; @@ -43199,13 +43199,13 @@ struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_Sen struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *buf; uint32_t cbBuf; @@ -43213,20 +43213,20 @@ struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_Get struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const void *pTicket; uint32_t cbTicket; }; struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t idxTicket; void *buf; @@ -43235,14 +43235,14 @@ struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_Get struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const void *pMsg; uint32_t cbMsg; }; struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDRemote; uint32_t unConnectionIDSrc; const void *pMsgRendezvous; @@ -43251,7 +43251,7 @@ struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_Sen struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDRemote; uint32_t unConnectionIDDest; uint32_t nReason; @@ -43260,13 +43260,13 @@ struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_Sen struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *buf; uint32_t cbBuf; @@ -43275,20 +43275,20 @@ struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_Get struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const void *pTicket; uint32_t cbTicket; }; struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t idxTicket; void *buf; @@ -43297,21 +43297,21 @@ struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_Get struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const void *pMsg; uint32_t cbMsg; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; float _ret; SteamNetworkPingLocation_t *result; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const SteamNetworkPingLocation_t *location1; const SteamNetworkPingLocation_t *location2; @@ -43319,14 +43319,14 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoL struct ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const SteamNetworkPingLocation_t *remoteLocation; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const SteamNetworkPingLocation_t *location; char *pszBuf; int32_t cchBufSize; @@ -43334,7 +43334,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString struct ISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pszString; SteamNetworkPingLocation_t *result; @@ -43342,20 +43342,20 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString_par struct ISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; float flMaxAgeSeconds; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t popID; uint32_t *pViaRelayPoP; @@ -43363,20 +43363,20 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter_params struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t popID; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t *list; int32_t nListSz; @@ -43384,20 +43384,20 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList_params struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eDetailLevel; void (*W_CDECL pfnFunc)(uint32_t, const char *); }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eValue; uint32_t eScopeType; @@ -43408,7 +43408,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t eValue; uint32_t eScopeType; @@ -43420,7 +43420,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eValue; const char **pOutName; @@ -43431,13 +43431,13 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo_params struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const SteamNetworkingIPAddr *addr; char *buf; uint32_t cbBuf; @@ -43446,7 +43446,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToStr struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; SteamNetworkingIPAddr *pAddr; const char *pszStr; @@ -43454,7 +43454,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_Parse struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const SteamNetworkingIdentity_144 *identity; char *buf; uint32_t cbBuf; @@ -43462,7 +43462,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToS struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; const char *pszStr; @@ -43470,21 +43470,21 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_Par struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamRelayNetworkStatus_t *pDetails; }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; float _ret; SteamNetworkPingLocation_t *result; }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const SteamNetworkPingLocation_t *location1; const SteamNetworkPingLocation_t *location2; @@ -43492,14 +43492,14 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoL struct ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const SteamNetworkPingLocation_t *remoteLocation; }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const SteamNetworkPingLocation_t *location; char *pszBuf; int32_t cchBufSize; @@ -43507,7 +43507,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString struct ISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pszString; SteamNetworkPingLocation_t *result; @@ -43515,14 +43515,14 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString_par struct ISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; float flMaxAgeSeconds; }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t popID; uint32_t *pViaRelayPoP; @@ -43530,20 +43530,20 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter_params struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t popID; }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t *list; int32_t nListSz; @@ -43551,20 +43551,20 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList_params struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eDetailLevel; void (*W_CDECL pfnFunc)(uint32_t, const char *); }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eValue; uint32_t eScopeType; @@ -43575,7 +43575,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t eValue; uint32_t eScopeType; @@ -43587,7 +43587,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eValue; const char **pOutName; @@ -43598,13 +43598,13 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo_params struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const SteamNetworkingIPAddr *addr; char *buf; uint32_t cbBuf; @@ -43613,7 +43613,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToStr struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; SteamNetworkingIPAddr *pAddr; const char *pszStr; @@ -43621,7 +43621,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_Parse struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const SteamNetworkingIdentity_144 *identity; char *buf; uint32_t cbBuf; @@ -43629,7 +43629,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToS struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; const char *pszStr; @@ -43637,28 +43637,28 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_Par struct ISteamNetworkingUtils_SteamNetworkingUtils003_AllocateMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; w_SteamNetworkingMessage_t_147 *_ret; int32_t cbAllocateBuffer; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamRelayNetworkStatus_t *pDetails; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; float _ret; SteamNetworkPingLocation_t *result; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const SteamNetworkPingLocation_t *location1; const SteamNetworkPingLocation_t *location2; @@ -43666,14 +43666,14 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoL struct ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const SteamNetworkPingLocation_t *remoteLocation; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const SteamNetworkPingLocation_t *location; char *pszBuf; int32_t cchBufSize; @@ -43681,7 +43681,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString struct ISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pszString; SteamNetworkPingLocation_t *result; @@ -43689,14 +43689,14 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString_par struct ISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; float flMaxAgeSeconds; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t popID; uint32_t *pViaRelayPoP; @@ -43704,20 +43704,20 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter_params struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t popID; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t *list; int32_t nListSz; @@ -43725,20 +43725,20 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList_params struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eDetailLevel; void (*W_CDECL pfnFunc)(uint32_t, const char *); }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eValue; uint32_t eScopeType; @@ -43749,7 +43749,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t eValue; uint32_t eScopeType; @@ -43761,7 +43761,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eValue; const char **pOutName; @@ -43772,13 +43772,13 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo_params struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const SteamNetworkingIPAddr *addr; char *buf; uint32_t cbBuf; @@ -43787,7 +43787,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToStr struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; SteamNetworkingIPAddr *pAddr; const char *pszStr; @@ -43795,7 +43795,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_Parse struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const SteamNetworkingIdentity_144 *identity; char *buf; uint32_t cbBuf; @@ -43803,7 +43803,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToS struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; const char *pszStr; @@ -43811,28 +43811,28 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_Par struct ISteamNetworkingUtils_SteamNetworkingUtils004_AllocateMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; w_SteamNetworkingMessage_t_153a *_ret; int32_t cbAllocateBuffer; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; SteamRelayNetworkStatus_t *pDetails; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; float _ret; SteamNetworkPingLocation_t *result; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const SteamNetworkPingLocation_t *location1; const SteamNetworkPingLocation_t *location2; @@ -43840,14 +43840,14 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoL struct ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; const SteamNetworkPingLocation_t *remoteLocation; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const SteamNetworkPingLocation_t *location; char *pszBuf; int32_t cchBufSize; @@ -43855,7 +43855,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString struct ISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pszString; SteamNetworkPingLocation_t *result; @@ -43863,14 +43863,14 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString_par struct ISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; float flMaxAgeSeconds; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t popID; uint32_t *pViaRelayPoP; @@ -43878,20 +43878,20 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter_params struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t popID; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t *list; int32_t nListSz; @@ -43899,27 +43899,27 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList_params struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int64_t _ret; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eDetailLevel; void (*W_CDECL pfnFunc)(uint32_t, const char *); }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t nIPv4; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIPAddr *fakeIP; SteamNetworkingIdentity_144 *pOutRealIdentity; @@ -43927,7 +43927,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP_pa struct ISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eValue; uint32_t eScopeType; @@ -43938,7 +43938,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t eValue; uint32_t eScopeType; @@ -43950,7 +43950,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue_params struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; uint32_t eValue; uint32_t *pOutDataType; @@ -43959,7 +43959,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo_params struct ISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t eCurrent; int8_t bEnumerateDevVars; @@ -43967,7 +43967,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfi struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const SteamNetworkingIPAddr *addr; char *buf; uint32_t cbBuf; @@ -43976,7 +43976,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToStr struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; SteamNetworkingIPAddr *pAddr; const char *pszStr; @@ -43984,14 +43984,14 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_Parse struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const SteamNetworkingIPAddr *addr; }; struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const SteamNetworkingIdentity_144 *identity; char *buf; uint32_t cbBuf; @@ -43999,7 +43999,7 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToS struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; SteamNetworkingIdentity_144 *pIdentity; const char *pszStr; @@ -44007,20 +44007,20 @@ struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_Par struct ISteamParties_SteamParties002_GetNumActiveBeacons_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamParties_SteamParties002_GetBeaconByIndex_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unIndex; }; struct ISteamParties_SteamParties002_GetBeaconDetails_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t ulBeaconID; CSteamID *pSteamIDBeaconOwner; @@ -44031,21 +44031,21 @@ struct ISteamParties_SteamParties002_GetBeaconDetails_params struct ISteamParties_SteamParties002_JoinParty_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t ulBeaconID; }; struct ISteamParties_SteamParties002_GetNumAvailableBeaconLocations_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *puNumLocations; }; struct ISteamParties_SteamParties002_GetAvailableBeaconLocations_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; w_SteamPartyBeaconLocation_t *pLocationList; uint32_t uMaxNumLocations; @@ -44053,7 +44053,7 @@ struct ISteamParties_SteamParties002_GetAvailableBeaconLocations_params struct ISteamParties_SteamParties002_CreateBeacon_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint32_t unOpenSlots; w_SteamPartyBeaconLocation_t *pBeaconLocation; @@ -44063,21 +44063,21 @@ struct ISteamParties_SteamParties002_CreateBeacon_params struct ISteamParties_SteamParties002_OnReservationCompleted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t ulBeacon; CSteamID steamIDUser; }; struct ISteamParties_SteamParties002_CancelReservation_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t ulBeacon; CSteamID steamIDUser; }; struct ISteamParties_SteamParties002_ChangeNumOpenSlots_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; uint64_t ulBeacon; uint32_t unOpenSlots; @@ -44085,14 +44085,14 @@ struct ISteamParties_SteamParties002_ChangeNumOpenSlots_params struct ISteamParties_SteamParties002_DestroyBeacon_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t ulBeacon; }; struct ISteamParties_SteamParties002_GetBeaconLocationData_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; w_SteamPartyBeaconLocation_t BeaconLocation; uint32_t eData; @@ -44102,81 +44102,81 @@ struct ISteamParties_SteamParties002_GetBeaconLocationData_params struct ISteamUser_SteamUser004_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser004_LogOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser004_LogOff_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser004_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser004_GetLogonState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser004_BConnected_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser004_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser004_IsVACBanned_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t nGameID; }; struct ISteamUser_SteamUser004_RequireShowVACBannedMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t nGameID; }; struct ISteamUser_SteamUser004_AcknowledgeVACBanning_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t nGameID; }; struct ISteamUser_SteamUser004_NClientGameIDAdd_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t nGameID; }; struct ISteamUser_SteamUser004_RemoveClientGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t nClientGameID; }; struct ISteamUser_SteamUser004_SetClientGameServer_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t nClientGameID; uint32_t unIPServer; uint16_t usPortServer; @@ -44184,28 +44184,28 @@ struct ISteamUser_SteamUser004_SetClientGameServer_params struct ISteamUser_SteamUser004_SetSteam2Ticket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint8_t *pubTicket; int32_t cubTicket; }; struct ISteamUser_SteamUser004_AddServerNetAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIP; uint16_t unPort; }; struct ISteamUser_SteamUser004_SetEmail_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchEmail; }; struct ISteamUser_SteamUser004_GetSteamGameConnectToken_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pBlob; int32_t cbMaxBlob; @@ -44213,7 +44213,7 @@ struct ISteamUser_SteamUser004_GetSteamGameConnectToken_params struct ISteamUser_SteamUser004_SetRegistryString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44222,7 +44222,7 @@ struct ISteamUser_SteamUser004_SetRegistryString_params struct ISteamUser_SteamUser004_GetRegistryString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44232,7 +44232,7 @@ struct ISteamUser_SteamUser004_GetRegistryString_params struct ISteamUser_SteamUser004_SetRegistryInt_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44241,7 +44241,7 @@ struct ISteamUser_SteamUser004_SetRegistryInt_params struct ISteamUser_SteamUser004_GetRegistryInt_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44250,7 +44250,7 @@ struct ISteamUser_SteamUser004_GetRegistryInt_params struct ISteamUser_SteamUser004_InitiateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pBlob; int32_t cbMaxBlob; @@ -44263,113 +44263,113 @@ struct ISteamUser_SteamUser004_InitiateGameConnection_params struct ISteamUser_SteamUser004_TerminateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser004_IsPrimaryChatDestination_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser004_RequestLegacyCDKey_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t iAppID; }; struct ISteamUser_SteamUser005_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser005_LogOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser005_LogOff_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser005_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser005_GetLogonState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser005_BConnected_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser005_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser005_IsVACBanned_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t nGameID; }; struct ISteamUser_SteamUser005_RequireShowVACBannedMessage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t nAppID; }; struct ISteamUser_SteamUser005_AcknowledgeVACBanning_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t nAppID; }; struct ISteamUser_SteamUser005_SetSteam2Ticket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint8_t *pubTicket; int32_t cubTicket; }; struct ISteamUser_SteamUser005_AddServerNetAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIP; uint16_t unPort; }; struct ISteamUser_SteamUser005_SetEmail_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchEmail; }; struct ISteamUser_SteamUser005_SetRegistryString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44378,7 +44378,7 @@ struct ISteamUser_SteamUser005_SetRegistryString_params struct ISteamUser_SteamUser005_GetRegistryString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44388,7 +44388,7 @@ struct ISteamUser_SteamUser005_GetRegistryString_params struct ISteamUser_SteamUser005_SetRegistryInt_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44397,7 +44397,7 @@ struct ISteamUser_SteamUser005_SetRegistryInt_params struct ISteamUser_SteamUser005_GetRegistryInt_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44406,7 +44406,7 @@ struct ISteamUser_SteamUser005_GetRegistryInt_params struct ISteamUser_SteamUser005_InitiateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pBlob; int32_t cbMaxBlob; @@ -44419,31 +44419,31 @@ struct ISteamUser_SteamUser005_InitiateGameConnection_params struct ISteamUser_SteamUser005_TerminateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser005_IsPrimaryChatDestination_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser005_RequestLegacyCDKey_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t nAppID; }; struct ISteamUser_SteamUser005_SendGuestPassByEmail_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchEmailAccount; uint64_t gidGuestPassID; @@ -44452,7 +44452,7 @@ struct ISteamUser_SteamUser005_SendGuestPassByEmail_params struct ISteamUser_SteamUser005_SendGuestPassByAccountID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t uAccountID; uint64_t gidGuestPassID; @@ -44461,39 +44461,39 @@ struct ISteamUser_SteamUser005_SendGuestPassByAccountID_params struct ISteamUser_SteamUser005_AckGuestPass_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchGuestPassCode; }; struct ISteamUser_SteamUser005_RedeemGuestPass_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchGuestPassCode; }; struct ISteamUser_SteamUser005_GetGuestPassToGiveCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser005_GetGuestPassToRedeemCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser005_GetGuestPassLastUpdateTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser005_GetGuestPassToGiveInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nPassIndex; uint64_t *pgidGuestPassID; @@ -44508,7 +44508,7 @@ struct ISteamUser_SteamUser005_GetGuestPassToGiveInfo_params struct ISteamUser_SteamUser005_GetGuestPassToRedeemInfo_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nPassIndex; uint64_t *pgidGuestPassID; @@ -44521,7 +44521,7 @@ struct ISteamUser_SteamUser005_GetGuestPassToRedeemInfo_params struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nPassIndex; char *pchSenderAddress; @@ -44530,7 +44530,7 @@ struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress_params struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t nPassIndex; char *pchSenderName; @@ -44539,20 +44539,20 @@ struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderName_params struct ISteamUser_SteamUser005_AcknowledgeMessageByGID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchMessageGID; }; struct ISteamUser_SteamUser005_SetLanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; const char *pchLanguage; }; struct ISteamUser_SteamUser005_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -44560,54 +44560,54 @@ struct ISteamUser_SteamUser005_TrackAppUsageEvent_params struct ISteamUser_SteamUser005_SetAccountName_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchAccountName; }; struct ISteamUser_SteamUser005_SetPassword_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *pchPassword; }; struct ISteamUser_SteamUser005_SetAccountCreationTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t rt; }; struct ISteamUser_SteamUser006_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser006_LogOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser006_LogOff_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser006_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser006_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser006_SetRegistryString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44616,7 +44616,7 @@ struct ISteamUser_SteamUser006_SetRegistryString_params struct ISteamUser_SteamUser006_GetRegistryString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44626,7 +44626,7 @@ struct ISteamUser_SteamUser006_GetRegistryString_params struct ISteamUser_SteamUser006_SetRegistryInt_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44635,7 +44635,7 @@ struct ISteamUser_SteamUser006_SetRegistryInt_params struct ISteamUser_SteamUser006_GetRegistryInt_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44644,7 +44644,7 @@ struct ISteamUser_SteamUser006_GetRegistryInt_params struct ISteamUser_SteamUser006_InitiateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pBlob; int32_t cbMaxBlob; @@ -44657,14 +44657,14 @@ struct ISteamUser_SteamUser006_InitiateGameConnection_params struct ISteamUser_SteamUser006_TerminateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser006_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -44672,36 +44672,36 @@ struct ISteamUser_SteamUser006_TrackAppUsageEvent_params struct ISteamUser_SteamUser007_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser007_LogOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser007_LogOff_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser007_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser007_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser007_SetRegistryString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44710,7 +44710,7 @@ struct ISteamUser_SteamUser007_SetRegistryString_params struct ISteamUser_SteamUser007_GetRegistryString_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44720,7 +44720,7 @@ struct ISteamUser_SteamUser007_GetRegistryString_params struct ISteamUser_SteamUser007_SetRegistryInt_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44729,7 +44729,7 @@ struct ISteamUser_SteamUser007_SetRegistryInt_params struct ISteamUser_SteamUser007_GetRegistryInt_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eRegistrySubTree; const char *pchKey; @@ -44738,7 +44738,7 @@ struct ISteamUser_SteamUser007_GetRegistryInt_params struct ISteamUser_SteamUser007_InitiateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pBlob; int32_t cbMaxBlob; @@ -44753,14 +44753,14 @@ struct ISteamUser_SteamUser007_InitiateGameConnection_params struct ISteamUser_SteamUser007_TerminateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser007_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -44768,30 +44768,30 @@ struct ISteamUser_SteamUser007_TrackAppUsageEvent_params struct ISteamUser_SteamUser007_RefreshSteam2Login_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser008_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser008_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser008_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser008_InitiateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pBlob; int32_t cbMaxBlob; @@ -44806,14 +44806,14 @@ struct ISteamUser_SteamUser008_InitiateGameConnection_params struct ISteamUser_SteamUser008_TerminateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser008_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -44821,30 +44821,30 @@ struct ISteamUser_SteamUser008_TrackAppUsageEvent_params struct ISteamUser_SteamUser008_RefreshSteam2Login_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser009_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser009_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser009_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser009_InitiateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -44857,14 +44857,14 @@ struct ISteamUser_SteamUser009_InitiateGameConnection_params struct ISteamUser_SteamUser009_TerminateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser009_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -44872,30 +44872,30 @@ struct ISteamUser_SteamUser009_TrackAppUsageEvent_params struct ISteamUser_SteamUser009_RefreshSteam2Login_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser010_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser010_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser010_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser010_InitiateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -44907,14 +44907,14 @@ struct ISteamUser_SteamUser010_InitiateGameConnection_params struct ISteamUser_SteamUser010_TerminateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser010_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -44922,25 +44922,25 @@ struct ISteamUser_SteamUser010_TrackAppUsageEvent_params struct ISteamUser_SteamUser011_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser011_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser011_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser011_InitiateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -44952,14 +44952,14 @@ struct ISteamUser_SteamUser011_InitiateGameConnection_params struct ISteamUser_SteamUser011_TerminateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser011_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -44967,7 +44967,7 @@ struct ISteamUser_SteamUser011_TrackAppUsageEvent_params struct ISteamUser_SteamUser011_GetUserDataFolder_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -44975,17 +44975,17 @@ struct ISteamUser_SteamUser011_GetUserDataFolder_params struct ISteamUser_SteamUser011_StartVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser011_StopVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser011_GetCompressedVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pDestBuffer; uint32_t cbDestBufferSize; @@ -44994,7 +44994,7 @@ struct ISteamUser_SteamUser011_GetCompressedVoice_params struct ISteamUser_SteamUser011_DecompressVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pCompressed; uint32_t cbCompressed; @@ -45005,25 +45005,25 @@ struct ISteamUser_SteamUser011_DecompressVoice_params struct ISteamUser_SteamUser012_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser012_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser012_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser012_InitiateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -45035,14 +45035,14 @@ struct ISteamUser_SteamUser012_InitiateGameConnection_params struct ISteamUser_SteamUser012_TerminateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser012_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -45050,7 +45050,7 @@ struct ISteamUser_SteamUser012_TrackAppUsageEvent_params struct ISteamUser_SteamUser012_GetUserDataFolder_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -45058,17 +45058,17 @@ struct ISteamUser_SteamUser012_GetUserDataFolder_params struct ISteamUser_SteamUser012_StartVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser012_StopVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser012_GetCompressedVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pDestBuffer; uint32_t cbDestBufferSize; @@ -45077,7 +45077,7 @@ struct ISteamUser_SteamUser012_GetCompressedVoice_params struct ISteamUser_SteamUser012_DecompressVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pCompressed; uint32_t cbCompressed; @@ -45088,7 +45088,7 @@ struct ISteamUser_SteamUser012_DecompressVoice_params struct ISteamUser_SteamUser012_GetAuthSessionTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45097,7 +45097,7 @@ struct ISteamUser_SteamUser012_GetAuthSessionTicket_params struct ISteamUser_SteamUser012_BeginAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -45106,19 +45106,19 @@ struct ISteamUser_SteamUser012_BeginAuthSession_params struct ISteamUser_SteamUser012_EndAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser012_CancelAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser012_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -45126,25 +45126,25 @@ struct ISteamUser_SteamUser012_UserHasLicenseForApp_params struct ISteamUser_SteamUser013_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser013_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser013_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser013_InitiateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -45156,14 +45156,14 @@ struct ISteamUser_SteamUser013_InitiateGameConnection_params struct ISteamUser_SteamUser013_TerminateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser013_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -45171,7 +45171,7 @@ struct ISteamUser_SteamUser013_TrackAppUsageEvent_params struct ISteamUser_SteamUser013_GetUserDataFolder_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -45179,17 +45179,17 @@ struct ISteamUser_SteamUser013_GetUserDataFolder_params struct ISteamUser_SteamUser013_StartVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser013_StopVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser013_GetAvailableVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed; @@ -45197,7 +45197,7 @@ struct ISteamUser_SteamUser013_GetAvailableVoice_params struct ISteamUser_SteamUser013_GetVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -45211,7 +45211,7 @@ struct ISteamUser_SteamUser013_GetVoice_params struct ISteamUser_SteamUser013_DecompressVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -45222,7 +45222,7 @@ struct ISteamUser_SteamUser013_DecompressVoice_params struct ISteamUser_SteamUser013_GetAuthSessionTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45231,7 +45231,7 @@ struct ISteamUser_SteamUser013_GetAuthSessionTicket_params struct ISteamUser_SteamUser013_BeginAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -45240,19 +45240,19 @@ struct ISteamUser_SteamUser013_BeginAuthSession_params struct ISteamUser_SteamUser013_EndAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser013_CancelAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser013_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -45260,25 +45260,25 @@ struct ISteamUser_SteamUser013_UserHasLicenseForApp_params struct ISteamUser_SteamUser014_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser014_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser014_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser014_InitiateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -45290,14 +45290,14 @@ struct ISteamUser_SteamUser014_InitiateGameConnection_params struct ISteamUser_SteamUser014_TerminateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser014_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -45305,7 +45305,7 @@ struct ISteamUser_SteamUser014_TrackAppUsageEvent_params struct ISteamUser_SteamUser014_GetUserDataFolder_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -45313,17 +45313,17 @@ struct ISteamUser_SteamUser014_GetUserDataFolder_params struct ISteamUser_SteamUser014_StartVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser014_StopVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser014_GetAvailableVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed; @@ -45331,7 +45331,7 @@ struct ISteamUser_SteamUser014_GetAvailableVoice_params struct ISteamUser_SteamUser014_GetVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -45345,7 +45345,7 @@ struct ISteamUser_SteamUser014_GetVoice_params struct ISteamUser_SteamUser014_DecompressVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -45356,7 +45356,7 @@ struct ISteamUser_SteamUser014_DecompressVoice_params struct ISteamUser_SteamUser014_GetAuthSessionTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45365,7 +45365,7 @@ struct ISteamUser_SteamUser014_GetAuthSessionTicket_params struct ISteamUser_SteamUser014_BeginAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -45374,19 +45374,19 @@ struct ISteamUser_SteamUser014_BeginAuthSession_params struct ISteamUser_SteamUser014_EndAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser014_CancelAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser014_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -45394,13 +45394,13 @@ struct ISteamUser_SteamUser014_UserHasLicenseForApp_params struct ISteamUser_SteamUser014_BIsBehindNAT_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser014_AdvertiseGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -45408,7 +45408,7 @@ struct ISteamUser_SteamUser014_AdvertiseGame_params struct ISteamUser_SteamUser014_RequestEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -45416,7 +45416,7 @@ struct ISteamUser_SteamUser014_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser014_GetEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45425,25 +45425,25 @@ struct ISteamUser_SteamUser014_GetEncryptedAppTicket_params struct ISteamUser_SteamUser015_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser015_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser015_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser015_InitiateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -45455,14 +45455,14 @@ struct ISteamUser_SteamUser015_InitiateGameConnection_params struct ISteamUser_SteamUser015_TerminateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser015_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -45470,7 +45470,7 @@ struct ISteamUser_SteamUser015_TrackAppUsageEvent_params struct ISteamUser_SteamUser015_GetUserDataFolder_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -45478,17 +45478,17 @@ struct ISteamUser_SteamUser015_GetUserDataFolder_params struct ISteamUser_SteamUser015_StartVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser015_StopVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser015_GetAvailableVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed; @@ -45496,7 +45496,7 @@ struct ISteamUser_SteamUser015_GetAvailableVoice_params struct ISteamUser_SteamUser015_GetVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -45510,7 +45510,7 @@ struct ISteamUser_SteamUser015_GetVoice_params struct ISteamUser_SteamUser015_DecompressVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -45522,13 +45522,13 @@ struct ISteamUser_SteamUser015_DecompressVoice_params struct ISteamUser_SteamUser015_GetVoiceOptimalSampleRate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser015_GetAuthSessionTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45537,7 +45537,7 @@ struct ISteamUser_SteamUser015_GetAuthSessionTicket_params struct ISteamUser_SteamUser015_BeginAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -45546,19 +45546,19 @@ struct ISteamUser_SteamUser015_BeginAuthSession_params struct ISteamUser_SteamUser015_EndAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser015_CancelAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser015_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -45566,13 +45566,13 @@ struct ISteamUser_SteamUser015_UserHasLicenseForApp_params struct ISteamUser_SteamUser015_BIsBehindNAT_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser015_AdvertiseGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -45580,7 +45580,7 @@ struct ISteamUser_SteamUser015_AdvertiseGame_params struct ISteamUser_SteamUser015_RequestEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -45588,7 +45588,7 @@ struct ISteamUser_SteamUser015_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser015_GetEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45597,25 +45597,25 @@ struct ISteamUser_SteamUser015_GetEncryptedAppTicket_params struct ISteamUser_SteamUser016_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser016_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser016_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser016_InitiateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -45627,14 +45627,14 @@ struct ISteamUser_SteamUser016_InitiateGameConnection_params struct ISteamUser_SteamUser016_TerminateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser016_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -45642,7 +45642,7 @@ struct ISteamUser_SteamUser016_TrackAppUsageEvent_params struct ISteamUser_SteamUser016_GetUserDataFolder_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -45650,17 +45650,17 @@ struct ISteamUser_SteamUser016_GetUserDataFolder_params struct ISteamUser_SteamUser016_StartVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser016_StopVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser016_GetAvailableVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed; @@ -45669,7 +45669,7 @@ struct ISteamUser_SteamUser016_GetAvailableVoice_params struct ISteamUser_SteamUser016_GetVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -45684,7 +45684,7 @@ struct ISteamUser_SteamUser016_GetVoice_params struct ISteamUser_SteamUser016_DecompressVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -45696,13 +45696,13 @@ struct ISteamUser_SteamUser016_DecompressVoice_params struct ISteamUser_SteamUser016_GetVoiceOptimalSampleRate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser016_GetAuthSessionTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45711,7 +45711,7 @@ struct ISteamUser_SteamUser016_GetAuthSessionTicket_params struct ISteamUser_SteamUser016_BeginAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -45720,19 +45720,19 @@ struct ISteamUser_SteamUser016_BeginAuthSession_params struct ISteamUser_SteamUser016_EndAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser016_CancelAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser016_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -45740,13 +45740,13 @@ struct ISteamUser_SteamUser016_UserHasLicenseForApp_params struct ISteamUser_SteamUser016_BIsBehindNAT_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser016_AdvertiseGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -45754,7 +45754,7 @@ struct ISteamUser_SteamUser016_AdvertiseGame_params struct ISteamUser_SteamUser016_RequestEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -45762,7 +45762,7 @@ struct ISteamUser_SteamUser016_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser016_GetEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45771,25 +45771,25 @@ struct ISteamUser_SteamUser016_GetEncryptedAppTicket_params struct ISteamUser_SteamUser017_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser017_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser017_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser017_InitiateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -45801,14 +45801,14 @@ struct ISteamUser_SteamUser017_InitiateGameConnection_params struct ISteamUser_SteamUser017_TerminateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser017_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -45816,7 +45816,7 @@ struct ISteamUser_SteamUser017_TrackAppUsageEvent_params struct ISteamUser_SteamUser017_GetUserDataFolder_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -45824,17 +45824,17 @@ struct ISteamUser_SteamUser017_GetUserDataFolder_params struct ISteamUser_SteamUser017_StartVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser017_StopVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser017_GetAvailableVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed; @@ -45843,7 +45843,7 @@ struct ISteamUser_SteamUser017_GetAvailableVoice_params struct ISteamUser_SteamUser017_GetVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -45858,7 +45858,7 @@ struct ISteamUser_SteamUser017_GetVoice_params struct ISteamUser_SteamUser017_DecompressVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -45870,13 +45870,13 @@ struct ISteamUser_SteamUser017_DecompressVoice_params struct ISteamUser_SteamUser017_GetVoiceOptimalSampleRate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser017_GetAuthSessionTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45885,7 +45885,7 @@ struct ISteamUser_SteamUser017_GetAuthSessionTicket_params struct ISteamUser_SteamUser017_BeginAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -45894,19 +45894,19 @@ struct ISteamUser_SteamUser017_BeginAuthSession_params struct ISteamUser_SteamUser017_EndAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser017_CancelAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser017_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -45914,13 +45914,13 @@ struct ISteamUser_SteamUser017_UserHasLicenseForApp_params struct ISteamUser_SteamUser017_BIsBehindNAT_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser017_AdvertiseGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -45928,7 +45928,7 @@ struct ISteamUser_SteamUser017_AdvertiseGame_params struct ISteamUser_SteamUser017_RequestEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -45936,7 +45936,7 @@ struct ISteamUser_SteamUser017_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser017_GetEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -45945,7 +45945,7 @@ struct ISteamUser_SteamUser017_GetEncryptedAppTicket_params struct ISteamUser_SteamUser017_GetGameBadgeLevel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t nSeries; int8_t bFoil; @@ -45953,31 +45953,31 @@ struct ISteamUser_SteamUser017_GetGameBadgeLevel_params struct ISteamUser_SteamUser017_GetPlayerSteamLevel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser018_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser018_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser018_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser018_InitiateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -45989,14 +45989,14 @@ struct ISteamUser_SteamUser018_InitiateGameConnection_params struct ISteamUser_SteamUser018_TerminateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser018_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -46004,7 +46004,7 @@ struct ISteamUser_SteamUser018_TrackAppUsageEvent_params struct ISteamUser_SteamUser018_GetUserDataFolder_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -46012,17 +46012,17 @@ struct ISteamUser_SteamUser018_GetUserDataFolder_params struct ISteamUser_SteamUser018_StartVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser018_StopVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser018_GetAvailableVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed; @@ -46031,7 +46031,7 @@ struct ISteamUser_SteamUser018_GetAvailableVoice_params struct ISteamUser_SteamUser018_GetVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -46046,7 +46046,7 @@ struct ISteamUser_SteamUser018_GetVoice_params struct ISteamUser_SteamUser018_DecompressVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -46058,13 +46058,13 @@ struct ISteamUser_SteamUser018_DecompressVoice_params struct ISteamUser_SteamUser018_GetVoiceOptimalSampleRate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser018_GetAuthSessionTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -46073,7 +46073,7 @@ struct ISteamUser_SteamUser018_GetAuthSessionTicket_params struct ISteamUser_SteamUser018_BeginAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -46082,19 +46082,19 @@ struct ISteamUser_SteamUser018_BeginAuthSession_params struct ISteamUser_SteamUser018_EndAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser018_CancelAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser018_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -46102,13 +46102,13 @@ struct ISteamUser_SteamUser018_UserHasLicenseForApp_params struct ISteamUser_SteamUser018_BIsBehindNAT_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser018_AdvertiseGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -46116,7 +46116,7 @@ struct ISteamUser_SteamUser018_AdvertiseGame_params struct ISteamUser_SteamUser018_RequestEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -46124,7 +46124,7 @@ struct ISteamUser_SteamUser018_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser018_GetEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -46133,7 +46133,7 @@ struct ISteamUser_SteamUser018_GetEncryptedAppTicket_params struct ISteamUser_SteamUser018_GetGameBadgeLevel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t nSeries; int8_t bFoil; @@ -46141,38 +46141,38 @@ struct ISteamUser_SteamUser018_GetGameBadgeLevel_params struct ISteamUser_SteamUser018_GetPlayerSteamLevel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser018_RequestStoreAuthURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchRedirectURL; }; struct ISteamUser_SteamUser019_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser019_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser019_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser019_InitiateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -46184,14 +46184,14 @@ struct ISteamUser_SteamUser019_InitiateGameConnection_params struct ISteamUser_SteamUser019_TerminateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser019_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -46199,7 +46199,7 @@ struct ISteamUser_SteamUser019_TrackAppUsageEvent_params struct ISteamUser_SteamUser019_GetUserDataFolder_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -46207,17 +46207,17 @@ struct ISteamUser_SteamUser019_GetUserDataFolder_params struct ISteamUser_SteamUser019_StartVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser019_StopVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser019_GetAvailableVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed_Deprecated; @@ -46226,7 +46226,7 @@ struct ISteamUser_SteamUser019_GetAvailableVoice_params struct ISteamUser_SteamUser019_GetVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -46241,7 +46241,7 @@ struct ISteamUser_SteamUser019_GetVoice_params struct ISteamUser_SteamUser019_DecompressVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -46253,13 +46253,13 @@ struct ISteamUser_SteamUser019_DecompressVoice_params struct ISteamUser_SteamUser019_GetVoiceOptimalSampleRate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser019_GetAuthSessionTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -46268,7 +46268,7 @@ struct ISteamUser_SteamUser019_GetAuthSessionTicket_params struct ISteamUser_SteamUser019_BeginAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -46277,19 +46277,19 @@ struct ISteamUser_SteamUser019_BeginAuthSession_params struct ISteamUser_SteamUser019_EndAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser019_CancelAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser019_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -46297,13 +46297,13 @@ struct ISteamUser_SteamUser019_UserHasLicenseForApp_params struct ISteamUser_SteamUser019_BIsBehindNAT_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser019_AdvertiseGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -46311,7 +46311,7 @@ struct ISteamUser_SteamUser019_AdvertiseGame_params struct ISteamUser_SteamUser019_RequestEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -46319,7 +46319,7 @@ struct ISteamUser_SteamUser019_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser019_GetEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -46328,7 +46328,7 @@ struct ISteamUser_SteamUser019_GetEncryptedAppTicket_params struct ISteamUser_SteamUser019_GetGameBadgeLevel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t nSeries; int8_t bFoil; @@ -46336,62 +46336,62 @@ struct ISteamUser_SteamUser019_GetGameBadgeLevel_params struct ISteamUser_SteamUser019_GetPlayerSteamLevel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser019_RequestStoreAuthURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchRedirectURL; }; struct ISteamUser_SteamUser019_BIsPhoneVerified_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser019_BIsTwoFactorEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser019_BIsPhoneIdentifying_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser019_BIsPhoneRequiringVerification_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser020_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser020_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser020_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser020_InitiateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -46403,14 +46403,14 @@ struct ISteamUser_SteamUser020_InitiateGameConnection_params struct ISteamUser_SteamUser020_TerminateGameConnection_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser020_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -46418,7 +46418,7 @@ struct ISteamUser_SteamUser020_TrackAppUsageEvent_params struct ISteamUser_SteamUser020_GetUserDataFolder_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -46426,17 +46426,17 @@ struct ISteamUser_SteamUser020_GetUserDataFolder_params struct ISteamUser_SteamUser020_StartVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser020_StopVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser020_GetAvailableVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed_Deprecated; @@ -46445,7 +46445,7 @@ struct ISteamUser_SteamUser020_GetAvailableVoice_params struct ISteamUser_SteamUser020_GetVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -46460,7 +46460,7 @@ struct ISteamUser_SteamUser020_GetVoice_params struct ISteamUser_SteamUser020_DecompressVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -46472,13 +46472,13 @@ struct ISteamUser_SteamUser020_DecompressVoice_params struct ISteamUser_SteamUser020_GetVoiceOptimalSampleRate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser020_GetAuthSessionTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -46487,7 +46487,7 @@ struct ISteamUser_SteamUser020_GetAuthSessionTicket_params struct ISteamUser_SteamUser020_BeginAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -46496,19 +46496,19 @@ struct ISteamUser_SteamUser020_BeginAuthSession_params struct ISteamUser_SteamUser020_EndAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser020_CancelAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser020_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -46516,13 +46516,13 @@ struct ISteamUser_SteamUser020_UserHasLicenseForApp_params struct ISteamUser_SteamUser020_BIsBehindNAT_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser020_AdvertiseGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -46530,7 +46530,7 @@ struct ISteamUser_SteamUser020_AdvertiseGame_params struct ISteamUser_SteamUser020_RequestEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -46538,7 +46538,7 @@ struct ISteamUser_SteamUser020_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser020_GetEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -46547,7 +46547,7 @@ struct ISteamUser_SteamUser020_GetEncryptedAppTicket_params struct ISteamUser_SteamUser020_GetGameBadgeLevel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t nSeries; int8_t bFoil; @@ -46555,74 +46555,74 @@ struct ISteamUser_SteamUser020_GetGameBadgeLevel_params struct ISteamUser_SteamUser020_GetPlayerSteamLevel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser020_RequestStoreAuthURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchRedirectURL; }; struct ISteamUser_SteamUser020_BIsPhoneVerified_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser020_BIsTwoFactorEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser020_BIsPhoneIdentifying_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser020_BIsPhoneRequiringVerification_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser020_GetMarketEligibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUser_SteamUser020_GetDurationControl_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUser_SteamUser021_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser021_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser021_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -46634,14 +46634,14 @@ struct ISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED_params struct ISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser021_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -46649,7 +46649,7 @@ struct ISteamUser_SteamUser021_TrackAppUsageEvent_params struct ISteamUser_SteamUser021_GetUserDataFolder_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -46657,17 +46657,17 @@ struct ISteamUser_SteamUser021_GetUserDataFolder_params struct ISteamUser_SteamUser021_StartVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser021_StopVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser021_GetAvailableVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed_Deprecated; @@ -46676,7 +46676,7 @@ struct ISteamUser_SteamUser021_GetAvailableVoice_params struct ISteamUser_SteamUser021_GetVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -46691,7 +46691,7 @@ struct ISteamUser_SteamUser021_GetVoice_params struct ISteamUser_SteamUser021_DecompressVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -46703,13 +46703,13 @@ struct ISteamUser_SteamUser021_DecompressVoice_params struct ISteamUser_SteamUser021_GetVoiceOptimalSampleRate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser021_GetAuthSessionTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -46718,7 +46718,7 @@ struct ISteamUser_SteamUser021_GetAuthSessionTicket_params struct ISteamUser_SteamUser021_BeginAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -46727,19 +46727,19 @@ struct ISteamUser_SteamUser021_BeginAuthSession_params struct ISteamUser_SteamUser021_EndAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser021_CancelAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser021_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -46747,13 +46747,13 @@ struct ISteamUser_SteamUser021_UserHasLicenseForApp_params struct ISteamUser_SteamUser021_BIsBehindNAT_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser021_AdvertiseGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -46761,7 +46761,7 @@ struct ISteamUser_SteamUser021_AdvertiseGame_params struct ISteamUser_SteamUser021_RequestEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -46769,7 +46769,7 @@ struct ISteamUser_SteamUser021_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser021_GetEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -46778,7 +46778,7 @@ struct ISteamUser_SteamUser021_GetEncryptedAppTicket_params struct ISteamUser_SteamUser021_GetGameBadgeLevel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t nSeries; int8_t bFoil; @@ -46786,81 +46786,81 @@ struct ISteamUser_SteamUser021_GetGameBadgeLevel_params struct ISteamUser_SteamUser021_GetPlayerSteamLevel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser021_RequestStoreAuthURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchRedirectURL; }; struct ISteamUser_SteamUser021_BIsPhoneVerified_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser021_BIsTwoFactorEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser021_BIsPhoneIdentifying_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser021_BIsPhoneRequiringVerification_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser021_GetMarketEligibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUser_SteamUser021_GetDurationControl_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUser_SteamUser021_BSetDurationControlOnlineState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eNewState; }; struct ISteamUser_SteamUser022_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser022_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser022_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -46872,14 +46872,14 @@ struct ISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED_params struct ISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser022_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -46887,7 +46887,7 @@ struct ISteamUser_SteamUser022_TrackAppUsageEvent_params struct ISteamUser_SteamUser022_GetUserDataFolder_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -46895,17 +46895,17 @@ struct ISteamUser_SteamUser022_GetUserDataFolder_params struct ISteamUser_SteamUser022_StartVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser022_StopVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser022_GetAvailableVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed_Deprecated; @@ -46914,7 +46914,7 @@ struct ISteamUser_SteamUser022_GetAvailableVoice_params struct ISteamUser_SteamUser022_GetVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -46929,7 +46929,7 @@ struct ISteamUser_SteamUser022_GetVoice_params struct ISteamUser_SteamUser022_DecompressVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -46941,13 +46941,13 @@ struct ISteamUser_SteamUser022_DecompressVoice_params struct ISteamUser_SteamUser022_GetVoiceOptimalSampleRate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser022_GetAuthSessionTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -46957,7 +46957,7 @@ struct ISteamUser_SteamUser022_GetAuthSessionTicket_params struct ISteamUser_SteamUser022_BeginAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -46966,19 +46966,19 @@ struct ISteamUser_SteamUser022_BeginAuthSession_params struct ISteamUser_SteamUser022_EndAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser022_CancelAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser022_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -46986,13 +46986,13 @@ struct ISteamUser_SteamUser022_UserHasLicenseForApp_params struct ISteamUser_SteamUser022_BIsBehindNAT_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser022_AdvertiseGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -47000,7 +47000,7 @@ struct ISteamUser_SteamUser022_AdvertiseGame_params struct ISteamUser_SteamUser022_RequestEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -47008,7 +47008,7 @@ struct ISteamUser_SteamUser022_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser022_GetEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -47017,7 +47017,7 @@ struct ISteamUser_SteamUser022_GetEncryptedAppTicket_params struct ISteamUser_SteamUser022_GetGameBadgeLevel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t nSeries; int8_t bFoil; @@ -47025,81 +47025,81 @@ struct ISteamUser_SteamUser022_GetGameBadgeLevel_params struct ISteamUser_SteamUser022_GetPlayerSteamLevel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser022_RequestStoreAuthURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchRedirectURL; }; struct ISteamUser_SteamUser022_BIsPhoneVerified_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser022_BIsTwoFactorEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser022_BIsPhoneIdentifying_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser022_BIsPhoneRequiringVerification_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser022_GetMarketEligibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUser_SteamUser022_GetDurationControl_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUser_SteamUser022_BSetDurationControlOnlineState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eNewState; }; struct ISteamUser_SteamUser023_GetHSteamUser_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser023_BLoggedOn_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser023_GetSteamID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID *_ret; }; struct ISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; void *pAuthBlob; int32_t cbMaxAuthBlob; @@ -47111,14 +47111,14 @@ struct ISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED_params struct ISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t unIPServer; uint16_t usPortServer; }; struct ISteamUser_SteamUser023_TrackAppUsageEvent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CGameID gameID; int32_t eAppUsageEvent; const char *pchExtraInfo; @@ -47126,7 +47126,7 @@ struct ISteamUser_SteamUser023_TrackAppUsageEvent_params struct ISteamUser_SteamUser023_GetUserDataFolder_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchBuffer; int32_t cubBuffer; @@ -47134,17 +47134,17 @@ struct ISteamUser_SteamUser023_GetUserDataFolder_params struct ISteamUser_SteamUser023_StartVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser023_StopVoiceRecording_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUser_SteamUser023_GetAvailableVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t *pcbCompressed; uint32_t *pcbUncompressed_Deprecated; @@ -47153,7 +47153,7 @@ struct ISteamUser_SteamUser023_GetAvailableVoice_params struct ISteamUser_SteamUser023_GetVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; int8_t bWantCompressed; void *pDestBuffer; @@ -47168,7 +47168,7 @@ struct ISteamUser_SteamUser023_GetVoice_params struct ISteamUser_SteamUser023_DecompressVoice_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pCompressed; uint32_t cbCompressed; @@ -47180,13 +47180,13 @@ struct ISteamUser_SteamUser023_DecompressVoice_params struct ISteamUser_SteamUser023_GetVoiceOptimalSampleRate_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUser_SteamUser023_GetAuthSessionTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -47196,14 +47196,14 @@ struct ISteamUser_SteamUser023_GetAuthSessionTicket_params struct ISteamUser_SteamUser023_GetAuthTicketForWebApi_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const char *pchIdentity; }; struct ISteamUser_SteamUser023_BeginAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; const void *pAuthTicket; int32_t cbAuthTicket; @@ -47212,19 +47212,19 @@ struct ISteamUser_SteamUser023_BeginAuthSession_params struct ISteamUser_SteamUser023_EndAuthSession_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamID; }; struct ISteamUser_SteamUser023_CancelAuthTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t hAuthTicket; }; struct ISteamUser_SteamUser023_UserHasLicenseForApp_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; CSteamID steamID; uint32_t appID; @@ -47232,13 +47232,13 @@ struct ISteamUser_SteamUser023_UserHasLicenseForApp_params struct ISteamUser_SteamUser023_BIsBehindNAT_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser023_AdvertiseGame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; CSteamID steamIDGameServer; uint32_t unIPServer; uint16_t usPortServer; @@ -47246,7 +47246,7 @@ struct ISteamUser_SteamUser023_AdvertiseGame_params struct ISteamUser_SteamUser023_RequestEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; void *pDataToInclude; int32_t cbDataToInclude; @@ -47254,7 +47254,7 @@ struct ISteamUser_SteamUser023_RequestEncryptedAppTicket_params struct ISteamUser_SteamUser023_GetEncryptedAppTicket_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; void *pTicket; int32_t cbMaxTicket; @@ -47263,7 +47263,7 @@ struct ISteamUser_SteamUser023_GetEncryptedAppTicket_params struct ISteamUser_SteamUser023_GetGameBadgeLevel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; int32_t nSeries; int8_t bFoil; @@ -47271,93 +47271,93 @@ struct ISteamUser_SteamUser023_GetGameBadgeLevel_params struct ISteamUser_SteamUser023_GetPlayerSteamLevel_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; }; struct ISteamUser_SteamUser023_RequestStoreAuthURL_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *pchRedirectURL; }; struct ISteamUser_SteamUser023_BIsPhoneVerified_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser023_BIsTwoFactorEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser023_BIsPhoneIdentifying_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser023_BIsPhoneRequiringVerification_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUser_SteamUser023_GetMarketEligibility_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUser_SteamUser023_GetDurationControl_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; }; struct ISteamUser_SteamUser023_BSetDurationControlOnlineState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eNewState; }; struct ISteamUtils_SteamUtils002_GetSecondsSinceAppActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils002_GetSecondsSinceComputerActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils002_GetConnectedUniverse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils002_GetServerRealTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils002_GetIPCountry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils002_GetImageSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iImage; uint32_t *pnWidth; @@ -47366,7 +47366,7 @@ struct ISteamUtils_SteamUtils002_GetImageSize_params struct ISteamUtils_SteamUtils002_GetImageRGBA_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iImage; uint8_t *pubDest; @@ -47375,7 +47375,7 @@ struct ISteamUtils_SteamUtils002_GetImageRGBA_params struct ISteamUtils_SteamUtils002_GetCSERIPPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *unIP; uint16_t *usPort; @@ -47383,25 +47383,25 @@ struct ISteamUtils_SteamUtils002_GetCSERIPPort_params struct ISteamUtils_SteamUtils002_GetCurrentBatteryPower_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint8_t _ret; }; struct ISteamUtils_SteamUtils002_GetAppID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils002_SetOverlayNotificationPosition_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eNotificationPosition; }; struct ISteamUtils_SteamUtils002_IsAPICallCompleted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamAPICall; int8_t *pbFailed; @@ -47409,14 +47409,14 @@ struct ISteamUtils_SteamUtils002_IsAPICallCompleted_params struct ISteamUtils_SteamUtils002_GetAPICallFailureReason_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamAPICall; }; struct ISteamUtils_SteamUtils002_GetAPICallResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamAPICall; void *pCallback; @@ -47427,37 +47427,37 @@ struct ISteamUtils_SteamUtils002_GetAPICallResult_params struct ISteamUtils_SteamUtils004_GetSecondsSinceAppActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils004_GetSecondsSinceComputerActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils004_GetConnectedUniverse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils004_GetServerRealTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils004_GetIPCountry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils004_GetImageSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iImage; uint32_t *pnWidth; @@ -47466,7 +47466,7 @@ struct ISteamUtils_SteamUtils004_GetImageSize_params struct ISteamUtils_SteamUtils004_GetImageRGBA_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iImage; uint8_t *pubDest; @@ -47475,7 +47475,7 @@ struct ISteamUtils_SteamUtils004_GetImageRGBA_params struct ISteamUtils_SteamUtils004_GetCSERIPPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *unIP; uint16_t *usPort; @@ -47483,25 +47483,25 @@ struct ISteamUtils_SteamUtils004_GetCSERIPPort_params struct ISteamUtils_SteamUtils004_GetCurrentBatteryPower_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint8_t _ret; }; struct ISteamUtils_SteamUtils004_GetAppID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils004_SetOverlayNotificationPosition_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eNotificationPosition; }; struct ISteamUtils_SteamUtils004_IsAPICallCompleted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamAPICall; int8_t *pbFailed; @@ -47509,14 +47509,14 @@ struct ISteamUtils_SteamUtils004_IsAPICallCompleted_params struct ISteamUtils_SteamUtils004_GetAPICallFailureReason_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamAPICall; }; struct ISteamUtils_SteamUtils004_GetAPICallResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamAPICall; void *pCallback; @@ -47527,60 +47527,60 @@ struct ISteamUtils_SteamUtils004_GetAPICallResult_params struct ISteamUtils_SteamUtils004_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUtils_SteamUtils004_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils004_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamUtils_SteamUtils004_IsOverlayEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils005_GetSecondsSinceAppActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils005_GetSecondsSinceComputerActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils005_GetConnectedUniverse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils005_GetServerRealTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils005_GetIPCountry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils005_GetImageSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iImage; uint32_t *pnWidth; @@ -47589,7 +47589,7 @@ struct ISteamUtils_SteamUtils005_GetImageSize_params struct ISteamUtils_SteamUtils005_GetImageRGBA_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iImage; uint8_t *pubDest; @@ -47598,7 +47598,7 @@ struct ISteamUtils_SteamUtils005_GetImageRGBA_params struct ISteamUtils_SteamUtils005_GetCSERIPPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *unIP; uint16_t *usPort; @@ -47606,25 +47606,25 @@ struct ISteamUtils_SteamUtils005_GetCSERIPPort_params struct ISteamUtils_SteamUtils005_GetCurrentBatteryPower_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint8_t _ret; }; struct ISteamUtils_SteamUtils005_GetAppID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils005_SetOverlayNotificationPosition_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eNotificationPosition; }; struct ISteamUtils_SteamUtils005_IsAPICallCompleted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamAPICall; int8_t *pbFailed; @@ -47632,14 +47632,14 @@ struct ISteamUtils_SteamUtils005_IsAPICallCompleted_params struct ISteamUtils_SteamUtils005_GetAPICallFailureReason_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamAPICall; }; struct ISteamUtils_SteamUtils005_GetAPICallResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamAPICall; void *pCallback; @@ -47650,43 +47650,43 @@ struct ISteamUtils_SteamUtils005_GetAPICallResult_params struct ISteamUtils_SteamUtils005_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUtils_SteamUtils005_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils005_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamUtils_SteamUtils005_IsOverlayEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils005_BOverlayNeedsPresent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils005_CheckFileSignature_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *szFileName; }; struct ISteamUtils_SteamUtils005_ShowGamepadTextInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eInputMode; uint32_t eLineInputMode; @@ -47696,13 +47696,13 @@ struct ISteamUtils_SteamUtils005_ShowGamepadTextInput_params struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextLength_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchText; uint32_t cchText; @@ -47710,37 +47710,37 @@ struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextInput_params struct ISteamUtils_SteamUtils006_GetSecondsSinceAppActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils006_GetSecondsSinceComputerActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils006_GetConnectedUniverse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils006_GetServerRealTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils006_GetIPCountry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils006_GetImageSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iImage; uint32_t *pnWidth; @@ -47749,7 +47749,7 @@ struct ISteamUtils_SteamUtils006_GetImageSize_params struct ISteamUtils_SteamUtils006_GetImageRGBA_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iImage; uint8_t *pubDest; @@ -47758,7 +47758,7 @@ struct ISteamUtils_SteamUtils006_GetImageRGBA_params struct ISteamUtils_SteamUtils006_GetCSERIPPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *unIP; uint16_t *usPort; @@ -47766,25 +47766,25 @@ struct ISteamUtils_SteamUtils006_GetCSERIPPort_params struct ISteamUtils_SteamUtils006_GetCurrentBatteryPower_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint8_t _ret; }; struct ISteamUtils_SteamUtils006_GetAppID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils006_SetOverlayNotificationPosition_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eNotificationPosition; }; struct ISteamUtils_SteamUtils006_IsAPICallCompleted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamAPICall; int8_t *pbFailed; @@ -47792,14 +47792,14 @@ struct ISteamUtils_SteamUtils006_IsAPICallCompleted_params struct ISteamUtils_SteamUtils006_GetAPICallFailureReason_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamAPICall; }; struct ISteamUtils_SteamUtils006_GetAPICallResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamAPICall; void *pCallback; @@ -47810,43 +47810,43 @@ struct ISteamUtils_SteamUtils006_GetAPICallResult_params struct ISteamUtils_SteamUtils006_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUtils_SteamUtils006_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils006_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamUtils_SteamUtils006_IsOverlayEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils006_BOverlayNeedsPresent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils006_CheckFileSignature_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *szFileName; }; struct ISteamUtils_SteamUtils006_ShowGamepadTextInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eInputMode; uint32_t eLineInputMode; @@ -47856,13 +47856,13 @@ struct ISteamUtils_SteamUtils006_ShowGamepadTextInput_params struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextLength_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchText; uint32_t cchText; @@ -47870,49 +47870,49 @@ struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextInput_params struct ISteamUtils_SteamUtils006_GetSteamUILanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils006_IsSteamRunningInVR_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils007_GetSecondsSinceAppActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils007_GetSecondsSinceComputerActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils007_GetConnectedUniverse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils007_GetServerRealTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils007_GetIPCountry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils007_GetImageSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iImage; uint32_t *pnWidth; @@ -47921,7 +47921,7 @@ struct ISteamUtils_SteamUtils007_GetImageSize_params struct ISteamUtils_SteamUtils007_GetImageRGBA_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iImage; uint8_t *pubDest; @@ -47930,7 +47930,7 @@ struct ISteamUtils_SteamUtils007_GetImageRGBA_params struct ISteamUtils_SteamUtils007_GetCSERIPPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *unIP; uint16_t *usPort; @@ -47938,25 +47938,25 @@ struct ISteamUtils_SteamUtils007_GetCSERIPPort_params struct ISteamUtils_SteamUtils007_GetCurrentBatteryPower_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint8_t _ret; }; struct ISteamUtils_SteamUtils007_GetAppID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils007_SetOverlayNotificationPosition_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eNotificationPosition; }; struct ISteamUtils_SteamUtils007_IsAPICallCompleted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamAPICall; int8_t *pbFailed; @@ -47964,14 +47964,14 @@ struct ISteamUtils_SteamUtils007_IsAPICallCompleted_params struct ISteamUtils_SteamUtils007_GetAPICallFailureReason_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamAPICall; }; struct ISteamUtils_SteamUtils007_GetAPICallResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamAPICall; void *pCallback; @@ -47982,43 +47982,43 @@ struct ISteamUtils_SteamUtils007_GetAPICallResult_params struct ISteamUtils_SteamUtils007_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUtils_SteamUtils007_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils007_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamUtils_SteamUtils007_IsOverlayEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils007_BOverlayNeedsPresent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils007_CheckFileSignature_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *szFileName; }; struct ISteamUtils_SteamUtils007_ShowGamepadTextInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eInputMode; uint32_t eLineInputMode; @@ -48029,13 +48029,13 @@ struct ISteamUtils_SteamUtils007_ShowGamepadTextInput_params struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextLength_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchText; uint32_t cchText; @@ -48043,56 +48043,56 @@ struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextInput_params struct ISteamUtils_SteamUtils007_GetSteamUILanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils007_IsSteamRunningInVR_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils007_SetOverlayNotificationInset_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t nHorizontalInset; int32_t nVerticalInset; }; struct ISteamUtils_SteamUtils008_GetSecondsSinceAppActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils008_GetSecondsSinceComputerActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils008_GetConnectedUniverse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils008_GetServerRealTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils008_GetIPCountry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils008_GetImageSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iImage; uint32_t *pnWidth; @@ -48101,7 +48101,7 @@ struct ISteamUtils_SteamUtils008_GetImageSize_params struct ISteamUtils_SteamUtils008_GetImageRGBA_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iImage; uint8_t *pubDest; @@ -48110,7 +48110,7 @@ struct ISteamUtils_SteamUtils008_GetImageRGBA_params struct ISteamUtils_SteamUtils008_GetCSERIPPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *unIP; uint16_t *usPort; @@ -48118,25 +48118,25 @@ struct ISteamUtils_SteamUtils008_GetCSERIPPort_params struct ISteamUtils_SteamUtils008_GetCurrentBatteryPower_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint8_t _ret; }; struct ISteamUtils_SteamUtils008_GetAppID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils008_SetOverlayNotificationPosition_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eNotificationPosition; }; struct ISteamUtils_SteamUtils008_IsAPICallCompleted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamAPICall; int8_t *pbFailed; @@ -48144,14 +48144,14 @@ struct ISteamUtils_SteamUtils008_IsAPICallCompleted_params struct ISteamUtils_SteamUtils008_GetAPICallFailureReason_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamAPICall; }; struct ISteamUtils_SteamUtils008_GetAPICallResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamAPICall; void *pCallback; @@ -48162,43 +48162,43 @@ struct ISteamUtils_SteamUtils008_GetAPICallResult_params struct ISteamUtils_SteamUtils008_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUtils_SteamUtils008_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils008_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamUtils_SteamUtils008_IsOverlayEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils008_BOverlayNeedsPresent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils008_CheckFileSignature_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *szFileName; }; struct ISteamUtils_SteamUtils008_ShowGamepadTextInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eInputMode; uint32_t eLineInputMode; @@ -48209,13 +48209,13 @@ struct ISteamUtils_SteamUtils008_ShowGamepadTextInput_params struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextLength_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchText; uint32_t cchText; @@ -48223,67 +48223,67 @@ struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextInput_params struct ISteamUtils_SteamUtils008_GetSteamUILanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils008_IsSteamRunningInVR_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils008_SetOverlayNotificationInset_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t nHorizontalInset; int32_t nVerticalInset; }; struct ISteamUtils_SteamUtils008_IsSteamInBigPictureMode_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils008_StartVRDashboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUtils_SteamUtils009_GetSecondsSinceAppActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils009_GetSecondsSinceComputerActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils009_GetConnectedUniverse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils009_GetServerRealTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils009_GetIPCountry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils009_GetImageSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iImage; uint32_t *pnWidth; @@ -48292,7 +48292,7 @@ struct ISteamUtils_SteamUtils009_GetImageSize_params struct ISteamUtils_SteamUtils009_GetImageRGBA_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iImage; uint8_t *pubDest; @@ -48301,7 +48301,7 @@ struct ISteamUtils_SteamUtils009_GetImageRGBA_params struct ISteamUtils_SteamUtils009_GetCSERIPPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *unIP; uint16_t *usPort; @@ -48309,25 +48309,25 @@ struct ISteamUtils_SteamUtils009_GetCSERIPPort_params struct ISteamUtils_SteamUtils009_GetCurrentBatteryPower_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint8_t _ret; }; struct ISteamUtils_SteamUtils009_GetAppID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils009_SetOverlayNotificationPosition_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eNotificationPosition; }; struct ISteamUtils_SteamUtils009_IsAPICallCompleted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamAPICall; int8_t *pbFailed; @@ -48335,14 +48335,14 @@ struct ISteamUtils_SteamUtils009_IsAPICallCompleted_params struct ISteamUtils_SteamUtils009_GetAPICallFailureReason_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamAPICall; }; struct ISteamUtils_SteamUtils009_GetAPICallResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamAPICall; void *pCallback; @@ -48353,43 +48353,43 @@ struct ISteamUtils_SteamUtils009_GetAPICallResult_params struct ISteamUtils_SteamUtils009_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUtils_SteamUtils009_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils009_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamUtils_SteamUtils009_IsOverlayEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils009_BOverlayNeedsPresent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils009_CheckFileSignature_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *szFileName; }; struct ISteamUtils_SteamUtils009_ShowGamepadTextInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eInputMode; uint32_t eLineInputMode; @@ -48400,13 +48400,13 @@ struct ISteamUtils_SteamUtils009_ShowGamepadTextInput_params struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextLength_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchText; uint32_t cchText; @@ -48414,61 +48414,61 @@ struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextInput_params struct ISteamUtils_SteamUtils009_GetSteamUILanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils009_IsSteamRunningInVR_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils009_SetOverlayNotificationInset_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t nHorizontalInset; int32_t nVerticalInset; }; struct ISteamUtils_SteamUtils009_IsSteamInBigPictureMode_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils009_StartVRDashboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bEnabled; }; struct ISteamUtils_SteamUtils009_IsSteamChinaLauncher_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils009_InitFilterText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils009_FilterText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; char *pchOutFilteredText; uint32_t nByteSizeOutFilteredText; @@ -48478,44 +48478,44 @@ struct ISteamUtils_SteamUtils009_FilterText_params struct ISteamUtils_SteamUtils009_GetIPv6ConnectivityState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t eProtocol; }; struct ISteamUtils_SteamUtils010_GetSecondsSinceAppActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils010_GetSecondsSinceComputerActive_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils010_GetConnectedUniverse_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils010_GetServerRealTime_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils010_GetIPCountry_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils010_GetImageSize_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iImage; uint32_t *pnWidth; @@ -48524,7 +48524,7 @@ struct ISteamUtils_SteamUtils010_GetImageSize_params struct ISteamUtils_SteamUtils010_GetImageRGBA_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; int32_t iImage; uint8_t *pubDest; @@ -48533,7 +48533,7 @@ struct ISteamUtils_SteamUtils010_GetImageRGBA_params struct ISteamUtils_SteamUtils010_GetCSERIPPort_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t *unIP; uint16_t *usPort; @@ -48541,25 +48541,25 @@ struct ISteamUtils_SteamUtils010_GetCSERIPPort_params struct ISteamUtils_SteamUtils010_GetCurrentBatteryPower_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint8_t _ret; }; struct ISteamUtils_SteamUtils010_GetAppID_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils010_SetOverlayNotificationPosition_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t eNotificationPosition; }; struct ISteamUtils_SteamUtils010_IsAPICallCompleted_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamAPICall; int8_t *pbFailed; @@ -48567,14 +48567,14 @@ struct ISteamUtils_SteamUtils010_IsAPICallCompleted_params struct ISteamUtils_SteamUtils010_GetAPICallFailureReason_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint64_t hSteamAPICall; }; struct ISteamUtils_SteamUtils010_GetAPICallResult_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint64_t hSteamAPICall; void *pCallback; @@ -48585,43 +48585,43 @@ struct ISteamUtils_SteamUtils010_GetAPICallResult_params struct ISteamUtils_SteamUtils010_RunFrame_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUtils_SteamUtils010_GetIPCCallCount_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils010_SetWarningMessageHook_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; void (*W_CDECL pFunction)(int32_t, const char *); }; struct ISteamUtils_SteamUtils010_IsOverlayEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils010_BOverlayNeedsPresent_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils010_CheckFileSignature_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint64_t _ret; const char *szFileName; }; struct ISteamUtils_SteamUtils010_ShowGamepadTextInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eInputMode; uint32_t eLineInputMode; @@ -48632,13 +48632,13 @@ struct ISteamUtils_SteamUtils010_ShowGamepadTextInput_params struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextLength_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; }; struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; char *pchText; uint32_t cchText; @@ -48646,62 +48646,62 @@ struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextInput_params struct ISteamUtils_SteamUtils010_GetSteamUILanguage_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; const char *_ret; }; struct ISteamUtils_SteamUtils010_IsSteamRunningInVR_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils010_SetOverlayNotificationInset_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t nHorizontalInset; int32_t nVerticalInset; }; struct ISteamUtils_SteamUtils010_IsSteamInBigPictureMode_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils010_StartVRDashboard_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; }; struct ISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bEnabled; }; struct ISteamUtils_SteamUtils010_IsSteamChinaLauncher_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils010_InitFilterText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t unFilterOptions; }; struct ISteamUtils_SteamUtils010_FilterText_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int32_t _ret; uint32_t eContext; CSteamID sourceSteamID; @@ -48712,20 +48712,20 @@ struct ISteamUtils_SteamUtils010_FilterText_params struct ISteamUtils_SteamUtils010_GetIPv6ConnectivityState_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; uint32_t _ret; uint32_t eProtocol; }; struct ISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; uint32_t eKeyboardMode; int32_t nTextFieldXPosition; @@ -48736,19 +48736,19 @@ struct ISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput_params struct ISteamUtils_SteamUtils010_SetGameLauncherMode_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t bLauncherMode; }; struct ISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; struct ISteamUtils_SteamUtils010_DismissGamepadTextInput_params { - struct u_steam_iface *linux_side; + struct u_iface *u_iface; int8_t _ret; }; diff --git a/lsteamclient/winISteamAppList.c b/lsteamclient/winISteamAppList.c index 1e4b11b3..365868cf 100644 --- a/lsteamclient/winISteamAppList.c +++ b/lsteamclient/winISteamAppList.c @@ -9,22 +9,22 @@ DEFINE_THISCALL_WRAPPER(winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAp DEFINE_THISCALL_WRAPPER(winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir, 16) DEFINE_THISCALL_WRAPPER(winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId, 8) -uint32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps(struct w_steam_iface *_this) +uint32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps(struct w_iface *_this) { struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetNumInstalledApps, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps(struct w_steam_iface *_this, uint32_t *pvecAppID, uint32_t unMaxAppIDs) +uint32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps(struct w_iface *_this, uint32_t *pvecAppID, uint32_t unMaxAppIDs) { struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstalledApps_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecAppID = pvecAppID, .unMaxAppIDs = unMaxAppIDs, }; @@ -33,11 +33,11 @@ uint32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetInstal return params._ret; } -int32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName(struct w_steam_iface *_this, uint32_t nAppID, char *pchName, int32_t cchNameMax) +int32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName(struct w_iface *_this, uint32_t nAppID, char *pchName, int32_t cchNameMax) { struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .pchName = pchName, .cchNameMax = cchNameMax, @@ -47,11 +47,11 @@ int32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppName return params._ret; } -int32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir(struct w_steam_iface *_this, uint32_t nAppID, char *pchDirectory, int32_t cchNameMax) +int32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir(struct w_iface *_this, uint32_t nAppID, char *pchDirectory, int32_t cchNameMax) { struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInstallDir_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .pchDirectory = pchDirectory, .cchNameMax = cchNameMax, @@ -61,11 +61,11 @@ int32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppInst return params._ret; } -int32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId(struct w_steam_iface *_this, uint32_t nAppID) +int32_t __thiscall winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId(struct w_iface *_this, uint32_t nAppID) { struct ISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_GetAppBuildId_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); @@ -87,9 +87,9 @@ __ASM_BLOCK_BEGIN(winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001(void *u_iface) +struct w_iface *create_winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMAPPLIST_INTERFACE_VERSION001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPLIST_INTERFACE_VERSION001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamAppList_STEAMAPPLIST_INTERFACE_VERSION001_vtable, 5, "STEAMAPPLIST_INTERFACE_VERSION001"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamAppTicket.c b/lsteamclient/winISteamAppTicket.c index baa8b85c..28ebe4d8 100644 --- a/lsteamclient/winISteamAppTicket.c +++ b/lsteamclient/winISteamAppTicket.c @@ -5,11 +5,11 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); DEFINE_THISCALL_WRAPPER(winISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData, 32) -uint32_t __thiscall winISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData(struct w_steam_iface *_this, uint32_t nAppID, void *pvBuffer, uint32_t cbBufferLength, uint32_t *piAppId, uint32_t *piSteamId, uint32_t *piSignature, uint32_t *pcbSignature) +uint32_t __thiscall winISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData(struct w_iface *_this, uint32_t nAppID, void *pvBuffer, uint32_t cbBufferLength, uint32_t *piAppId, uint32_t *piSteamId, uint32_t *piSignature, uint32_t *pcbSignature) { struct ISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_GetAppOwnershipTicketData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .pvBuffer = pvBuffer, .cbBufferLength = cbBufferLength, @@ -33,9 +33,9 @@ __ASM_BLOCK_BEGIN(winISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_vtables ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001(void *u_iface) +struct w_iface *create_winISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMAPPTICKET_INTERFACE_VERSION001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPTICKET_INTERFACE_VERSION001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamAppTicket_STEAMAPPTICKET_INTERFACE_VERSION001_vtable, 1, "STEAMAPPTICKET_INTERFACE_VERSION001"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamApps.c b/lsteamclient/winISteamApps.c index 81417d42..a3091de1 100644 --- a/lsteamclient/winISteamApps.c +++ b/lsteamclient/winISteamApps.c @@ -5,11 +5,11 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData, 20) -int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData(struct w_steam_iface *_this, uint32_t nAppID, const char *pchKey, char *pchValue, int32_t cchValueMax) +int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData(struct w_iface *_this, uint32_t nAppID, const char *pchKey, char *pchValue, int32_t cchValueMax) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION001_GetAppData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .pchKey = pchKey, .pchValue = pchValue, @@ -31,9 +31,9 @@ __ASM_BLOCK_BEGIN(winISteamApps_STEAMAPPS_INTERFACE_VERSION001_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION001(void *u_iface) +struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMAPPS_INTERFACE_VERSION001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPS_INTERFACE_VERSION001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamApps_STEAMAPPS_INTERFACE_VERSION001_vtable, 1, "STEAMAPPS_INTERFACE_VERSION001"); r->u_iface = u_iface; @@ -48,77 +48,77 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentG DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages, 4) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp, 8) -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned, ¶ms ); return params._ret; } -const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage(struct w_steam_iface *_this) +const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage, ¶ms ); return params._ret; } -const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages(struct w_steam_iface *_this) +const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp(struct w_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); @@ -142,9 +142,9 @@ __ASM_BLOCK_BEGIN(winISteamApps_STEAMAPPS_INTERFACE_VERSION002_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION002(void *u_iface) +struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMAPPS_INTERFACE_VERSION002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPS_INTERFACE_VERSION002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamApps_STEAMAPPS_INTERFACE_VERSION002_vtable, 7, "STEAMAPPS_INTERFACE_VERSION002"); r->u_iface = u_iface; @@ -160,77 +160,77 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailabl DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp, 8) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled, 8) -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned, ¶ms ); return params._ret; } -const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage(struct w_steam_iface *_this) +const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage, ¶ms ); return params._ret; } -const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages(struct w_steam_iface *_this) +const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp(struct w_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); @@ -238,11 +238,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp( return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled(struct w_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); @@ -267,9 +267,9 @@ __ASM_BLOCK_BEGIN(winISteamApps_STEAMAPPS_INTERFACE_VERSION003_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION003(void *u_iface) +struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION003( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMAPPS_INTERFACE_VERSION003"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPS_INTERFACE_VERSION003"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamApps_STEAMAPPS_INTERFACE_VERSION003_vtable, 8, "STEAMAPPS_INTERFACE_VERSION003"); r->u_iface = u_iface; @@ -291,77 +291,77 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCData DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC, 8) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC, 8) -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned, ¶ms ); return params._ret; } -const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage(struct w_steam_iface *_this) +const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage, ¶ms ); return params._ret; } -const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages(struct w_steam_iface *_this) +const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp(struct w_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); @@ -369,11 +369,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedApp( return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled(struct w_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); @@ -381,11 +381,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsDlcInstalled(s return params._ret; } -uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime(struct w_steam_iface *_this, uint32_t nAppID) +uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); @@ -393,33 +393,33 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurc return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend, ¶ms ); return params._ret; } -int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, int8_t *pbAvailable, char *pchName, int32_t cchNameBufferSize) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex(struct w_iface *_this, int32_t iDLC, uint32_t *pAppID, int8_t *pbAvailable, char *pchName, int32_t cchNameBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iDLC = iDLC, .pAppID = pAppID, .pbAvailable = pbAvailable, @@ -431,22 +431,22 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByInde return params._ret; } -void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC, ¶ms ); } -void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION004_UninstallDLC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); @@ -476,9 +476,9 @@ __ASM_BLOCK_BEGIN(winISteamApps_STEAMAPPS_INTERFACE_VERSION004_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION004(void *u_iface) +struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION004( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMAPPS_INTERFACE_VERSION004"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPS_INTERFACE_VERSION004"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamApps_STEAMAPPS_INTERFACE_VERSION004_vtable, 14, "STEAMAPPS_INTERFACE_VERSION004"); r->u_iface = u_iface; @@ -506,77 +506,77 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalle DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir, 16) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled, 8) -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribed, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsLowViolence, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsCybercafe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsVACBanned, ¶ms ); return params._ret; } -const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage(struct w_steam_iface *_this) +const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentGameLanguage, ¶ms ); return params._ret; } -const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages(struct w_steam_iface *_this) +const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAvailableGameLanguages, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp(struct w_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); @@ -584,11 +584,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedApp( return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled(struct w_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); @@ -596,11 +596,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsDlcInstalled(s return params._ret; } -uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime(struct w_steam_iface *_this, uint32_t nAppID) +uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurchaseUnixTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); @@ -608,33 +608,33 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetEarliestPurc return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsSubscribedFromFreeWeekend, ¶ms ); return params._ret; } -int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetDLCCount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, int8_t *pbAvailable, char *pchName, int32_t cchNameBufferSize) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex(struct w_iface *_this, int32_t iDLC, uint32_t *pAppID, int8_t *pbAvailable, char *pchName, int32_t cchNameBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iDLC = iDLC, .pAppID = pAppID, .pbAvailable = pbAvailable, @@ -646,44 +646,44 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BGetDLCDataByInde return params._ret; } -void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_InstallDLC, ¶ms ); } -void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_UninstallDLC, ¶ms ); } -void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION005_RequestAppProofOfPurchaseKey, ¶ms ); } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName(struct w_steam_iface *_this, char *pchName, int32_t cchNameBufferSize) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName(struct w_iface *_this, char *pchName, int32_t cchNameBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .cchNameBufferSize = cchNameBufferSize, }; @@ -692,11 +692,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetCurrentBetaNam return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt(struct w_steam_iface *_this, int8_t bMissingFilesOnly) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt(struct w_iface *_this, int8_t bMissingFilesOnly) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrupt_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bMissingFilesOnly = bMissingFilesOnly, }; TRACE("%p\n", _this); @@ -704,11 +704,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_MarkContentCorrup return params._ret; } -uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots(struct w_steam_iface *_this, uint32_t *pvecDepots, uint32_t cMaxDepots) +uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots(struct w_iface *_this, uint32_t *pvecDepots, uint32_t cMaxDepots) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDepots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecDepots = pvecDepots, .cMaxDepots = cMaxDepots, }; @@ -717,11 +717,11 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetInstalledDep return params._ret; } -uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir(struct w_steam_iface *_this, uint32_t appID, char *pchFolder, uint32_t cchFolderBufferSize) +uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir(struct w_iface *_this, uint32_t appID, char *pchFolder, uint32_t cchFolderBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDir_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, .pchFolder = pchFolder, .cchFolderBufferSize = cchFolderBufferSize, @@ -731,11 +731,11 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_GetAppInstallDi return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled(struct w_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION005_BIsAppInstalled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); @@ -772,9 +772,9 @@ __ASM_BLOCK_BEGIN(winISteamApps_STEAMAPPS_INTERFACE_VERSION005_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION005(void *u_iface) +struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION005( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMAPPS_INTERFACE_VERSION005"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPS_INTERFACE_VERSION005"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamApps_STEAMAPPS_INTERFACE_VERSION005_vtable, 20, "STEAMAPPS_INTERFACE_VERSION005"); r->u_iface = u_iface; @@ -804,77 +804,77 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInsta DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner, 8) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam, 8) -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribed, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsLowViolence, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsCybercafe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsVACBanned, ¶ms ); return params._ret; } -const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage(struct w_steam_iface *_this) +const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentGameLanguage, ¶ms ); return params._ret; } -const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages(struct w_steam_iface *_this) +const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAvailableGameLanguages, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp(struct w_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); @@ -882,11 +882,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedApp( return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled(struct w_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); @@ -894,11 +894,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsDlcInstalled(s return params._ret; } -uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime(struct w_steam_iface *_this, uint32_t nAppID) +uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurchaseUnixTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); @@ -906,33 +906,33 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetEarliestPurc return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsSubscribedFromFreeWeekend, ¶ms ); return params._ret; } -int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetDLCCount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, int8_t *pbAvailable, char *pchName, int32_t cchNameBufferSize) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex(struct w_iface *_this, int32_t iDLC, uint32_t *pAppID, int8_t *pbAvailable, char *pchName, int32_t cchNameBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iDLC = iDLC, .pAppID = pAppID, .pbAvailable = pbAvailable, @@ -944,44 +944,44 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BGetDLCDataByInde return params._ret; } -void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_InstallDLC, ¶ms ); } -void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_UninstallDLC, ¶ms ); } -void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION006_RequestAppProofOfPurchaseKey, ¶ms ); } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName(struct w_steam_iface *_this, char *pchName, int32_t cchNameBufferSize) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName(struct w_iface *_this, char *pchName, int32_t cchNameBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .cchNameBufferSize = cchNameBufferSize, }; @@ -990,11 +990,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetCurrentBetaNam return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt(struct w_steam_iface *_this, int8_t bMissingFilesOnly) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt(struct w_iface *_this, int8_t bMissingFilesOnly) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrupt_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bMissingFilesOnly = bMissingFilesOnly, }; TRACE("%p\n", _this); @@ -1002,11 +1002,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_MarkContentCorrup return params._ret; } -uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots(struct w_steam_iface *_this, uint32_t appID, uint32_t *pvecDepots, uint32_t cMaxDepots) +uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots(struct w_iface *_this, uint32_t appID, uint32_t *pvecDepots, uint32_t cMaxDepots) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDepots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, .pvecDepots = pvecDepots, .cMaxDepots = cMaxDepots, @@ -1016,11 +1016,11 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetInstalledDep return params._ret; } -uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir(struct w_steam_iface *_this, uint32_t appID, char *pchFolder, uint32_t cchFolderBufferSize) +uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir(struct w_iface *_this, uint32_t appID, char *pchFolder, uint32_t cchFolderBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDir_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, .pchFolder = pchFolder, .cchFolderBufferSize = cchFolderBufferSize, @@ -1030,11 +1030,11 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppInstallDi return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled(struct w_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); @@ -1042,11 +1042,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_BIsAppInstalled(s return params._ret; } -CSteamID * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner(struct w_iface *_this, CSteamID *_ret) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -1054,11 +1054,11 @@ CSteamID * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetAppOwner(s return params._ret; } -const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam(struct w_steam_iface *_this, const char *pchKey) +const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam(struct w_iface *_this, const char *pchKey) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION006_GetLaunchQueryParam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKey = pchKey, }; TRACE("%p\n", _this); @@ -1098,9 +1098,9 @@ __ASM_BLOCK_BEGIN(winISteamApps_STEAMAPPS_INTERFACE_VERSION006_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION006(void *u_iface) +struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION006( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMAPPS_INTERFACE_VERSION006"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPS_INTERFACE_VERSION006"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamApps_STEAMAPPS_INTERFACE_VERSION006_vtable, 22, "STEAMAPPS_INTERFACE_VERSION006"); r->u_iface = u_iface; @@ -1132,77 +1132,77 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQu DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress, 16) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId, 4) -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned, ¶ms ); return params._ret; } -const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage(struct w_steam_iface *_this) +const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage, ¶ms ); return params._ret; } -const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages(struct w_steam_iface *_this) +const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp(struct w_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); @@ -1210,11 +1210,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedApp( return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled(struct w_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); @@ -1222,11 +1222,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsDlcInstalled(s return params._ret; } -uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime(struct w_steam_iface *_this, uint32_t nAppID) +uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurchaseUnixTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); @@ -1234,33 +1234,33 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetEarliestPurc return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribedFromFreeWeekend, ¶ms ); return params._ret; } -int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, int8_t *pbAvailable, char *pchName, int32_t cchNameBufferSize) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex(struct w_iface *_this, int32_t iDLC, uint32_t *pAppID, int8_t *pbAvailable, char *pchName, int32_t cchNameBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iDLC = iDLC, .pAppID = pAppID, .pbAvailable = pbAvailable, @@ -1272,44 +1272,44 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BGetDLCDataByInde return params._ret; } -void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_InstallDLC, ¶ms ); } -void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_UninstallDLC, ¶ms ); } -void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey, ¶ms ); } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName(struct w_steam_iface *_this, char *pchName, int32_t cchNameBufferSize) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName(struct w_iface *_this, char *pchName, int32_t cchNameBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .cchNameBufferSize = cchNameBufferSize, }; @@ -1318,11 +1318,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaNam return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt(struct w_steam_iface *_this, int8_t bMissingFilesOnly) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt(struct w_iface *_this, int8_t bMissingFilesOnly) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bMissingFilesOnly = bMissingFilesOnly, }; TRACE("%p\n", _this); @@ -1330,11 +1330,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrup return params._ret; } -uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots(struct w_steam_iface *_this, uint32_t appID, uint32_t *pvecDepots, uint32_t cMaxDepots) +uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots(struct w_iface *_this, uint32_t appID, uint32_t *pvecDepots, uint32_t cMaxDepots) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, .pvecDepots = pvecDepots, .cMaxDepots = cMaxDepots, @@ -1344,11 +1344,11 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDep return params._ret; } -uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir(struct w_steam_iface *_this, uint32_t appID, char *pchFolder, uint32_t cchFolderBufferSize) +uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir(struct w_iface *_this, uint32_t appID, char *pchFolder, uint32_t cchFolderBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, .pchFolder = pchFolder, .cchFolderBufferSize = cchFolderBufferSize, @@ -1358,11 +1358,11 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDi return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled(struct w_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); @@ -1370,11 +1370,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled(s return params._ret; } -CSteamID * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner(struct w_iface *_this, CSteamID *_ret) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -1382,11 +1382,11 @@ CSteamID * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner(s return params._ret; } -const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam(struct w_steam_iface *_this, const char *pchKey) +const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam(struct w_iface *_this, const char *pchKey) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKey = pchKey, }; TRACE("%p\n", _this); @@ -1395,11 +1395,11 @@ const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQu return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress(struct w_steam_iface *_this, uint32_t nAppID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress(struct w_iface *_this, uint32_t nAppID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .punBytesDownloaded = punBytesDownloaded, .punBytesTotal = punBytesTotal, @@ -1409,11 +1409,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadPro return params._ret; } -int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId(struct w_steam_iface *_this) +int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId, ¶ms ); @@ -1453,9 +1453,9 @@ __ASM_BLOCK_BEGIN(winISteamApps_STEAMAPPS_INTERFACE_VERSION007_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION007(void *u_iface) +struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION007( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMAPPS_INTERFACE_VERSION007"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPS_INTERFACE_VERSION007"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamApps_STEAMAPPS_INTERFACE_VERSION007_vtable, 24, "STEAMAPPS_INTERFACE_VERSION007"); r->u_iface = u_iface; @@ -1496,77 +1496,77 @@ DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetNumBetas DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetBetaInfo, 32) DEFINE_THISCALL_WRAPPER(winISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetActiveBeta, 8) -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribed, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsLowViolence, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsCybercafe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsVACBanned, ¶ms ); return params._ret; } -const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage(struct w_steam_iface *_this) +const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentGameLanguage, ¶ms ); return params._ret; } -const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages(struct w_steam_iface *_this) +const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAvailableGameLanguages, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp(struct w_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); @@ -1574,11 +1574,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedApp( return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled(struct w_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); @@ -1586,11 +1586,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsDlcInstalled(s return params._ret; } -uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime(struct w_steam_iface *_this, uint32_t nAppID) +uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurchaseUnixTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); @@ -1598,33 +1598,33 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetEarliestPurc return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFreeWeekend, ¶ms ); return params._ret; } -int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDLCCount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex(struct w_steam_iface *_this, int32_t iDLC, uint32_t *pAppID, int8_t *pbAvailable, char *pchName, int32_t cchNameBufferSize) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex(struct w_iface *_this, int32_t iDLC, uint32_t *pAppID, int8_t *pbAvailable, char *pchName, int32_t cchNameBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iDLC = iDLC, .pAppID = pAppID, .pbAvailable = pbAvailable, @@ -1636,44 +1636,44 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BGetDLCDataByInde return params._ret; } -void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_InstallDLC, ¶ms ); } -void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_UninstallDLC, ¶ms ); } -void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAppProofOfPurchaseKey, ¶ms ); } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName(struct w_steam_iface *_this, char *pchName, int32_t cchNameBufferSize) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName(struct w_iface *_this, char *pchName, int32_t cchNameBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .cchNameBufferSize = cchNameBufferSize, }; @@ -1682,11 +1682,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetCurrentBetaNam return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt(struct w_steam_iface *_this, int8_t bMissingFilesOnly) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt(struct w_iface *_this, int8_t bMissingFilesOnly) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrupt_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bMissingFilesOnly = bMissingFilesOnly, }; TRACE("%p\n", _this); @@ -1694,11 +1694,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_MarkContentCorrup return params._ret; } -uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots(struct w_steam_iface *_this, uint32_t appID, uint32_t *pvecDepots, uint32_t cMaxDepots) +uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots(struct w_iface *_this, uint32_t appID, uint32_t *pvecDepots, uint32_t cMaxDepots) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDepots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, .pvecDepots = pvecDepots, .cMaxDepots = cMaxDepots, @@ -1708,11 +1708,11 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetInstalledDep return params._ret; } -uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir(struct w_steam_iface *_this, uint32_t appID, char *pchFolder, uint32_t cchFolderBufferSize) +uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir(struct w_iface *_this, uint32_t appID, char *pchFolder, uint32_t cchFolderBufferSize) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDir_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, .pchFolder = pchFolder, .cchFolderBufferSize = cchFolderBufferSize, @@ -1722,11 +1722,11 @@ uint32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppInstallDi return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled(struct w_steam_iface *_this, uint32_t appID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled(struct w_iface *_this, uint32_t appID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .appID = appID, }; TRACE("%p\n", _this); @@ -1734,11 +1734,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsAppInstalled(s return params._ret; } -CSteamID * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner(struct w_iface *_this, CSteamID *_ret) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -1746,11 +1746,11 @@ CSteamID * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppOwner(s return params._ret; } -const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam(struct w_steam_iface *_this, const char *pchKey) +const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam(struct w_iface *_this, const char *pchKey) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQueryParam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKey = pchKey, }; TRACE("%p\n", _this); @@ -1759,11 +1759,11 @@ const char * __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchQu return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress(struct w_steam_iface *_this, uint32_t nAppID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress(struct w_iface *_this, uint32_t nAppID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .punBytesDownloaded = punBytesDownloaded, .punBytesTotal = punBytesTotal, @@ -1773,32 +1773,32 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetDlcDownloadPro return params._ret; } -int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId(struct w_steam_iface *_this) +int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetAppBuildId, ¶ms ); return params._ret; } -void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys(struct w_steam_iface *_this) +void __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_RequestAllProofOfPurchaseKeys, ¶ms ); } -uint64_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails(struct w_steam_iface *_this, const char *pszFileName) +uint64_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails(struct w_iface *_this, const char *pszFileName) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszFileName = pszFileName, }; TRACE("%p\n", _this); @@ -1807,11 +1807,11 @@ uint64_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetFileDetails( return params._ret; } -int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine(struct w_steam_iface *_this, char *pszCommandLine, int32_t cubCommandLine) +int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine(struct w_iface *_this, char *pszCommandLine, int32_t cubCommandLine) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommandLine_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszCommandLine = pszCommandLine, .cubCommandLine = cubCommandLine, }; @@ -1820,22 +1820,22 @@ int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetLaunchCommand return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing(struct w_steam_iface *_this) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing(struct w_iface *_this) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsSubscribedFromFamilySharing, ¶ms ); return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial(struct w_steam_iface *_this, uint32_t *punSecondsAllowed, uint32_t *punSecondsPlayed) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial(struct w_iface *_this, uint32_t *punSecondsAllowed, uint32_t *punSecondsPlayed) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .punSecondsAllowed = punSecondsAllowed, .punSecondsPlayed = punSecondsPlayed, }; @@ -1844,11 +1844,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_BIsTimedTrial(str return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext(struct w_steam_iface *_this, uint32_t nAppID) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext(struct w_iface *_this, uint32_t nAppID) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); @@ -1856,11 +1856,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetDlcContext(str return params._ret; } -int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetNumBetas(struct w_steam_iface *_this, int32_t *pnAvailable, int32_t *pnPrivate) +int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetNumBetas(struct w_iface *_this, int32_t *pnAvailable, int32_t *pnPrivate) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetNumBetas_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnAvailable = pnAvailable, .pnPrivate = pnPrivate, }; @@ -1869,11 +1869,11 @@ int32_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetNumBetas(stru return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetBetaInfo(struct w_steam_iface *_this, int32_t iBetaIndex, uint32_t *punFlags, uint32_t *punBuildID, char *pchBetaName, int32_t cchBetaName, char *pchDescription, int32_t cchDescription) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetBetaInfo(struct w_iface *_this, int32_t iBetaIndex, uint32_t *punFlags, uint32_t *punBuildID, char *pchBetaName, int32_t cchBetaName, char *pchDescription, int32_t cchDescription) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetBetaInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iBetaIndex = iBetaIndex, .punFlags = punFlags, .punBuildID = punBuildID, @@ -1887,11 +1887,11 @@ int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_GetBetaInfo(struc return params._ret; } -int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetActiveBeta(struct w_steam_iface *_this, const char *pchBetaName) +int8_t __thiscall winISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetActiveBeta(struct w_iface *_this, const char *pchBetaName) { struct ISteamApps_STEAMAPPS_INTERFACE_VERSION008_SetActiveBeta_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchBetaName = pchBetaName, }; TRACE("%p\n", _this); @@ -1942,9 +1942,9 @@ __ASM_BLOCK_BEGIN(winISteamApps_STEAMAPPS_INTERFACE_VERSION008_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION008(void *u_iface) +struct w_iface *create_winISteamApps_STEAMAPPS_INTERFACE_VERSION008( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMAPPS_INTERFACE_VERSION008"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMAPPS_INTERFACE_VERSION008"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamApps_STEAMAPPS_INTERFACE_VERSION008_vtable, 33, "STEAMAPPS_INTERFACE_VERSION008"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamClient.c b/lsteamclient/winISteamClient.c index 7300534d..a58af75d 100644 --- a/lsteamclient/winISteamClient.c +++ b/lsteamclient/winISteamClient.c @@ -25,22 +25,22 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient006_GetISteamMatchmakingServe DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient006_RunFrame, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient006_GetIPCCallCount, 4) -int32_t __thiscall winISteamClient_SteamClient006_CreateSteamPipe(struct w_steam_iface *_this) +int32_t __thiscall winISteamClient_SteamClient006_CreateSteamPipe(struct w_iface *_this) { struct ISteamClient_SteamClient006_CreateSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient006_CreateSteamPipe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamClient_SteamClient006_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient006_BReleaseSteamPipe(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient006_BReleaseSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -48,11 +48,11 @@ int8_t __thiscall winISteamClient_SteamClient006_BReleaseSteamPipe(struct w_stea return params._ret; } -int32_t __thiscall winISteamClient_SteamClient006_CreateGlobalUser(struct w_steam_iface *_this, int32_t *phSteamPipe) +int32_t __thiscall winISteamClient_SteamClient006_CreateGlobalUser(struct w_iface *_this, int32_t *phSteamPipe) { struct ISteamClient_SteamClient006_CreateGlobalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .phSteamPipe = phSteamPipe, }; TRACE("%p\n", _this); @@ -60,11 +60,11 @@ int32_t __thiscall winISteamClient_SteamClient006_CreateGlobalUser(struct w_stea return params._ret; } -int32_t __thiscall winISteamClient_SteamClient006_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) +int32_t __thiscall winISteamClient_SteamClient006_ConnectToGlobalUser(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient006_ConnectToGlobalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -72,11 +72,11 @@ int32_t __thiscall winISteamClient_SteamClient006_ConnectToGlobalUser(struct w_s return params._ret; } -int32_t __thiscall winISteamClient_SteamClient006_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe) +int32_t __thiscall winISteamClient_SteamClient006_CreateLocalUser(struct w_iface *_this, int32_t *phSteamPipe) { struct ISteamClient_SteamClient006_CreateLocalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .phSteamPipe = phSteamPipe, }; TRACE("%p\n", _this); @@ -84,11 +84,11 @@ int32_t __thiscall winISteamClient_SteamClient006_CreateLocalUser(struct w_steam return params._ret; } -void __thiscall winISteamClient_SteamClient006_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) +void __thiscall winISteamClient_SteamClient006_ReleaseUser(struct w_iface *_this, int32_t hSteamPipe, int32_t hUser) { struct ISteamClient_SteamClient006_ReleaseUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; @@ -96,11 +96,11 @@ void __thiscall winISteamClient_SteamClient006_ReleaseUser(struct w_steam_iface STEAMCLIENT_CALL( ISteamClient_SteamClient006_ReleaseUser, ¶ms ); } -void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient006_GetISteamUser(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient006_GetISteamUser(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient006_GetISteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -112,11 +112,11 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient006_GetISteamUser(st return params._ret; } -void * __thiscall winISteamClient_SteamClient006_GetIVAC(struct w_steam_iface *_this, int32_t hSteamUser) +void * __thiscall winISteamClient_SteamClient006_GetIVAC(struct w_iface *_this, int32_t hSteamUser) { struct ISteamClient_SteamClient006_GetIVAC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, }; TRACE("%p\n", _this); @@ -124,11 +124,11 @@ void * __thiscall winISteamClient_SteamClient006_GetIVAC(struct w_steam_iface *_ return params._ret; } -void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient006_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient006_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient006_GetISteamGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -140,11 +140,11 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient006_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient006_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) +void __thiscall winISteamClient_SteamClient006_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) { struct ISteamClient_SteamClient006_SetLocalIPBinding_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -152,11 +152,11 @@ void __thiscall winISteamClient_SteamClient006_SetLocalIPBinding(struct w_steam_ STEAMCLIENT_CALL( ISteamClient_SteamClient006_SetLocalIPBinding, ¶ms ); } -const char * __thiscall winISteamClient_SteamClient006_GetUniverseName(struct w_steam_iface *_this, uint32_t eUniverse) +const char * __thiscall winISteamClient_SteamClient006_GetUniverseName(struct w_iface *_this, uint32_t eUniverse) { struct ISteamClient_SteamClient006_GetUniverseName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eUniverse = eUniverse, }; TRACE("%p\n", _this); @@ -164,11 +164,11 @@ const char * __thiscall winISteamClient_SteamClient006_GetUniverseName(struct w_ return params._ret; } -void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient006_GetISteamFriends(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient006_GetISteamFriends(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient006_GetISteamFriends_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -180,11 +180,11 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient006_GetISteamFrie return params._ret; } -void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient006_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient006_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient006_GetISteamUtils_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; @@ -195,11 +195,11 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient006_GetISteamUtils( return params._ret; } -void * __thiscall winISteamClient_SteamClient006_GetISteamBilling(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient006_GetISteamBilling(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient006_GetISteamBilling_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -207,14 +207,15 @@ void * __thiscall winISteamClient_SteamClient006_GetISteamBilling(struct w_steam TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetISteamBilling, ¶ms ); + params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } -void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient006_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient006_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient006_GetISteamMatchmaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -226,11 +227,11 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient006_GetISteam return params._ret; } -void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient006_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient006_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient006_GetISteamApps_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -242,11 +243,11 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient006_GetISteamApps(st return params._ret; } -void /*ISteamContentServer*/ * __thiscall winISteamClient_SteamClient006_GetISteamContentServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamContentServer*/ * __thiscall winISteamClient_SteamClient006_GetISteamContentServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient006_GetISteamContentServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -258,11 +259,11 @@ void /*ISteamContentServer*/ * __thiscall winISteamClient_SteamClient006_GetISte return params._ret; } -void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient006_GetISteamMasterServerUpdater(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient006_GetISteamMasterServerUpdater(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient006_GetISteamMasterServerUpdater_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -274,11 +275,11 @@ void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient006_G return params._ret; } -void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient006_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient006_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient006_GetISteamMatchmakingServers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -290,21 +291,21 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient006_Ge return params._ret; } -void __thiscall winISteamClient_SteamClient006_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamClient_SteamClient006_RunFrame(struct w_iface *_this) { struct ISteamClient_SteamClient006_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient006_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamClient_SteamClient006_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamClient_SteamClient006_GetIPCCallCount(struct w_iface *_this) { struct ISteamClient_SteamClient006_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient006_GetIPCCallCount, ¶ms ); @@ -341,9 +342,9 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient006_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamClient_SteamClient006(void *u_iface) +struct w_iface *create_winISteamClient_SteamClient006( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamClient006"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient006"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamClient_SteamClient006_vtable, 21, "SteamClient006"); r->u_iface = u_iface; @@ -373,22 +374,22 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient007_GetISteamNetworking, 16) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient007_SetWarningMessageHook, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient007_GetISteamRemoteStorage, 16) -int32_t __thiscall winISteamClient_SteamClient007_CreateSteamPipe(struct w_steam_iface *_this) +int32_t __thiscall winISteamClient_SteamClient007_CreateSteamPipe(struct w_iface *_this) { struct ISteamClient_SteamClient007_CreateSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient007_CreateSteamPipe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamClient_SteamClient007_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient007_BReleaseSteamPipe(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient007_BReleaseSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -396,11 +397,11 @@ int8_t __thiscall winISteamClient_SteamClient007_BReleaseSteamPipe(struct w_stea return params._ret; } -int32_t __thiscall winISteamClient_SteamClient007_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) +int32_t __thiscall winISteamClient_SteamClient007_ConnectToGlobalUser(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient007_ConnectToGlobalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -408,11 +409,11 @@ int32_t __thiscall winISteamClient_SteamClient007_ConnectToGlobalUser(struct w_s return params._ret; } -int32_t __thiscall winISteamClient_SteamClient007_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe) +int32_t __thiscall winISteamClient_SteamClient007_CreateLocalUser(struct w_iface *_this, int32_t *phSteamPipe) { struct ISteamClient_SteamClient007_CreateLocalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .phSteamPipe = phSteamPipe, }; TRACE("%p\n", _this); @@ -420,11 +421,11 @@ int32_t __thiscall winISteamClient_SteamClient007_CreateLocalUser(struct w_steam return params._ret; } -void __thiscall winISteamClient_SteamClient007_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) +void __thiscall winISteamClient_SteamClient007_ReleaseUser(struct w_iface *_this, int32_t hSteamPipe, int32_t hUser) { struct ISteamClient_SteamClient007_ReleaseUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; @@ -432,11 +433,11 @@ void __thiscall winISteamClient_SteamClient007_ReleaseUser(struct w_steam_iface STEAMCLIENT_CALL( ISteamClient_SteamClient007_ReleaseUser, ¶ms ); } -void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient007_GetISteamUser(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient007_GetISteamUser(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient007_GetISteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -448,11 +449,11 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient007_GetISteamUser(st return params._ret; } -void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient007_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient007_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient007_GetISteamGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -464,11 +465,11 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient007_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient007_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) +void __thiscall winISteamClient_SteamClient007_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) { struct ISteamClient_SteamClient007_SetLocalIPBinding_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -476,11 +477,11 @@ void __thiscall winISteamClient_SteamClient007_SetLocalIPBinding(struct w_steam_ STEAMCLIENT_CALL( ISteamClient_SteamClient007_SetLocalIPBinding, ¶ms ); } -void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient007_GetISteamFriends(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient007_GetISteamFriends(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient007_GetISteamFriends_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -492,11 +493,11 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient007_GetISteamFrie return params._ret; } -void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient007_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient007_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient007_GetISteamUtils_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; @@ -507,11 +508,11 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient007_GetISteamUtils( return params._ret; } -void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient007_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient007_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient007_GetISteamMatchmaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -523,11 +524,11 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient007_GetISteam return params._ret; } -void /*ISteamContentServer*/ * __thiscall winISteamClient_SteamClient007_GetISteamContentServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamContentServer*/ * __thiscall winISteamClient_SteamClient007_GetISteamContentServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient007_GetISteamContentServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -539,11 +540,11 @@ void /*ISteamContentServer*/ * __thiscall winISteamClient_SteamClient007_GetISte return params._ret; } -void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient007_GetISteamMasterServerUpdater(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient007_GetISteamMasterServerUpdater(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient007_GetISteamMasterServerUpdater_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -555,11 +556,11 @@ void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient007_G return params._ret; } -void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient007_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient007_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient007_GetISteamMatchmakingServers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -571,11 +572,11 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient007_Ge return params._ret; } -void * __thiscall winISteamClient_SteamClient007_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient007_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient007_GetISteamGenericInterface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -587,32 +588,32 @@ void * __thiscall winISteamClient_SteamClient007_GetISteamGenericInterface(struc return params._ret; } -void __thiscall winISteamClient_SteamClient007_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamClient_SteamClient007_RunFrame(struct w_iface *_this) { struct ISteamClient_SteamClient007_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient007_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamClient_SteamClient007_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamClient_SteamClient007_GetIPCCallCount(struct w_iface *_this) { struct ISteamClient_SteamClient007_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient007_GetIPCCallCount, ¶ms ); return params._ret; } -void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient007_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient007_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient007_GetISteamUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -624,11 +625,11 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient007_GetISteamUs return params._ret; } -void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient007_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient007_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient007_GetISteamApps_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -640,11 +641,11 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient007_GetISteamApps(st return params._ret; } -void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient007_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient007_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient007_GetISteamNetworking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -656,22 +657,22 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient007_GetISteamN return params._ret; } -void __thiscall winISteamClient_SteamClient007_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamClient_SteamClient007_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamClient_SteamClient007_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient007_SetWarningMessageHook, ¶ms ); } -void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient007_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient007_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient007_GetISteamRemoteStorage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -714,9 +715,9 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient007_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamClient_SteamClient007(void *u_iface) +struct w_iface *create_winISteamClient_SteamClient007( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamClient007"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient007"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamClient_SteamClient007_vtable, 22, "SteamClient007"); r->u_iface = u_iface; @@ -745,22 +746,22 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient008_RunFrame, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient008_GetIPCCallCount, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient008_SetWarningMessageHook, 8) -int32_t __thiscall winISteamClient_SteamClient008_CreateSteamPipe(struct w_steam_iface *_this) +int32_t __thiscall winISteamClient_SteamClient008_CreateSteamPipe(struct w_iface *_this) { struct ISteamClient_SteamClient008_CreateSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient008_CreateSteamPipe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamClient_SteamClient008_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient008_BReleaseSteamPipe(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient008_BReleaseSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -768,11 +769,11 @@ int8_t __thiscall winISteamClient_SteamClient008_BReleaseSteamPipe(struct w_stea return params._ret; } -int32_t __thiscall winISteamClient_SteamClient008_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) +int32_t __thiscall winISteamClient_SteamClient008_ConnectToGlobalUser(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient008_ConnectToGlobalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -780,11 +781,11 @@ int32_t __thiscall winISteamClient_SteamClient008_ConnectToGlobalUser(struct w_s return params._ret; } -int32_t __thiscall winISteamClient_SteamClient008_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) +int32_t __thiscall winISteamClient_SteamClient008_CreateLocalUser(struct w_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { struct ISteamClient_SteamClient008_CreateLocalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; @@ -793,11 +794,11 @@ int32_t __thiscall winISteamClient_SteamClient008_CreateLocalUser(struct w_steam return params._ret; } -void __thiscall winISteamClient_SteamClient008_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) +void __thiscall winISteamClient_SteamClient008_ReleaseUser(struct w_iface *_this, int32_t hSteamPipe, int32_t hUser) { struct ISteamClient_SteamClient008_ReleaseUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; @@ -805,11 +806,11 @@ void __thiscall winISteamClient_SteamClient008_ReleaseUser(struct w_steam_iface STEAMCLIENT_CALL( ISteamClient_SteamClient008_ReleaseUser, ¶ms ); } -void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient008_GetISteamUser(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient008_GetISteamUser(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient008_GetISteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -821,11 +822,11 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient008_GetISteamUser(st return params._ret; } -void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient008_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient008_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient008_GetISteamGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -837,11 +838,11 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient008_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient008_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) +void __thiscall winISteamClient_SteamClient008_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) { struct ISteamClient_SteamClient008_SetLocalIPBinding_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -849,11 +850,11 @@ void __thiscall winISteamClient_SteamClient008_SetLocalIPBinding(struct w_steam_ STEAMCLIENT_CALL( ISteamClient_SteamClient008_SetLocalIPBinding, ¶ms ); } -void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient008_GetISteamFriends(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient008_GetISteamFriends(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient008_GetISteamFriends_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -865,11 +866,11 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient008_GetISteamFrie return params._ret; } -void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient008_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient008_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient008_GetISteamUtils_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; @@ -880,11 +881,11 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient008_GetISteamUtils( return params._ret; } -void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient008_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient008_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient008_GetISteamMatchmaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -896,11 +897,11 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient008_GetISteam return params._ret; } -void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient008_GetISteamMasterServerUpdater(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient008_GetISteamMasterServerUpdater(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient008_GetISteamMasterServerUpdater_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -912,11 +913,11 @@ void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient008_G return params._ret; } -void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient008_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient008_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient008_GetISteamMatchmakingServers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -928,11 +929,11 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient008_Ge return params._ret; } -void * __thiscall winISteamClient_SteamClient008_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient008_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient008_GetISteamGenericInterface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -944,11 +945,11 @@ void * __thiscall winISteamClient_SteamClient008_GetISteamGenericInterface(struc return params._ret; } -void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient008_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient008_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient008_GetISteamUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -960,11 +961,11 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient008_GetISteamUs return params._ret; } -void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient008_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient008_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient008_GetISteamApps_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -976,11 +977,11 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient008_GetISteamApps(st return params._ret; } -void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient008_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient008_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient008_GetISteamNetworking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -992,11 +993,11 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient008_GetISteamN return params._ret; } -void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient008_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient008_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient008_GetISteamRemoteStorage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1008,32 +1009,32 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient008_GetISte return params._ret; } -void __thiscall winISteamClient_SteamClient008_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamClient_SteamClient008_RunFrame(struct w_iface *_this) { struct ISteamClient_SteamClient008_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient008_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamClient_SteamClient008_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamClient_SteamClient008_GetIPCCallCount(struct w_iface *_this) { struct ISteamClient_SteamClient008_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient008_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamClient_SteamClient008_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamClient_SteamClient008_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamClient_SteamClient008_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); @@ -1070,9 +1071,9 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient008_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamClient_SteamClient008(void *u_iface) +struct w_iface *create_winISteamClient_SteamClient008( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamClient008"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient008"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamClient_SteamClient008_vtable, 21, "SteamClient008"); r->u_iface = u_iface; @@ -1102,22 +1103,22 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient009_RunFrame, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient009_GetIPCCallCount, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient009_SetWarningMessageHook, 8) -int32_t __thiscall winISteamClient_SteamClient009_CreateSteamPipe(struct w_steam_iface *_this) +int32_t __thiscall winISteamClient_SteamClient009_CreateSteamPipe(struct w_iface *_this) { struct ISteamClient_SteamClient009_CreateSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient009_CreateSteamPipe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamClient_SteamClient009_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient009_BReleaseSteamPipe(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient009_BReleaseSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -1125,11 +1126,11 @@ int8_t __thiscall winISteamClient_SteamClient009_BReleaseSteamPipe(struct w_stea return params._ret; } -int32_t __thiscall winISteamClient_SteamClient009_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) +int32_t __thiscall winISteamClient_SteamClient009_ConnectToGlobalUser(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient009_ConnectToGlobalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -1137,11 +1138,11 @@ int32_t __thiscall winISteamClient_SteamClient009_ConnectToGlobalUser(struct w_s return params._ret; } -int32_t __thiscall winISteamClient_SteamClient009_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) +int32_t __thiscall winISteamClient_SteamClient009_CreateLocalUser(struct w_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { struct ISteamClient_SteamClient009_CreateLocalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; @@ -1150,11 +1151,11 @@ int32_t __thiscall winISteamClient_SteamClient009_CreateLocalUser(struct w_steam return params._ret; } -void __thiscall winISteamClient_SteamClient009_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) +void __thiscall winISteamClient_SteamClient009_ReleaseUser(struct w_iface *_this, int32_t hSteamPipe, int32_t hUser) { struct ISteamClient_SteamClient009_ReleaseUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; @@ -1162,11 +1163,11 @@ void __thiscall winISteamClient_SteamClient009_ReleaseUser(struct w_steam_iface STEAMCLIENT_CALL( ISteamClient_SteamClient009_ReleaseUser, ¶ms ); } -void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient009_GetISteamUser(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient009_GetISteamUser(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient009_GetISteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1178,11 +1179,11 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient009_GetISteamUser(st return params._ret; } -void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient009_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient009_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient009_GetISteamGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1194,11 +1195,11 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient009_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient009_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) +void __thiscall winISteamClient_SteamClient009_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) { struct ISteamClient_SteamClient009_SetLocalIPBinding_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -1206,11 +1207,11 @@ void __thiscall winISteamClient_SteamClient009_SetLocalIPBinding(struct w_steam_ STEAMCLIENT_CALL( ISteamClient_SteamClient009_SetLocalIPBinding, ¶ms ); } -void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient009_GetISteamFriends(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient009_GetISteamFriends(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient009_GetISteamFriends_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1222,11 +1223,11 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient009_GetISteamFrie return params._ret; } -void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient009_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient009_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient009_GetISteamUtils_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; @@ -1237,11 +1238,11 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient009_GetISteamUtils( return params._ret; } -void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient009_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient009_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient009_GetISteamMatchmaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1253,11 +1254,11 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient009_GetISteam return params._ret; } -void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient009_GetISteamMasterServerUpdater(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient009_GetISteamMasterServerUpdater(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient009_GetISteamMasterServerUpdater_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1269,11 +1270,11 @@ void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient009_G return params._ret; } -void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient009_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient009_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient009_GetISteamMatchmakingServers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1285,11 +1286,11 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient009_Ge return params._ret; } -void * __thiscall winISteamClient_SteamClient009_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient009_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient009_GetISteamGenericInterface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1301,11 +1302,11 @@ void * __thiscall winISteamClient_SteamClient009_GetISteamGenericInterface(struc return params._ret; } -void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient009_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient009_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient009_GetISteamUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1317,11 +1318,11 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient009_GetISteamUs return params._ret; } -void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient009_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient009_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient009_GetISteamGameServerStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1333,11 +1334,11 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient009_GetIS return params._ret; } -void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient009_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient009_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient009_GetISteamApps_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1349,11 +1350,11 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient009_GetISteamApps(st return params._ret; } -void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient009_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient009_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient009_GetISteamNetworking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1365,11 +1366,11 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient009_GetISteamN return params._ret; } -void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient009_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient009_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient009_GetISteamRemoteStorage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1381,32 +1382,32 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient009_GetISte return params._ret; } -void __thiscall winISteamClient_SteamClient009_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamClient_SteamClient009_RunFrame(struct w_iface *_this) { struct ISteamClient_SteamClient009_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient009_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamClient_SteamClient009_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamClient_SteamClient009_GetIPCCallCount(struct w_iface *_this) { struct ISteamClient_SteamClient009_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient009_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamClient_SteamClient009_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamClient_SteamClient009_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamClient_SteamClient009_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); @@ -1444,9 +1445,9 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient009_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamClient_SteamClient009(void *u_iface) +struct w_iface *create_winISteamClient_SteamClient009( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamClient009"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient009"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamClient_SteamClient009_vtable, 22, "SteamClient009"); r->u_iface = u_iface; @@ -1478,22 +1479,22 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient010_SetWarningMessageHook, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient010_BShutdownIfAllPipesClosed, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient010_GetISteamHTTP, 16) -int32_t __thiscall winISteamClient_SteamClient010_CreateSteamPipe(struct w_steam_iface *_this) +int32_t __thiscall winISteamClient_SteamClient010_CreateSteamPipe(struct w_iface *_this) { struct ISteamClient_SteamClient010_CreateSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient010_CreateSteamPipe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamClient_SteamClient010_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient010_BReleaseSteamPipe(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient010_BReleaseSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -1501,11 +1502,11 @@ int8_t __thiscall winISteamClient_SteamClient010_BReleaseSteamPipe(struct w_stea return params._ret; } -int32_t __thiscall winISteamClient_SteamClient010_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) +int32_t __thiscall winISteamClient_SteamClient010_ConnectToGlobalUser(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient010_ConnectToGlobalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -1513,11 +1514,11 @@ int32_t __thiscall winISteamClient_SteamClient010_ConnectToGlobalUser(struct w_s return params._ret; } -int32_t __thiscall winISteamClient_SteamClient010_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) +int32_t __thiscall winISteamClient_SteamClient010_CreateLocalUser(struct w_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { struct ISteamClient_SteamClient010_CreateLocalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; @@ -1526,11 +1527,11 @@ int32_t __thiscall winISteamClient_SteamClient010_CreateLocalUser(struct w_steam return params._ret; } -void __thiscall winISteamClient_SteamClient010_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) +void __thiscall winISteamClient_SteamClient010_ReleaseUser(struct w_iface *_this, int32_t hSteamPipe, int32_t hUser) { struct ISteamClient_SteamClient010_ReleaseUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; @@ -1538,11 +1539,11 @@ void __thiscall winISteamClient_SteamClient010_ReleaseUser(struct w_steam_iface STEAMCLIENT_CALL( ISteamClient_SteamClient010_ReleaseUser, ¶ms ); } -void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient010_GetISteamUser(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient010_GetISteamUser(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient010_GetISteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1554,11 +1555,11 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient010_GetISteamUser(st return params._ret; } -void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient010_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient010_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient010_GetISteamGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1570,11 +1571,11 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient010_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient010_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) +void __thiscall winISteamClient_SteamClient010_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) { struct ISteamClient_SteamClient010_SetLocalIPBinding_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -1582,11 +1583,11 @@ void __thiscall winISteamClient_SteamClient010_SetLocalIPBinding(struct w_steam_ STEAMCLIENT_CALL( ISteamClient_SteamClient010_SetLocalIPBinding, ¶ms ); } -void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient010_GetISteamFriends(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient010_GetISteamFriends(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient010_GetISteamFriends_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1598,11 +1599,11 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient010_GetISteamFrie return params._ret; } -void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient010_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient010_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient010_GetISteamUtils_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; @@ -1613,11 +1614,11 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient010_GetISteamUtils( return params._ret; } -void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient010_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient010_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient010_GetISteamMatchmaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1629,11 +1630,11 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient010_GetISteam return params._ret; } -void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient010_GetISteamMasterServerUpdater(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient010_GetISteamMasterServerUpdater(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient010_GetISteamMasterServerUpdater_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1645,11 +1646,11 @@ void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient010_G return params._ret; } -void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient010_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient010_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient010_GetISteamMatchmakingServers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1661,11 +1662,11 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient010_Ge return params._ret; } -void * __thiscall winISteamClient_SteamClient010_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient010_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient010_GetISteamGenericInterface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1677,11 +1678,11 @@ void * __thiscall winISteamClient_SteamClient010_GetISteamGenericInterface(struc return params._ret; } -void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient010_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient010_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient010_GetISteamUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1693,11 +1694,11 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient010_GetISteamUs return params._ret; } -void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient010_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient010_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient010_GetISteamGameServerStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1709,11 +1710,11 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient010_GetIS return params._ret; } -void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient010_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient010_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient010_GetISteamApps_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1725,11 +1726,11 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient010_GetISteamApps(st return params._ret; } -void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient010_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient010_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient010_GetISteamNetworking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1741,11 +1742,11 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient010_GetISteamN return params._ret; } -void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient010_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient010_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient010_GetISteamRemoteStorage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1757,54 +1758,54 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient010_GetISte return params._ret; } -void __thiscall winISteamClient_SteamClient010_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamClient_SteamClient010_RunFrame(struct w_iface *_this) { struct ISteamClient_SteamClient010_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient010_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamClient_SteamClient010_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamClient_SteamClient010_GetIPCCallCount(struct w_iface *_this) { struct ISteamClient_SteamClient010_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient010_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamClient_SteamClient010_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamClient_SteamClient010_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamClient_SteamClient010_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient010_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamClient_SteamClient010_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient010_BShutdownIfAllPipesClosed(struct w_iface *_this) { struct ISteamClient_SteamClient010_BShutdownIfAllPipesClosed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient010_BShutdownIfAllPipesClosed, ¶ms ); return params._ret; } -void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient010_GetISteamHTTP(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient010_GetISteamHTTP(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient010_GetISteamHTTP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1849,9 +1850,9 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient010_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamClient_SteamClient010(void *u_iface) +struct w_iface *create_winISteamClient_SteamClient010( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamClient010"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient010"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamClient_SteamClient010_vtable, 24, "SteamClient010"); r->u_iface = u_iface; @@ -1884,22 +1885,22 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient011_SetWarningMessageHook, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient011_BShutdownIfAllPipesClosed, 4) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient011_GetISteamHTTP, 16) -int32_t __thiscall winISteamClient_SteamClient011_CreateSteamPipe(struct w_steam_iface *_this) +int32_t __thiscall winISteamClient_SteamClient011_CreateSteamPipe(struct w_iface *_this) { struct ISteamClient_SteamClient011_CreateSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient011_CreateSteamPipe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamClient_SteamClient011_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient011_BReleaseSteamPipe(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient011_BReleaseSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -1907,11 +1908,11 @@ int8_t __thiscall winISteamClient_SteamClient011_BReleaseSteamPipe(struct w_stea return params._ret; } -int32_t __thiscall winISteamClient_SteamClient011_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) +int32_t __thiscall winISteamClient_SteamClient011_ConnectToGlobalUser(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient011_ConnectToGlobalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -1919,11 +1920,11 @@ int32_t __thiscall winISteamClient_SteamClient011_ConnectToGlobalUser(struct w_s return params._ret; } -int32_t __thiscall winISteamClient_SteamClient011_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) +int32_t __thiscall winISteamClient_SteamClient011_CreateLocalUser(struct w_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { struct ISteamClient_SteamClient011_CreateLocalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; @@ -1932,11 +1933,11 @@ int32_t __thiscall winISteamClient_SteamClient011_CreateLocalUser(struct w_steam return params._ret; } -void __thiscall winISteamClient_SteamClient011_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) +void __thiscall winISteamClient_SteamClient011_ReleaseUser(struct w_iface *_this, int32_t hSteamPipe, int32_t hUser) { struct ISteamClient_SteamClient011_ReleaseUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; @@ -1944,11 +1945,11 @@ void __thiscall winISteamClient_SteamClient011_ReleaseUser(struct w_steam_iface STEAMCLIENT_CALL( ISteamClient_SteamClient011_ReleaseUser, ¶ms ); } -void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient011_GetISteamUser(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient011_GetISteamUser(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient011_GetISteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1960,11 +1961,11 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient011_GetISteamUser(st return params._ret; } -void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient011_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient011_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient011_GetISteamGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -1976,11 +1977,11 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient011_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient011_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) +void __thiscall winISteamClient_SteamClient011_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) { struct ISteamClient_SteamClient011_SetLocalIPBinding_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -1988,11 +1989,11 @@ void __thiscall winISteamClient_SteamClient011_SetLocalIPBinding(struct w_steam_ STEAMCLIENT_CALL( ISteamClient_SteamClient011_SetLocalIPBinding, ¶ms ); } -void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient011_GetISteamFriends(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient011_GetISteamFriends(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient011_GetISteamFriends_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2004,11 +2005,11 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient011_GetISteamFrie return params._ret; } -void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient011_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient011_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient011_GetISteamUtils_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; @@ -2019,11 +2020,11 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient011_GetISteamUtils( return params._ret; } -void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient011_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient011_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient011_GetISteamMatchmaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2035,11 +2036,11 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient011_GetISteam return params._ret; } -void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient011_GetISteamMasterServerUpdater(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient011_GetISteamMasterServerUpdater(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient011_GetISteamMasterServerUpdater_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2051,11 +2052,11 @@ void /*ISteamMasterServerUpdater*/ * __thiscall winISteamClient_SteamClient011_G return params._ret; } -void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient011_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient011_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient011_GetISteamMatchmakingServers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2067,11 +2068,11 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient011_Ge return params._ret; } -void * __thiscall winISteamClient_SteamClient011_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient011_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient011_GetISteamGenericInterface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2083,11 +2084,11 @@ void * __thiscall winISteamClient_SteamClient011_GetISteamGenericInterface(struc return params._ret; } -void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient011_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient011_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient011_GetISteamUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2099,11 +2100,11 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient011_GetISteamUs return params._ret; } -void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient011_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient011_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient011_GetISteamGameServerStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2115,11 +2116,11 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient011_GetIS return params._ret; } -void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient011_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient011_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient011_GetISteamApps_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2131,11 +2132,11 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient011_GetISteamApps(st return params._ret; } -void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient011_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient011_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient011_GetISteamNetworking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2147,11 +2148,11 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient011_GetISteamN return params._ret; } -void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient011_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient011_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient011_GetISteamRemoteStorage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2163,11 +2164,11 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient011_GetISte return params._ret; } -void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient011_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient011_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient011_GetISteamScreenshots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2179,54 +2180,54 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient011_GetISteam return params._ret; } -void __thiscall winISteamClient_SteamClient011_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamClient_SteamClient011_RunFrame(struct w_iface *_this) { struct ISteamClient_SteamClient011_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient011_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamClient_SteamClient011_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamClient_SteamClient011_GetIPCCallCount(struct w_iface *_this) { struct ISteamClient_SteamClient011_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient011_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamClient_SteamClient011_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamClient_SteamClient011_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamClient_SteamClient011_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient011_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamClient_SteamClient011_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient011_BShutdownIfAllPipesClosed(struct w_iface *_this) { struct ISteamClient_SteamClient011_BShutdownIfAllPipesClosed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient011_BShutdownIfAllPipesClosed, ¶ms ); return params._ret; } -void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient011_GetISteamHTTP(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient011_GetISteamHTTP(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient011_GetISteamHTTP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2272,9 +2273,9 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient011_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamClient_SteamClient011(void *u_iface) +struct w_iface *create_winISteamClient_SteamClient011( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamClient011"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient011"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamClient_SteamClient011_vtable, 25, "SteamClient011"); r->u_iface = u_iface; @@ -2309,22 +2310,22 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient012_GetISteamUnifiedMessages, DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient012_GetISteamController, 16) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient012_GetISteamUGC, 16) -int32_t __thiscall winISteamClient_SteamClient012_CreateSteamPipe(struct w_steam_iface *_this) +int32_t __thiscall winISteamClient_SteamClient012_CreateSteamPipe(struct w_iface *_this) { struct ISteamClient_SteamClient012_CreateSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient012_CreateSteamPipe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamClient_SteamClient012_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient012_BReleaseSteamPipe(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient012_BReleaseSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -2332,11 +2333,11 @@ int8_t __thiscall winISteamClient_SteamClient012_BReleaseSteamPipe(struct w_stea return params._ret; } -int32_t __thiscall winISteamClient_SteamClient012_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) +int32_t __thiscall winISteamClient_SteamClient012_ConnectToGlobalUser(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient012_ConnectToGlobalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -2344,11 +2345,11 @@ int32_t __thiscall winISteamClient_SteamClient012_ConnectToGlobalUser(struct w_s return params._ret; } -int32_t __thiscall winISteamClient_SteamClient012_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) +int32_t __thiscall winISteamClient_SteamClient012_CreateLocalUser(struct w_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { struct ISteamClient_SteamClient012_CreateLocalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; @@ -2357,11 +2358,11 @@ int32_t __thiscall winISteamClient_SteamClient012_CreateLocalUser(struct w_steam return params._ret; } -void __thiscall winISteamClient_SteamClient012_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) +void __thiscall winISteamClient_SteamClient012_ReleaseUser(struct w_iface *_this, int32_t hSteamPipe, int32_t hUser) { struct ISteamClient_SteamClient012_ReleaseUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; @@ -2369,11 +2370,11 @@ void __thiscall winISteamClient_SteamClient012_ReleaseUser(struct w_steam_iface STEAMCLIENT_CALL( ISteamClient_SteamClient012_ReleaseUser, ¶ms ); } -void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient012_GetISteamUser(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient012_GetISteamUser(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient012_GetISteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2385,11 +2386,11 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient012_GetISteamUser(st return params._ret; } -void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient012_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient012_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient012_GetISteamGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2401,11 +2402,11 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient012_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient012_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) +void __thiscall winISteamClient_SteamClient012_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) { struct ISteamClient_SteamClient012_SetLocalIPBinding_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -2413,11 +2414,11 @@ void __thiscall winISteamClient_SteamClient012_SetLocalIPBinding(struct w_steam_ STEAMCLIENT_CALL( ISteamClient_SteamClient012_SetLocalIPBinding, ¶ms ); } -void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient012_GetISteamFriends(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient012_GetISteamFriends(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient012_GetISteamFriends_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2429,11 +2430,11 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient012_GetISteamFrie return params._ret; } -void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient012_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient012_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient012_GetISteamUtils_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; @@ -2444,11 +2445,11 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient012_GetISteamUtils( return params._ret; } -void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient012_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient012_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient012_GetISteamMatchmaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2460,11 +2461,11 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient012_GetISteam return params._ret; } -void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient012_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient012_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient012_GetISteamMatchmakingServers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2476,11 +2477,11 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient012_Ge return params._ret; } -void * __thiscall winISteamClient_SteamClient012_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient012_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient012_GetISteamGenericInterface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2492,11 +2493,11 @@ void * __thiscall winISteamClient_SteamClient012_GetISteamGenericInterface(struc return params._ret; } -void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient012_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient012_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient012_GetISteamUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2508,11 +2509,11 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient012_GetISteamUs return params._ret; } -void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient012_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient012_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient012_GetISteamGameServerStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2524,11 +2525,11 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient012_GetIS return params._ret; } -void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient012_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient012_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient012_GetISteamApps_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2540,11 +2541,11 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient012_GetISteamApps(st return params._ret; } -void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient012_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient012_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient012_GetISteamNetworking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2556,11 +2557,11 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient012_GetISteamN return params._ret; } -void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient012_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient012_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient012_GetISteamRemoteStorage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2572,11 +2573,11 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient012_GetISte return params._ret; } -void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient012_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient012_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient012_GetISteamScreenshots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2588,54 +2589,54 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient012_GetISteam return params._ret; } -void __thiscall winISteamClient_SteamClient012_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamClient_SteamClient012_RunFrame(struct w_iface *_this) { struct ISteamClient_SteamClient012_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient012_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamClient_SteamClient012_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamClient_SteamClient012_GetIPCCallCount(struct w_iface *_this) { struct ISteamClient_SteamClient012_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient012_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamClient_SteamClient012_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamClient_SteamClient012_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamClient_SteamClient012_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient012_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamClient_SteamClient012_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient012_BShutdownIfAllPipesClosed(struct w_iface *_this) { struct ISteamClient_SteamClient012_BShutdownIfAllPipesClosed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient012_BShutdownIfAllPipesClosed, ¶ms ); return params._ret; } -void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient012_GetISteamHTTP(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient012_GetISteamHTTP(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient012_GetISteamHTTP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2647,11 +2648,11 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient012_GetISteamHTTP(st return params._ret; } -void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient012_GetISteamUnifiedMessages(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient012_GetISteamUnifiedMessages(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient012_GetISteamUnifiedMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2663,11 +2664,11 @@ void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient012_GetIS return params._ret; } -void /*ISteamController*/ * __thiscall winISteamClient_SteamClient012_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamController*/ * __thiscall winISteamClient_SteamClient012_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient012_GetISteamController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2679,11 +2680,11 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient012_GetISteamC return params._ret; } -void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient012_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient012_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient012_GetISteamUGC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2731,9 +2732,9 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient012_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamClient_SteamClient012(void *u_iface) +struct w_iface *create_winISteamClient_SteamClient012( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamClient012"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient012"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamClient_SteamClient012_vtable, 27, "SteamClient012"); r->u_iface = u_iface; @@ -2771,22 +2772,22 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient013_GetISteamInventory, 16) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient013_GetISteamVideo, 16) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient013_GetISteamAppList, 16) -int32_t __thiscall winISteamClient_SteamClient013_CreateSteamPipe(struct w_steam_iface *_this) +int32_t __thiscall winISteamClient_SteamClient013_CreateSteamPipe(struct w_iface *_this) { struct ISteamClient_SteamClient013_CreateSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient013_CreateSteamPipe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamClient_SteamClient013_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient013_BReleaseSteamPipe(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient013_BReleaseSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -2794,11 +2795,11 @@ int8_t __thiscall winISteamClient_SteamClient013_BReleaseSteamPipe(struct w_stea return params._ret; } -int32_t __thiscall winISteamClient_SteamClient013_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) +int32_t __thiscall winISteamClient_SteamClient013_ConnectToGlobalUser(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient013_ConnectToGlobalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -2806,11 +2807,11 @@ int32_t __thiscall winISteamClient_SteamClient013_ConnectToGlobalUser(struct w_s return params._ret; } -int32_t __thiscall winISteamClient_SteamClient013_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) +int32_t __thiscall winISteamClient_SteamClient013_CreateLocalUser(struct w_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { struct ISteamClient_SteamClient013_CreateLocalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; @@ -2819,11 +2820,11 @@ int32_t __thiscall winISteamClient_SteamClient013_CreateLocalUser(struct w_steam return params._ret; } -void __thiscall winISteamClient_SteamClient013_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) +void __thiscall winISteamClient_SteamClient013_ReleaseUser(struct w_iface *_this, int32_t hSteamPipe, int32_t hUser) { struct ISteamClient_SteamClient013_ReleaseUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; @@ -2831,11 +2832,11 @@ void __thiscall winISteamClient_SteamClient013_ReleaseUser(struct w_steam_iface STEAMCLIENT_CALL( ISteamClient_SteamClient013_ReleaseUser, ¶ms ); } -void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient013_GetISteamUser(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient013_GetISteamUser(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2847,11 +2848,11 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient013_GetISteamUser(st return params._ret; } -void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient013_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient013_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2863,11 +2864,11 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient013_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient013_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) +void __thiscall winISteamClient_SteamClient013_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) { struct ISteamClient_SteamClient013_SetLocalIPBinding_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -2875,11 +2876,11 @@ void __thiscall winISteamClient_SteamClient013_SetLocalIPBinding(struct w_steam_ STEAMCLIENT_CALL( ISteamClient_SteamClient013_SetLocalIPBinding, ¶ms ); } -void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient013_GetISteamFriends(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient013_GetISteamFriends(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamFriends_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2891,11 +2892,11 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient013_GetISteamFrie return params._ret; } -void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient013_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient013_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamUtils_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; @@ -2906,11 +2907,11 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient013_GetISteamUtils( return params._ret; } -void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient013_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient013_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamMatchmaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2922,11 +2923,11 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient013_GetISteam return params._ret; } -void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient013_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient013_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamMatchmakingServers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2938,11 +2939,11 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient013_Ge return params._ret; } -void * __thiscall winISteamClient_SteamClient013_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient013_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamGenericInterface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2954,11 +2955,11 @@ void * __thiscall winISteamClient_SteamClient013_GetISteamGenericInterface(struc return params._ret; } -void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient013_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient013_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2970,11 +2971,11 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient013_GetISteamUs return params._ret; } -void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient013_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient013_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamGameServerStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -2986,11 +2987,11 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient013_GetIS return params._ret; } -void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient013_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient013_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamApps_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3002,11 +3003,11 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient013_GetISteamApps(st return params._ret; } -void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient013_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient013_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamNetworking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3018,11 +3019,11 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient013_GetISteamN return params._ret; } -void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient013_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient013_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamRemoteStorage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3034,11 +3035,11 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient013_GetISte return params._ret; } -void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient013_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient013_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamScreenshots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3050,54 +3051,54 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient013_GetISteam return params._ret; } -void __thiscall winISteamClient_SteamClient013_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamClient_SteamClient013_RunFrame(struct w_iface *_this) { struct ISteamClient_SteamClient013_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient013_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamClient_SteamClient013_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamClient_SteamClient013_GetIPCCallCount(struct w_iface *_this) { struct ISteamClient_SteamClient013_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamClient_SteamClient013_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamClient_SteamClient013_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamClient_SteamClient013_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient013_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamClient_SteamClient013_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient013_BShutdownIfAllPipesClosed(struct w_iface *_this) { struct ISteamClient_SteamClient013_BShutdownIfAllPipesClosed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient013_BShutdownIfAllPipesClosed, ¶ms ); return params._ret; } -void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient013_GetISteamHTTP(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient013_GetISteamHTTP(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamHTTP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3109,11 +3110,11 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient013_GetISteamHTTP(st return params._ret; } -void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient013_GetISteamUnifiedMessages(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient013_GetISteamUnifiedMessages(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamUnifiedMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3125,11 +3126,11 @@ void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient013_GetIS return params._ret; } -void /*ISteamController*/ * __thiscall winISteamClient_SteamClient013_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamController*/ * __thiscall winISteamClient_SteamClient013_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3141,11 +3142,11 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient013_GetISteamC return params._ret; } -void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient013_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient013_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamUGC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3157,11 +3158,11 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient013_GetISteamUGC(stru return params._ret; } -void * __thiscall winISteamClient_SteamClient013_GetISteamInventory(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient013_GetISteamInventory(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamInventory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3169,14 +3170,15 @@ void * __thiscall winISteamClient_SteamClient013_GetISteamInventory(struct w_ste TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamInventory, ¶ms ); + params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } -void * __thiscall winISteamClient_SteamClient013_GetISteamVideo(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient013_GetISteamVideo(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3184,14 +3186,15 @@ void * __thiscall winISteamClient_SteamClient013_GetISteamVideo(struct w_steam_i TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient013_GetISteamVideo, ¶ms ); + params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } -void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient013_GetISteamAppList(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient013_GetISteamAppList(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient013_GetISteamAppList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3242,9 +3245,9 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient013_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamClient_SteamClient013(void *u_iface) +struct w_iface *create_winISteamClient_SteamClient013( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamClient013"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient013"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamClient_SteamClient013_vtable, 30, "SteamClient013"); r->u_iface = u_iface; @@ -3281,22 +3284,22 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient014_GetISteamUGC, 16) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient014_GetISteamAppList, 16) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient014_GetISteamMusic, 16) -int32_t __thiscall winISteamClient_SteamClient014_CreateSteamPipe(struct w_steam_iface *_this) +int32_t __thiscall winISteamClient_SteamClient014_CreateSteamPipe(struct w_iface *_this) { struct ISteamClient_SteamClient014_CreateSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient014_CreateSteamPipe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamClient_SteamClient014_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient014_BReleaseSteamPipe(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient014_BReleaseSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -3304,11 +3307,11 @@ int8_t __thiscall winISteamClient_SteamClient014_BReleaseSteamPipe(struct w_stea return params._ret; } -int32_t __thiscall winISteamClient_SteamClient014_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) +int32_t __thiscall winISteamClient_SteamClient014_ConnectToGlobalUser(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient014_ConnectToGlobalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -3316,11 +3319,11 @@ int32_t __thiscall winISteamClient_SteamClient014_ConnectToGlobalUser(struct w_s return params._ret; } -int32_t __thiscall winISteamClient_SteamClient014_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) +int32_t __thiscall winISteamClient_SteamClient014_CreateLocalUser(struct w_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { struct ISteamClient_SteamClient014_CreateLocalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; @@ -3329,11 +3332,11 @@ int32_t __thiscall winISteamClient_SteamClient014_CreateLocalUser(struct w_steam return params._ret; } -void __thiscall winISteamClient_SteamClient014_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) +void __thiscall winISteamClient_SteamClient014_ReleaseUser(struct w_iface *_this, int32_t hSteamPipe, int32_t hUser) { struct ISteamClient_SteamClient014_ReleaseUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; @@ -3341,11 +3344,11 @@ void __thiscall winISteamClient_SteamClient014_ReleaseUser(struct w_steam_iface STEAMCLIENT_CALL( ISteamClient_SteamClient014_ReleaseUser, ¶ms ); } -void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient014_GetISteamUser(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient014_GetISteamUser(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3357,11 +3360,11 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient014_GetISteamUser(st return params._ret; } -void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient014_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient014_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3373,11 +3376,11 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient014_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient014_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) +void __thiscall winISteamClient_SteamClient014_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) { struct ISteamClient_SteamClient014_SetLocalIPBinding_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -3385,11 +3388,11 @@ void __thiscall winISteamClient_SteamClient014_SetLocalIPBinding(struct w_steam_ STEAMCLIENT_CALL( ISteamClient_SteamClient014_SetLocalIPBinding, ¶ms ); } -void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient014_GetISteamFriends(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient014_GetISteamFriends(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamFriends_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3401,11 +3404,11 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient014_GetISteamFrie return params._ret; } -void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient014_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient014_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamUtils_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; @@ -3416,11 +3419,11 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient014_GetISteamUtils( return params._ret; } -void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient014_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient014_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamMatchmaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3432,11 +3435,11 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient014_GetISteam return params._ret; } -void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient014_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient014_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamMatchmakingServers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3448,11 +3451,11 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient014_Ge return params._ret; } -void * __thiscall winISteamClient_SteamClient014_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient014_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamGenericInterface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3464,11 +3467,11 @@ void * __thiscall winISteamClient_SteamClient014_GetISteamGenericInterface(struc return params._ret; } -void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient014_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient014_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3480,11 +3483,11 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient014_GetISteamUs return params._ret; } -void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient014_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient014_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamGameServerStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3496,11 +3499,11 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient014_GetIS return params._ret; } -void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient014_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient014_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamApps_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3512,11 +3515,11 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient014_GetISteamApps(st return params._ret; } -void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient014_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient014_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamNetworking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3528,11 +3531,11 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient014_GetISteamN return params._ret; } -void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient014_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient014_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamRemoteStorage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3544,11 +3547,11 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient014_GetISte return params._ret; } -void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient014_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient014_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamScreenshots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3560,54 +3563,54 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient014_GetISteam return params._ret; } -void __thiscall winISteamClient_SteamClient014_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamClient_SteamClient014_RunFrame(struct w_iface *_this) { struct ISteamClient_SteamClient014_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient014_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamClient_SteamClient014_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamClient_SteamClient014_GetIPCCallCount(struct w_iface *_this) { struct ISteamClient_SteamClient014_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient014_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamClient_SteamClient014_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamClient_SteamClient014_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamClient_SteamClient014_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient014_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamClient_SteamClient014_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient014_BShutdownIfAllPipesClosed(struct w_iface *_this) { struct ISteamClient_SteamClient014_BShutdownIfAllPipesClosed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient014_BShutdownIfAllPipesClosed, ¶ms ); return params._ret; } -void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient014_GetISteamHTTP(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient014_GetISteamHTTP(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamHTTP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3619,11 +3622,11 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient014_GetISteamHTTP(st return params._ret; } -void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient014_GetISteamUnifiedMessages(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient014_GetISteamUnifiedMessages(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamUnifiedMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3635,11 +3638,11 @@ void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient014_GetIS return params._ret; } -void /*ISteamController*/ * __thiscall winISteamClient_SteamClient014_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamController*/ * __thiscall winISteamClient_SteamClient014_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3651,11 +3654,11 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient014_GetISteamC return params._ret; } -void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient014_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient014_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamUGC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3667,11 +3670,11 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient014_GetISteamUGC(stru return params._ret; } -void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient014_GetISteamAppList(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient014_GetISteamAppList(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamAppList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3683,11 +3686,11 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient014_GetISteamAppL return params._ret; } -void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient014_GetISteamMusic(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient014_GetISteamMusic(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient014_GetISteamMusic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3737,9 +3740,9 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient014_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamClient_SteamClient014(void *u_iface) +struct w_iface *create_winISteamClient_SteamClient014( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamClient014"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient014"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamClient_SteamClient014_vtable, 29, "SteamClient014"); r->u_iface = u_iface; @@ -3777,22 +3780,22 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient015_GetISteamAppList, 16) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient015_GetISteamMusic, 16) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient015_GetISteamMusicRemote, 16) -int32_t __thiscall winISteamClient_SteamClient015_CreateSteamPipe(struct w_steam_iface *_this) +int32_t __thiscall winISteamClient_SteamClient015_CreateSteamPipe(struct w_iface *_this) { struct ISteamClient_SteamClient015_CreateSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient015_CreateSteamPipe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamClient_SteamClient015_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient015_BReleaseSteamPipe(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient015_BReleaseSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -3800,11 +3803,11 @@ int8_t __thiscall winISteamClient_SteamClient015_BReleaseSteamPipe(struct w_stea return params._ret; } -int32_t __thiscall winISteamClient_SteamClient015_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) +int32_t __thiscall winISteamClient_SteamClient015_ConnectToGlobalUser(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient015_ConnectToGlobalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -3812,11 +3815,11 @@ int32_t __thiscall winISteamClient_SteamClient015_ConnectToGlobalUser(struct w_s return params._ret; } -int32_t __thiscall winISteamClient_SteamClient015_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) +int32_t __thiscall winISteamClient_SteamClient015_CreateLocalUser(struct w_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { struct ISteamClient_SteamClient015_CreateLocalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; @@ -3825,11 +3828,11 @@ int32_t __thiscall winISteamClient_SteamClient015_CreateLocalUser(struct w_steam return params._ret; } -void __thiscall winISteamClient_SteamClient015_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) +void __thiscall winISteamClient_SteamClient015_ReleaseUser(struct w_iface *_this, int32_t hSteamPipe, int32_t hUser) { struct ISteamClient_SteamClient015_ReleaseUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; @@ -3837,11 +3840,11 @@ void __thiscall winISteamClient_SteamClient015_ReleaseUser(struct w_steam_iface STEAMCLIENT_CALL( ISteamClient_SteamClient015_ReleaseUser, ¶ms ); } -void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient015_GetISteamUser(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient015_GetISteamUser(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3853,11 +3856,11 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient015_GetISteamUser(st return params._ret; } -void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient015_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient015_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3869,11 +3872,11 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient015_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient015_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) +void __thiscall winISteamClient_SteamClient015_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) { struct ISteamClient_SteamClient015_SetLocalIPBinding_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -3881,11 +3884,11 @@ void __thiscall winISteamClient_SteamClient015_SetLocalIPBinding(struct w_steam_ STEAMCLIENT_CALL( ISteamClient_SteamClient015_SetLocalIPBinding, ¶ms ); } -void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient015_GetISteamFriends(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient015_GetISteamFriends(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamFriends_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3897,11 +3900,11 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient015_GetISteamFrie return params._ret; } -void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient015_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient015_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamUtils_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; @@ -3912,11 +3915,11 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient015_GetISteamUtils( return params._ret; } -void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient015_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient015_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamMatchmaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3928,11 +3931,11 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient015_GetISteam return params._ret; } -void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient015_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient015_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamMatchmakingServers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3944,11 +3947,11 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient015_Ge return params._ret; } -void * __thiscall winISteamClient_SteamClient015_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient015_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamGenericInterface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3960,11 +3963,11 @@ void * __thiscall winISteamClient_SteamClient015_GetISteamGenericInterface(struc return params._ret; } -void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient015_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient015_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3976,11 +3979,11 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient015_GetISteamUs return params._ret; } -void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient015_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient015_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamGameServerStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -3992,11 +3995,11 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient015_GetIS return params._ret; } -void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient015_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient015_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamApps_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4008,11 +4011,11 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient015_GetISteamApps(st return params._ret; } -void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient015_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient015_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamNetworking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4024,11 +4027,11 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient015_GetISteamN return params._ret; } -void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient015_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient015_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamRemoteStorage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4040,11 +4043,11 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient015_GetISte return params._ret; } -void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient015_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient015_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamScreenshots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4056,54 +4059,54 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient015_GetISteam return params._ret; } -void __thiscall winISteamClient_SteamClient015_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamClient_SteamClient015_RunFrame(struct w_iface *_this) { struct ISteamClient_SteamClient015_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient015_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamClient_SteamClient015_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamClient_SteamClient015_GetIPCCallCount(struct w_iface *_this) { struct ISteamClient_SteamClient015_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient015_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamClient_SteamClient015_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamClient_SteamClient015_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamClient_SteamClient015_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient015_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamClient_SteamClient015_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient015_BShutdownIfAllPipesClosed(struct w_iface *_this) { struct ISteamClient_SteamClient015_BShutdownIfAllPipesClosed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient015_BShutdownIfAllPipesClosed, ¶ms ); return params._ret; } -void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient015_GetISteamHTTP(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient015_GetISteamHTTP(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamHTTP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4115,11 +4118,11 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient015_GetISteamHTTP(st return params._ret; } -void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient015_GetISteamUnifiedMessages(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient015_GetISteamUnifiedMessages(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamUnifiedMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4131,11 +4134,11 @@ void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient015_GetIS return params._ret; } -void /*ISteamController*/ * __thiscall winISteamClient_SteamClient015_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamController*/ * __thiscall winISteamClient_SteamClient015_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4147,11 +4150,11 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient015_GetISteamC return params._ret; } -void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient015_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient015_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamUGC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4163,11 +4166,11 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient015_GetISteamUGC(stru return params._ret; } -void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient015_GetISteamAppList(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient015_GetISteamAppList(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamAppList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4179,11 +4182,11 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient015_GetISteamAppL return params._ret; } -void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient015_GetISteamMusic(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient015_GetISteamMusic(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamMusic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4195,11 +4198,11 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient015_GetISteamMusic( return params._ret; } -void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient015_GetISteamMusicRemote(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient015_GetISteamMusicRemote(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient015_GetISteamMusicRemote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4250,9 +4253,9 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient015_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamClient_SteamClient015(void *u_iface) +struct w_iface *create_winISteamClient_SteamClient015( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamClient015"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient015"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamClient_SteamClient015_vtable, 30, "SteamClient015"); r->u_iface = u_iface; @@ -4294,22 +4297,22 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResu DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess, 8) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess, 8) -int32_t __thiscall winISteamClient_SteamClient016_CreateSteamPipe(struct w_steam_iface *_this) +int32_t __thiscall winISteamClient_SteamClient016_CreateSteamPipe(struct w_iface *_this) { struct ISteamClient_SteamClient016_CreateSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient016_CreateSteamPipe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamClient_SteamClient016_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient016_BReleaseSteamPipe(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient016_BReleaseSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -4317,11 +4320,11 @@ int8_t __thiscall winISteamClient_SteamClient016_BReleaseSteamPipe(struct w_stea return params._ret; } -int32_t __thiscall winISteamClient_SteamClient016_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) +int32_t __thiscall winISteamClient_SteamClient016_ConnectToGlobalUser(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient016_ConnectToGlobalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -4329,11 +4332,11 @@ int32_t __thiscall winISteamClient_SteamClient016_ConnectToGlobalUser(struct w_s return params._ret; } -int32_t __thiscall winISteamClient_SteamClient016_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) +int32_t __thiscall winISteamClient_SteamClient016_CreateLocalUser(struct w_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { struct ISteamClient_SteamClient016_CreateLocalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; @@ -4342,11 +4345,11 @@ int32_t __thiscall winISteamClient_SteamClient016_CreateLocalUser(struct w_steam return params._ret; } -void __thiscall winISteamClient_SteamClient016_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) +void __thiscall winISteamClient_SteamClient016_ReleaseUser(struct w_iface *_this, int32_t hSteamPipe, int32_t hUser) { struct ISteamClient_SteamClient016_ReleaseUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; @@ -4354,11 +4357,11 @@ void __thiscall winISteamClient_SteamClient016_ReleaseUser(struct w_steam_iface STEAMCLIENT_CALL( ISteamClient_SteamClient016_ReleaseUser, ¶ms ); } -void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient016_GetISteamUser(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient016_GetISteamUser(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4370,11 +4373,11 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient016_GetISteamUser(st return params._ret; } -void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient016_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient016_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4386,11 +4389,11 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient016_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient016_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) +void __thiscall winISteamClient_SteamClient016_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) { struct ISteamClient_SteamClient016_SetLocalIPBinding_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -4398,11 +4401,11 @@ void __thiscall winISteamClient_SteamClient016_SetLocalIPBinding(struct w_steam_ STEAMCLIENT_CALL( ISteamClient_SteamClient016_SetLocalIPBinding, ¶ms ); } -void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient016_GetISteamFriends(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient016_GetISteamFriends(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamFriends_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4414,11 +4417,11 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient016_GetISteamFrie return params._ret; } -void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient016_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient016_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamUtils_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; @@ -4429,11 +4432,11 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient016_GetISteamUtils( return params._ret; } -void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient016_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient016_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamMatchmaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4445,11 +4448,11 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient016_GetISteam return params._ret; } -void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient016_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient016_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamMatchmakingServers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4461,11 +4464,11 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient016_Ge return params._ret; } -void * __thiscall winISteamClient_SteamClient016_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient016_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamGenericInterface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4477,11 +4480,11 @@ void * __thiscall winISteamClient_SteamClient016_GetISteamGenericInterface(struc return params._ret; } -void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient016_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient016_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4493,11 +4496,11 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient016_GetISteamUs return params._ret; } -void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient016_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient016_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamGameServerStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4509,11 +4512,11 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient016_GetIS return params._ret; } -void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient016_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient016_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamApps_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4525,11 +4528,11 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient016_GetISteamApps(st return params._ret; } -void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient016_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient016_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamNetworking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4541,11 +4544,11 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient016_GetISteamN return params._ret; } -void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient016_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient016_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamRemoteStorage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4557,11 +4560,11 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient016_GetISte return params._ret; } -void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient016_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient016_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamScreenshots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4573,54 +4576,54 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient016_GetISteam return params._ret; } -void __thiscall winISteamClient_SteamClient016_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamClient_SteamClient016_RunFrame(struct w_iface *_this) { struct ISteamClient_SteamClient016_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient016_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamClient_SteamClient016_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamClient_SteamClient016_GetIPCCallCount(struct w_iface *_this) { struct ISteamClient_SteamClient016_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient016_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamClient_SteamClient016_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamClient_SteamClient016_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamClient_SteamClient016_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient016_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamClient_SteamClient016_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient016_BShutdownIfAllPipesClosed(struct w_iface *_this) { struct ISteamClient_SteamClient016_BShutdownIfAllPipesClosed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient016_BShutdownIfAllPipesClosed, ¶ms ); return params._ret; } -void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient016_GetISteamHTTP(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient016_GetISteamHTTP(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamHTTP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4632,11 +4635,11 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient016_GetISteamHTTP(st return params._ret; } -void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient016_GetISteamUnifiedMessages(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient016_GetISteamUnifiedMessages(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamUnifiedMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4648,11 +4651,11 @@ void /*ISteamUnifiedMessages*/ * __thiscall winISteamClient_SteamClient016_GetIS return params._ret; } -void /*ISteamController*/ * __thiscall winISteamClient_SteamClient016_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamController*/ * __thiscall winISteamClient_SteamClient016_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4664,11 +4667,11 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient016_GetISteamC return params._ret; } -void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient016_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient016_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamUGC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4680,11 +4683,11 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient016_GetISteamUGC(stru return params._ret; } -void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient016_GetISteamAppList(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient016_GetISteamAppList(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamAppList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4696,11 +4699,11 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient016_GetISteamAppL return params._ret; } -void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient016_GetISteamMusic(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient016_GetISteamMusic(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamMusic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4712,11 +4715,11 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient016_GetISteamMusic( return params._ret; } -void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient016_GetISteamMusicRemote(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient016_GetISteamMusicRemote(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamMusicRemote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4728,11 +4731,11 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient016_GetISteam return params._ret; } -void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient016_GetISteamHTMLSurface(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient016_GetISteamHTMLSurface(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient016_GetISteamHTMLSurface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4744,33 +4747,33 @@ void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient016_GetISteam return params._ret; } -void __thiscall winISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_CDECL func)(uint64_t, void *, uint32_t, int32_t)) +void __thiscall winISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess(struct w_iface *_this, void (*W_CDECL func)(uint64_t, void *, uint32_t, int32_t)) { struct ISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .func = func, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient016_Set_SteamAPI_CPostAPIResultInProcess, ¶ms ); } -void __thiscall winISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_CDECL func)(uint64_t, void *, uint32_t, int32_t)) +void __thiscall winISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess(struct w_iface *_this, void (*W_CDECL func)(uint64_t, void *, uint32_t, int32_t)) { struct ISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .func = func, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient016_Remove_SteamAPI_CPostAPIResultInProcess, ¶ms ); } -void __thiscall winISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess(struct w_steam_iface *_this, uint32_t (*W_CDECL func)(int32_t)) +void __thiscall winISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess(struct w_iface *_this, uint32_t (*W_CDECL func)(int32_t)) { struct ISteamClient_SteamClient016_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .func = func, }; TRACE("%p\n", _this); @@ -4820,9 +4823,9 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient016_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamClient_SteamClient016(void *u_iface) +struct w_iface *create_winISteamClient_SteamClient016( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamClient016"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient016"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamClient_SteamClient016_vtable, 34, "SteamClient016"); r->u_iface = u_iface; @@ -4867,22 +4870,22 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient017_GetISteamInventory, 16) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient017_GetISteamVideo, 16) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient017_GetISteamParentalSettings, 16) -int32_t __thiscall winISteamClient_SteamClient017_CreateSteamPipe(struct w_steam_iface *_this) +int32_t __thiscall winISteamClient_SteamClient017_CreateSteamPipe(struct w_iface *_this) { struct ISteamClient_SteamClient017_CreateSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient017_CreateSteamPipe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamClient_SteamClient017_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient017_BReleaseSteamPipe(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient017_BReleaseSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -4890,11 +4893,11 @@ int8_t __thiscall winISteamClient_SteamClient017_BReleaseSteamPipe(struct w_stea return params._ret; } -int32_t __thiscall winISteamClient_SteamClient017_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) +int32_t __thiscall winISteamClient_SteamClient017_ConnectToGlobalUser(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient017_ConnectToGlobalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -4902,11 +4905,11 @@ int32_t __thiscall winISteamClient_SteamClient017_ConnectToGlobalUser(struct w_s return params._ret; } -int32_t __thiscall winISteamClient_SteamClient017_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) +int32_t __thiscall winISteamClient_SteamClient017_CreateLocalUser(struct w_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { struct ISteamClient_SteamClient017_CreateLocalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; @@ -4915,11 +4918,11 @@ int32_t __thiscall winISteamClient_SteamClient017_CreateLocalUser(struct w_steam return params._ret; } -void __thiscall winISteamClient_SteamClient017_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) +void __thiscall winISteamClient_SteamClient017_ReleaseUser(struct w_iface *_this, int32_t hSteamPipe, int32_t hUser) { struct ISteamClient_SteamClient017_ReleaseUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; @@ -4927,11 +4930,11 @@ void __thiscall winISteamClient_SteamClient017_ReleaseUser(struct w_steam_iface STEAMCLIENT_CALL( ISteamClient_SteamClient017_ReleaseUser, ¶ms ); } -void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient017_GetISteamUser(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient017_GetISteamUser(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4943,11 +4946,11 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient017_GetISteamUser(st return params._ret; } -void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient017_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient017_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4959,11 +4962,11 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient017_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient017_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) +void __thiscall winISteamClient_SteamClient017_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) { struct ISteamClient_SteamClient017_SetLocalIPBinding_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -4971,11 +4974,11 @@ void __thiscall winISteamClient_SteamClient017_SetLocalIPBinding(struct w_steam_ STEAMCLIENT_CALL( ISteamClient_SteamClient017_SetLocalIPBinding, ¶ms ); } -void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient017_GetISteamFriends(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient017_GetISteamFriends(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamFriends_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -4987,11 +4990,11 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient017_GetISteamFrie return params._ret; } -void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient017_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient017_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamUtils_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; @@ -5002,11 +5005,11 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient017_GetISteamUtils( return params._ret; } -void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient017_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient017_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamMatchmaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5018,11 +5021,11 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient017_GetISteam return params._ret; } -void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient017_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient017_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamMatchmakingServers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5034,11 +5037,11 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient017_Ge return params._ret; } -void * __thiscall winISteamClient_SteamClient017_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient017_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamGenericInterface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5050,11 +5053,11 @@ void * __thiscall winISteamClient_SteamClient017_GetISteamGenericInterface(struc return params._ret; } -void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient017_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient017_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5066,11 +5069,11 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient017_GetISteamUs return params._ret; } -void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient017_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient017_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamGameServerStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5082,11 +5085,11 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient017_GetIS return params._ret; } -void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient017_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient017_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamApps_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5098,11 +5101,11 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient017_GetISteamApps(st return params._ret; } -void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient017_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient017_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamNetworking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5114,11 +5117,11 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient017_GetISteamN return params._ret; } -void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient017_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient017_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamRemoteStorage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5130,11 +5133,11 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient017_GetISte return params._ret; } -void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient017_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient017_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamScreenshots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5146,54 +5149,54 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient017_GetISteam return params._ret; } -void __thiscall winISteamClient_SteamClient017_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamClient_SteamClient017_RunFrame(struct w_iface *_this) { struct ISteamClient_SteamClient017_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient017_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamClient_SteamClient017_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamClient_SteamClient017_GetIPCCallCount(struct w_iface *_this) { struct ISteamClient_SteamClient017_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient017_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamClient_SteamClient017_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamClient_SteamClient017_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamClient_SteamClient017_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient017_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamClient_SteamClient017_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient017_BShutdownIfAllPipesClosed(struct w_iface *_this) { struct ISteamClient_SteamClient017_BShutdownIfAllPipesClosed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient017_BShutdownIfAllPipesClosed, ¶ms ); return params._ret; } -void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient017_GetISteamHTTP(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient017_GetISteamHTTP(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamHTTP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5205,11 +5208,11 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient017_GetISteamHTTP(st return params._ret; } -void * __thiscall winISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5217,14 +5220,15 @@ void * __thiscall winISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMess TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient017_DEPRECATED_GetISteamUnifiedMessages, ¶ms ); + params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } -void /*ISteamController*/ * __thiscall winISteamClient_SteamClient017_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamController*/ * __thiscall winISteamClient_SteamClient017_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5236,11 +5240,11 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient017_GetISteamC return params._ret; } -void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient017_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient017_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamUGC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5252,11 +5256,11 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient017_GetISteamUGC(stru return params._ret; } -void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient017_GetISteamAppList(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient017_GetISteamAppList(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamAppList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5268,11 +5272,11 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient017_GetISteamAppL return params._ret; } -void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient017_GetISteamMusic(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient017_GetISteamMusic(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamMusic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5284,11 +5288,11 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient017_GetISteamMusic( return params._ret; } -void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient017_GetISteamMusicRemote(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient017_GetISteamMusicRemote(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamMusicRemote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5300,11 +5304,11 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient017_GetISteam return params._ret; } -void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient017_GetISteamHTMLSurface(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient017_GetISteamHTMLSurface(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamHTMLSurface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5316,44 +5320,44 @@ void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient017_GetISteam return params._ret; } -void __thiscall winISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_CDECL _a)(void)) +void __thiscall winISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_iface *_this, void (*W_CDECL _a)(void)) { struct ISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._a = _a, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient017_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess, ¶ms ); } -void __thiscall winISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_CDECL _a)(void)) +void __thiscall winISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess(struct w_iface *_this, void (*W_CDECL _a)(void)) { struct ISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._a = _a, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient017_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess, ¶ms ); } -void __thiscall winISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess(struct w_steam_iface *_this, uint32_t (*W_CDECL func)(int32_t)) +void __thiscall winISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess(struct w_iface *_this, uint32_t (*W_CDECL func)(int32_t)) { struct ISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .func = func, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient017_Set_SteamAPI_CCheckCallbackRegisteredInProcess, ¶ms ); } -void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient017_GetISteamInventory(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient017_GetISteamInventory(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamInventory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5365,11 +5369,11 @@ void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient017_GetISteamIn return params._ret; } -void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient017_GetISteamVideo(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient017_GetISteamVideo(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5381,11 +5385,11 @@ void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient017_GetISteamVideo( return params._ret; } -void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient017_GetISteamParentalSettings(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient017_GetISteamParentalSettings(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient017_GetISteamParentalSettings_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5443,9 +5447,9 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient017_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamClient_SteamClient017(void *u_iface) +struct w_iface *create_winISteamClient_SteamClient017( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamClient017"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient017"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamClient_SteamClient017_vtable, 37, "SteamClient017"); r->u_iface = u_iface; @@ -5493,22 +5497,22 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient018_GetISteamParentalSettings DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient018_GetISteamInput, 16) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient018_GetISteamParties, 16) -int32_t __thiscall winISteamClient_SteamClient018_CreateSteamPipe(struct w_steam_iface *_this) +int32_t __thiscall winISteamClient_SteamClient018_CreateSteamPipe(struct w_iface *_this) { struct ISteamClient_SteamClient018_CreateSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient018_CreateSteamPipe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamClient_SteamClient018_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient018_BReleaseSteamPipe(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient018_BReleaseSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -5516,11 +5520,11 @@ int8_t __thiscall winISteamClient_SteamClient018_BReleaseSteamPipe(struct w_stea return params._ret; } -int32_t __thiscall winISteamClient_SteamClient018_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) +int32_t __thiscall winISteamClient_SteamClient018_ConnectToGlobalUser(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient018_ConnectToGlobalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -5528,11 +5532,11 @@ int32_t __thiscall winISteamClient_SteamClient018_ConnectToGlobalUser(struct w_s return params._ret; } -int32_t __thiscall winISteamClient_SteamClient018_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) +int32_t __thiscall winISteamClient_SteamClient018_CreateLocalUser(struct w_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { struct ISteamClient_SteamClient018_CreateLocalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; @@ -5541,11 +5545,11 @@ int32_t __thiscall winISteamClient_SteamClient018_CreateLocalUser(struct w_steam return params._ret; } -void __thiscall winISteamClient_SteamClient018_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) +void __thiscall winISteamClient_SteamClient018_ReleaseUser(struct w_iface *_this, int32_t hSteamPipe, int32_t hUser) { struct ISteamClient_SteamClient018_ReleaseUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; @@ -5553,11 +5557,11 @@ void __thiscall winISteamClient_SteamClient018_ReleaseUser(struct w_steam_iface STEAMCLIENT_CALL( ISteamClient_SteamClient018_ReleaseUser, ¶ms ); } -void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient018_GetISteamUser(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient018_GetISteamUser(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5569,11 +5573,11 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient018_GetISteamUser(st return params._ret; } -void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient018_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient018_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5585,11 +5589,11 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient018_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient018_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) +void __thiscall winISteamClient_SteamClient018_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) { struct ISteamClient_SteamClient018_SetLocalIPBinding_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -5597,11 +5601,11 @@ void __thiscall winISteamClient_SteamClient018_SetLocalIPBinding(struct w_steam_ STEAMCLIENT_CALL( ISteamClient_SteamClient018_SetLocalIPBinding, ¶ms ); } -void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient018_GetISteamFriends(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient018_GetISteamFriends(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamFriends_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5613,11 +5617,11 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient018_GetISteamFrie return params._ret; } -void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient018_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient018_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamUtils_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; @@ -5628,11 +5632,11 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient018_GetISteamUtils( return params._ret; } -void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient018_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient018_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamMatchmaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5644,11 +5648,11 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient018_GetISteam return params._ret; } -void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient018_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient018_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamMatchmakingServers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5660,11 +5664,11 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient018_Ge return params._ret; } -void * __thiscall winISteamClient_SteamClient018_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient018_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamGenericInterface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5676,11 +5680,11 @@ void * __thiscall winISteamClient_SteamClient018_GetISteamGenericInterface(struc return params._ret; } -void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient018_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient018_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5692,11 +5696,11 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient018_GetISteamUs return params._ret; } -void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient018_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient018_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamGameServerStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5708,11 +5712,11 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient018_GetIS return params._ret; } -void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient018_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient018_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamApps_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5724,11 +5728,11 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient018_GetISteamApps(st return params._ret; } -void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient018_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient018_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamNetworking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5740,11 +5744,11 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient018_GetISteamN return params._ret; } -void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient018_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient018_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamRemoteStorage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5756,11 +5760,11 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient018_GetISte return params._ret; } -void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient018_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient018_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamScreenshots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5772,11 +5776,11 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient018_GetISteam return params._ret; } -void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient018_GetISteamGameSearch(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient018_GetISteamGameSearch(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamGameSearch_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5788,54 +5792,54 @@ void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient018_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient018_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamClient_SteamClient018_RunFrame(struct w_iface *_this) { struct ISteamClient_SteamClient018_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient018_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamClient_SteamClient018_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamClient_SteamClient018_GetIPCCallCount(struct w_iface *_this) { struct ISteamClient_SteamClient018_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient018_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamClient_SteamClient018_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamClient_SteamClient018_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamClient_SteamClient018_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient018_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamClient_SteamClient018_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient018_BShutdownIfAllPipesClosed(struct w_iface *_this) { struct ISteamClient_SteamClient018_BShutdownIfAllPipesClosed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient018_BShutdownIfAllPipesClosed, ¶ms ); return params._ret; } -void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient018_GetISteamHTTP(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient018_GetISteamHTTP(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamHTTP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5847,11 +5851,11 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient018_GetISteamHTTP(st return params._ret; } -void * __thiscall winISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5859,14 +5863,15 @@ void * __thiscall winISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMess TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient018_DEPRECATED_GetISteamUnifiedMessages, ¶ms ); + params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } -void /*ISteamController*/ * __thiscall winISteamClient_SteamClient018_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamController*/ * __thiscall winISteamClient_SteamClient018_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5878,11 +5883,11 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient018_GetISteamC return params._ret; } -void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient018_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient018_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamUGC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5894,11 +5899,11 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient018_GetISteamUGC(stru return params._ret; } -void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient018_GetISteamAppList(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient018_GetISteamAppList(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamAppList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5910,11 +5915,11 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient018_GetISteamAppL return params._ret; } -void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient018_GetISteamMusic(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient018_GetISteamMusic(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamMusic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5926,11 +5931,11 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient018_GetISteamMusic( return params._ret; } -void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient018_GetISteamMusicRemote(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient018_GetISteamMusicRemote(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamMusicRemote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5942,11 +5947,11 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient018_GetISteam return params._ret; } -void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient018_GetISteamHTMLSurface(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient018_GetISteamHTMLSurface(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamHTMLSurface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -5958,44 +5963,44 @@ void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient018_GetISteam return params._ret; } -void __thiscall winISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_CDECL _a)(void)) +void __thiscall winISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_iface *_this, void (*W_CDECL _a)(void)) { struct ISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._a = _a, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient018_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess, ¶ms ); } -void __thiscall winISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_CDECL _a)(void)) +void __thiscall winISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess(struct w_iface *_this, void (*W_CDECL _a)(void)) { struct ISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._a = _a, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient018_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess, ¶ms ); } -void __thiscall winISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess(struct w_steam_iface *_this, uint32_t (*W_CDECL func)(int32_t)) +void __thiscall winISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess(struct w_iface *_this, uint32_t (*W_CDECL func)(int32_t)) { struct ISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .func = func, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient018_Set_SteamAPI_CCheckCallbackRegisteredInProcess, ¶ms ); } -void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient018_GetISteamInventory(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient018_GetISteamInventory(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamInventory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6007,11 +6012,11 @@ void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient018_GetISteamIn return params._ret; } -void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient018_GetISteamVideo(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient018_GetISteamVideo(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6023,11 +6028,11 @@ void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient018_GetISteamVideo( return params._ret; } -void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient018_GetISteamParentalSettings(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient018_GetISteamParentalSettings(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamParentalSettings_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6039,11 +6044,11 @@ void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient018_GetI return params._ret; } -void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient018_GetISteamInput(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient018_GetISteamInput(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6055,11 +6060,11 @@ void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient018_GetISteamInput( return params._ret; } -void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient018_GetISteamParties(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient018_GetISteamParties(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient018_GetISteamParties_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6120,9 +6125,9 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient018_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamClient_SteamClient018(void *u_iface) +struct w_iface *create_winISteamClient_SteamClient018( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamClient018"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient018"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamClient_SteamClient018_vtable, 40, "SteamClient018"); r->u_iface = u_iface; @@ -6171,22 +6176,22 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient019_GetISteamInput, 16) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient019_GetISteamParties, 16) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient019_GetISteamRemotePlay, 16) -int32_t __thiscall winISteamClient_SteamClient019_CreateSteamPipe(struct w_steam_iface *_this) +int32_t __thiscall winISteamClient_SteamClient019_CreateSteamPipe(struct w_iface *_this) { struct ISteamClient_SteamClient019_CreateSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient019_CreateSteamPipe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamClient_SteamClient019_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient019_BReleaseSteamPipe(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient019_BReleaseSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -6194,11 +6199,11 @@ int8_t __thiscall winISteamClient_SteamClient019_BReleaseSteamPipe(struct w_stea return params._ret; } -int32_t __thiscall winISteamClient_SteamClient019_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) +int32_t __thiscall winISteamClient_SteamClient019_ConnectToGlobalUser(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient019_ConnectToGlobalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -6206,11 +6211,11 @@ int32_t __thiscall winISteamClient_SteamClient019_ConnectToGlobalUser(struct w_s return params._ret; } -int32_t __thiscall winISteamClient_SteamClient019_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) +int32_t __thiscall winISteamClient_SteamClient019_CreateLocalUser(struct w_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { struct ISteamClient_SteamClient019_CreateLocalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; @@ -6219,11 +6224,11 @@ int32_t __thiscall winISteamClient_SteamClient019_CreateLocalUser(struct w_steam return params._ret; } -void __thiscall winISteamClient_SteamClient019_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) +void __thiscall winISteamClient_SteamClient019_ReleaseUser(struct w_iface *_this, int32_t hSteamPipe, int32_t hUser) { struct ISteamClient_SteamClient019_ReleaseUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; @@ -6231,11 +6236,11 @@ void __thiscall winISteamClient_SteamClient019_ReleaseUser(struct w_steam_iface STEAMCLIENT_CALL( ISteamClient_SteamClient019_ReleaseUser, ¶ms ); } -void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient019_GetISteamUser(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient019_GetISteamUser(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6247,11 +6252,11 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient019_GetISteamUser(st return params._ret; } -void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient019_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient019_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6263,11 +6268,11 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient019_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient019_SetLocalIPBinding(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort) +void __thiscall winISteamClient_SteamClient019_SetLocalIPBinding(struct w_iface *_this, uint32_t unIP, uint16_t usPort) { struct ISteamClient_SteamClient019_SetLocalIPBinding_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -6275,11 +6280,11 @@ void __thiscall winISteamClient_SteamClient019_SetLocalIPBinding(struct w_steam_ STEAMCLIENT_CALL( ISteamClient_SteamClient019_SetLocalIPBinding, ¶ms ); } -void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient019_GetISteamFriends(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient019_GetISteamFriends(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamFriends_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6291,11 +6296,11 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient019_GetISteamFrie return params._ret; } -void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient019_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient019_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamUtils_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; @@ -6306,11 +6311,11 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient019_GetISteamUtils( return params._ret; } -void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient019_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient019_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamMatchmaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6322,11 +6327,11 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient019_GetISteam return params._ret; } -void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient019_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient019_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamMatchmakingServers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6338,11 +6343,11 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient019_Ge return params._ret; } -void * __thiscall winISteamClient_SteamClient019_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient019_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamGenericInterface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6354,11 +6359,11 @@ void * __thiscall winISteamClient_SteamClient019_GetISteamGenericInterface(struc return params._ret; } -void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient019_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient019_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6370,11 +6375,11 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient019_GetISteamUs return params._ret; } -void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient019_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient019_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamGameServerStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6386,11 +6391,11 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient019_GetIS return params._ret; } -void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient019_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient019_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamApps_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6402,11 +6407,11 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient019_GetISteamApps(st return params._ret; } -void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient019_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient019_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamNetworking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6418,11 +6423,11 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient019_GetISteamN return params._ret; } -void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient019_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient019_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamRemoteStorage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6434,11 +6439,11 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient019_GetISte return params._ret; } -void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient019_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient019_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamScreenshots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6450,11 +6455,11 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient019_GetISteam return params._ret; } -void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient019_GetISteamGameSearch(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient019_GetISteamGameSearch(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamGameSearch_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6466,54 +6471,54 @@ void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient019_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient019_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamClient_SteamClient019_RunFrame(struct w_iface *_this) { struct ISteamClient_SteamClient019_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient019_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamClient_SteamClient019_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamClient_SteamClient019_GetIPCCallCount(struct w_iface *_this) { struct ISteamClient_SteamClient019_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient019_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamClient_SteamClient019_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamClient_SteamClient019_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamClient_SteamClient019_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient019_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamClient_SteamClient019_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient019_BShutdownIfAllPipesClosed(struct w_iface *_this) { struct ISteamClient_SteamClient019_BShutdownIfAllPipesClosed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient019_BShutdownIfAllPipesClosed, ¶ms ); return params._ret; } -void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient019_GetISteamHTTP(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient019_GetISteamHTTP(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamHTTP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6525,11 +6530,11 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient019_GetISteamHTTP(st return params._ret; } -void * __thiscall winISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6537,14 +6542,15 @@ void * __thiscall winISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMess TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient019_DEPRECATED_GetISteamUnifiedMessages, ¶ms ); + params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } -void /*ISteamController*/ * __thiscall winISteamClient_SteamClient019_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamController*/ * __thiscall winISteamClient_SteamClient019_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6556,11 +6562,11 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient019_GetISteamC return params._ret; } -void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient019_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient019_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamUGC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6572,11 +6578,11 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient019_GetISteamUGC(stru return params._ret; } -void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient019_GetISteamAppList(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient019_GetISteamAppList(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamAppList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6588,11 +6594,11 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient019_GetISteamAppL return params._ret; } -void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient019_GetISteamMusic(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient019_GetISteamMusic(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamMusic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6604,11 +6610,11 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient019_GetISteamMusic( return params._ret; } -void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient019_GetISteamMusicRemote(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient019_GetISteamMusicRemote(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamMusicRemote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6620,11 +6626,11 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient019_GetISteam return params._ret; } -void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient019_GetISteamHTMLSurface(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient019_GetISteamHTMLSurface(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamHTMLSurface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6636,44 +6642,44 @@ void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient019_GetISteam return params._ret; } -void __thiscall winISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_CDECL _a)(void)) +void __thiscall winISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_iface *_this, void (*W_CDECL _a)(void)) { struct ISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._a = _a, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient019_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess, ¶ms ); } -void __thiscall winISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_CDECL _a)(void)) +void __thiscall winISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess(struct w_iface *_this, void (*W_CDECL _a)(void)) { struct ISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._a = _a, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient019_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess, ¶ms ); } -void __thiscall winISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess(struct w_steam_iface *_this, uint32_t (*W_CDECL func)(int32_t)) +void __thiscall winISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess(struct w_iface *_this, uint32_t (*W_CDECL func)(int32_t)) { struct ISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .func = func, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient019_Set_SteamAPI_CCheckCallbackRegisteredInProcess, ¶ms ); } -void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient019_GetISteamInventory(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient019_GetISteamInventory(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamInventory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6685,11 +6691,11 @@ void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient019_GetISteamIn return params._ret; } -void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient019_GetISteamVideo(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient019_GetISteamVideo(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6701,11 +6707,11 @@ void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient019_GetISteamVideo( return params._ret; } -void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient019_GetISteamParentalSettings(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient019_GetISteamParentalSettings(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamParentalSettings_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6717,11 +6723,11 @@ void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient019_GetI return params._ret; } -void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient019_GetISteamInput(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient019_GetISteamInput(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6733,11 +6739,11 @@ void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient019_GetISteamInput( return params._ret; } -void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient019_GetISteamParties(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient019_GetISteamParties(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamParties_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6749,11 +6755,11 @@ void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient019_GetISteamPart return params._ret; } -void /*ISteamRemotePlay*/ * __thiscall winISteamClient_SteamClient019_GetISteamRemotePlay(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamRemotePlay*/ * __thiscall winISteamClient_SteamClient019_GetISteamRemotePlay(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient019_GetISteamRemotePlay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6815,9 +6821,9 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient019_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamClient_SteamClient019(void *u_iface) +struct w_iface *create_winISteamClient_SteamClient019( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamClient019"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient019"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamClient_SteamClient019_vtable, 41, "SteamClient019"); r->u_iface = u_iface; @@ -6867,22 +6873,22 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient020_GetISteamParties, 16) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient020_GetISteamRemotePlay, 16) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient020_DestroyAllInterfaces, 4) -int32_t __thiscall winISteamClient_SteamClient020_CreateSteamPipe(struct w_steam_iface *_this) +int32_t __thiscall winISteamClient_SteamClient020_CreateSteamPipe(struct w_iface *_this) { struct ISteamClient_SteamClient020_CreateSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient020_CreateSteamPipe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamClient_SteamClient020_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient020_BReleaseSteamPipe(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient020_BReleaseSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -6890,11 +6896,11 @@ int8_t __thiscall winISteamClient_SteamClient020_BReleaseSteamPipe(struct w_stea return params._ret; } -int32_t __thiscall winISteamClient_SteamClient020_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) +int32_t __thiscall winISteamClient_SteamClient020_ConnectToGlobalUser(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient020_ConnectToGlobalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -6902,11 +6908,11 @@ int32_t __thiscall winISteamClient_SteamClient020_ConnectToGlobalUser(struct w_s return params._ret; } -int32_t __thiscall winISteamClient_SteamClient020_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) +int32_t __thiscall winISteamClient_SteamClient020_CreateLocalUser(struct w_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { struct ISteamClient_SteamClient020_CreateLocalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; @@ -6915,11 +6921,11 @@ int32_t __thiscall winISteamClient_SteamClient020_CreateLocalUser(struct w_steam return params._ret; } -void __thiscall winISteamClient_SteamClient020_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) +void __thiscall winISteamClient_SteamClient020_ReleaseUser(struct w_iface *_this, int32_t hSteamPipe, int32_t hUser) { struct ISteamClient_SteamClient020_ReleaseUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; @@ -6927,11 +6933,11 @@ void __thiscall winISteamClient_SteamClient020_ReleaseUser(struct w_steam_iface STEAMCLIENT_CALL( ISteamClient_SteamClient020_ReleaseUser, ¶ms ); } -void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient020_GetISteamUser(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient020_GetISteamUser(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6943,11 +6949,11 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient020_GetISteamUser(st return params._ret; } -void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient020_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient020_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6959,11 +6965,11 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient020_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient020_SetLocalIPBinding(struct w_steam_iface *_this, const SteamIPAddress_t *unIP, uint16_t usPort) +void __thiscall winISteamClient_SteamClient020_SetLocalIPBinding(struct w_iface *_this, const SteamIPAddress_t *unIP, uint16_t usPort) { struct ISteamClient_SteamClient020_SetLocalIPBinding_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -6971,11 +6977,11 @@ void __thiscall winISteamClient_SteamClient020_SetLocalIPBinding(struct w_steam_ STEAMCLIENT_CALL( ISteamClient_SteamClient020_SetLocalIPBinding, ¶ms ); } -void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient020_GetISteamFriends(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient020_GetISteamFriends(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamFriends_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -6987,11 +6993,11 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient020_GetISteamFrie return params._ret; } -void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient020_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient020_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamUtils_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; @@ -7002,11 +7008,11 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient020_GetISteamUtils( return params._ret; } -void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient020_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient020_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamMatchmaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7018,11 +7024,11 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient020_GetISteam return params._ret; } -void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient020_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient020_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamMatchmakingServers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7034,11 +7040,11 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient020_Ge return params._ret; } -void * __thiscall winISteamClient_SteamClient020_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient020_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamGenericInterface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7050,11 +7056,11 @@ void * __thiscall winISteamClient_SteamClient020_GetISteamGenericInterface(struc return params._ret; } -void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient020_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient020_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7066,11 +7072,11 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient020_GetISteamUs return params._ret; } -void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient020_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient020_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamGameServerStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7082,11 +7088,11 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient020_GetIS return params._ret; } -void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient020_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient020_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamApps_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7098,11 +7104,11 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient020_GetISteamApps(st return params._ret; } -void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient020_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient020_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamNetworking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7114,11 +7120,11 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient020_GetISteamN return params._ret; } -void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient020_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient020_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamRemoteStorage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7130,11 +7136,11 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient020_GetISte return params._ret; } -void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient020_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient020_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamScreenshots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7146,11 +7152,11 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient020_GetISteam return params._ret; } -void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient020_GetISteamGameSearch(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient020_GetISteamGameSearch(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamGameSearch_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7162,54 +7168,54 @@ void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient020_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient020_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamClient_SteamClient020_RunFrame(struct w_iface *_this) { struct ISteamClient_SteamClient020_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient020_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamClient_SteamClient020_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamClient_SteamClient020_GetIPCCallCount(struct w_iface *_this) { struct ISteamClient_SteamClient020_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient020_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamClient_SteamClient020_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamClient_SteamClient020_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamClient_SteamClient020_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient020_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamClient_SteamClient020_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient020_BShutdownIfAllPipesClosed(struct w_iface *_this) { struct ISteamClient_SteamClient020_BShutdownIfAllPipesClosed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient020_BShutdownIfAllPipesClosed, ¶ms ); return params._ret; } -void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient020_GetISteamHTTP(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient020_GetISteamHTTP(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamHTTP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7221,11 +7227,11 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient020_GetISteamHTTP(st return params._ret; } -void * __thiscall winISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7233,14 +7239,15 @@ void * __thiscall winISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMess TRACE("%p\n", _this); IsBadStringPtrA(pchVersion, -1); STEAMCLIENT_CALL( ISteamClient_SteamClient020_DEPRECATED_GetISteamUnifiedMessages, ¶ms ); + params._ret = create_win_interface( pchVersion, params._ret ); return params._ret; } -void /*ISteamController*/ * __thiscall winISteamClient_SteamClient020_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamController*/ * __thiscall winISteamClient_SteamClient020_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7252,11 +7259,11 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient020_GetISteamC return params._ret; } -void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient020_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient020_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamUGC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7268,11 +7275,11 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient020_GetISteamUGC(stru return params._ret; } -void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient020_GetISteamAppList(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient020_GetISteamAppList(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamAppList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7284,11 +7291,11 @@ void /*ISteamAppList*/ * __thiscall winISteamClient_SteamClient020_GetISteamAppL return params._ret; } -void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient020_GetISteamMusic(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient020_GetISteamMusic(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamMusic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7300,11 +7307,11 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient020_GetISteamMusic( return params._ret; } -void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient020_GetISteamMusicRemote(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient020_GetISteamMusicRemote(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamMusicRemote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7316,11 +7323,11 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient020_GetISteam return params._ret; } -void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient020_GetISteamHTMLSurface(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient020_GetISteamHTMLSurface(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamHTMLSurface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7332,44 +7339,44 @@ void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient020_GetISteam return params._ret; } -void __thiscall winISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_CDECL _a)(void)) +void __thiscall winISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_iface *_this, void (*W_CDECL _a)(void)) { struct ISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._a = _a, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient020_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess, ¶ms ); } -void __thiscall winISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_CDECL _a)(void)) +void __thiscall winISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess(struct w_iface *_this, void (*W_CDECL _a)(void)) { struct ISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._a = _a, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient020_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess, ¶ms ); } -void __thiscall winISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess(struct w_steam_iface *_this, uint32_t (*W_CDECL func)(int32_t)) +void __thiscall winISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess(struct w_iface *_this, uint32_t (*W_CDECL func)(int32_t)) { struct ISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .func = func, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient020_Set_SteamAPI_CCheckCallbackRegisteredInProcess, ¶ms ); } -void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient020_GetISteamInventory(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient020_GetISteamInventory(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamInventory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7381,11 +7388,11 @@ void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient020_GetISteamIn return params._ret; } -void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient020_GetISteamVideo(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient020_GetISteamVideo(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7397,11 +7404,11 @@ void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient020_GetISteamVideo( return params._ret; } -void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient020_GetISteamParentalSettings(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient020_GetISteamParentalSettings(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamParentalSettings_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7413,11 +7420,11 @@ void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient020_GetI return params._ret; } -void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient020_GetISteamInput(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient020_GetISteamInput(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7429,11 +7436,11 @@ void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient020_GetISteamInput( return params._ret; } -void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient020_GetISteamParties(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient020_GetISteamParties(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamParties_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7445,11 +7452,11 @@ void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient020_GetISteamPart return params._ret; } -void /*ISteamRemotePlay*/ * __thiscall winISteamClient_SteamClient020_GetISteamRemotePlay(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamRemotePlay*/ * __thiscall winISteamClient_SteamClient020_GetISteamRemotePlay(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient020_GetISteamRemotePlay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7461,11 +7468,11 @@ void /*ISteamRemotePlay*/ * __thiscall winISteamClient_SteamClient020_GetISteamR return params._ret; } -void __thiscall winISteamClient_SteamClient020_DestroyAllInterfaces(struct w_steam_iface *_this) +void __thiscall winISteamClient_SteamClient020_DestroyAllInterfaces(struct w_iface *_this) { struct ISteamClient_SteamClient020_DestroyAllInterfaces_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient020_DestroyAllInterfaces, ¶ms ); @@ -7522,9 +7529,9 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient020_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamClient_SteamClient020(void *u_iface) +struct w_iface *create_winISteamClient_SteamClient020( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamClient020"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient020"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamClient_SteamClient020_vtable, 42, "SteamClient020"); r->u_iface = u_iface; @@ -7572,22 +7579,22 @@ DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient021_GetISteamParties, 16) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient021_GetISteamRemotePlay, 16) DEFINE_THISCALL_WRAPPER(winISteamClient_SteamClient021_DestroyAllInterfaces, 4) -int32_t __thiscall winISteamClient_SteamClient021_CreateSteamPipe(struct w_steam_iface *_this) +int32_t __thiscall winISteamClient_SteamClient021_CreateSteamPipe(struct w_iface *_this) { struct ISteamClient_SteamClient021_CreateSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient021_CreateSteamPipe, ¶ms ); return params._ret; } -int8_t __thiscall winISteamClient_SteamClient021_BReleaseSteamPipe(struct w_steam_iface *_this, int32_t hSteamPipe) +int8_t __thiscall winISteamClient_SteamClient021_BReleaseSteamPipe(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient021_BReleaseSteamPipe_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -7595,11 +7602,11 @@ int8_t __thiscall winISteamClient_SteamClient021_BReleaseSteamPipe(struct w_stea return params._ret; } -int32_t __thiscall winISteamClient_SteamClient021_ConnectToGlobalUser(struct w_steam_iface *_this, int32_t hSteamPipe) +int32_t __thiscall winISteamClient_SteamClient021_ConnectToGlobalUser(struct w_iface *_this, int32_t hSteamPipe) { struct ISteamClient_SteamClient021_ConnectToGlobalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, }; TRACE("%p\n", _this); @@ -7607,11 +7614,11 @@ int32_t __thiscall winISteamClient_SteamClient021_ConnectToGlobalUser(struct w_s return params._ret; } -int32_t __thiscall winISteamClient_SteamClient021_CreateLocalUser(struct w_steam_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) +int32_t __thiscall winISteamClient_SteamClient021_CreateLocalUser(struct w_iface *_this, int32_t *phSteamPipe, uint32_t eAccountType) { struct ISteamClient_SteamClient021_CreateLocalUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .phSteamPipe = phSteamPipe, .eAccountType = eAccountType, }; @@ -7620,11 +7627,11 @@ int32_t __thiscall winISteamClient_SteamClient021_CreateLocalUser(struct w_steam return params._ret; } -void __thiscall winISteamClient_SteamClient021_ReleaseUser(struct w_steam_iface *_this, int32_t hSteamPipe, int32_t hUser) +void __thiscall winISteamClient_SteamClient021_ReleaseUser(struct w_iface *_this, int32_t hSteamPipe, int32_t hUser) { struct ISteamClient_SteamClient021_ReleaseUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .hUser = hUser, }; @@ -7632,11 +7639,11 @@ void __thiscall winISteamClient_SteamClient021_ReleaseUser(struct w_steam_iface STEAMCLIENT_CALL( ISteamClient_SteamClient021_ReleaseUser, ¶ms ); } -void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient021_GetISteamUser(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient021_GetISteamUser(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7648,11 +7655,11 @@ void /*ISteamUser*/ * __thiscall winISteamClient_SteamClient021_GetISteamUser(st return params._ret; } -void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient021_GetISteamGameServer(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient021_GetISteamGameServer(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7664,11 +7671,11 @@ void /*ISteamGameServer*/ * __thiscall winISteamClient_SteamClient021_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient021_SetLocalIPBinding(struct w_steam_iface *_this, const SteamIPAddress_t *unIP, uint16_t usPort) +void __thiscall winISteamClient_SteamClient021_SetLocalIPBinding(struct w_iface *_this, const SteamIPAddress_t *unIP, uint16_t usPort) { struct ISteamClient_SteamClient021_SetLocalIPBinding_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -7676,11 +7683,11 @@ void __thiscall winISteamClient_SteamClient021_SetLocalIPBinding(struct w_steam_ STEAMCLIENT_CALL( ISteamClient_SteamClient021_SetLocalIPBinding, ¶ms ); } -void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient021_GetISteamFriends(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient021_GetISteamFriends(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamFriends_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7692,11 +7699,11 @@ void /*ISteamFriends*/ * __thiscall winISteamClient_SteamClient021_GetISteamFrie return params._ret; } -void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient021_GetISteamUtils(struct w_steam_iface *_this, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient021_GetISteamUtils(struct w_iface *_this, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamUtils_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, }; @@ -7707,11 +7714,11 @@ void /*ISteamUtils*/ * __thiscall winISteamClient_SteamClient021_GetISteamUtils( return params._ret; } -void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient021_GetISteamMatchmaking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient021_GetISteamMatchmaking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamMatchmaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7723,11 +7730,11 @@ void /*ISteamMatchmaking*/ * __thiscall winISteamClient_SteamClient021_GetISteam return params._ret; } -void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient021_GetISteamMatchmakingServers(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient021_GetISteamMatchmakingServers(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamMatchmakingServers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7739,11 +7746,11 @@ void /*ISteamMatchmakingServers*/ * __thiscall winISteamClient_SteamClient021_Ge return params._ret; } -void * __thiscall winISteamClient_SteamClient021_GetISteamGenericInterface(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void * __thiscall winISteamClient_SteamClient021_GetISteamGenericInterface(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamGenericInterface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7755,11 +7762,11 @@ void * __thiscall winISteamClient_SteamClient021_GetISteamGenericInterface(struc return params._ret; } -void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient021_GetISteamUserStats(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient021_GetISteamUserStats(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7771,11 +7778,11 @@ void /*ISteamUserStats*/ * __thiscall winISteamClient_SteamClient021_GetISteamUs return params._ret; } -void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient021_GetISteamGameServerStats(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient021_GetISteamGameServerStats(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamGameServerStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7787,11 +7794,11 @@ void /*ISteamGameServerStats*/ * __thiscall winISteamClient_SteamClient021_GetIS return params._ret; } -void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient021_GetISteamApps(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient021_GetISteamApps(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamApps_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7803,11 +7810,11 @@ void /*ISteamApps*/ * __thiscall winISteamClient_SteamClient021_GetISteamApps(st return params._ret; } -void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient021_GetISteamNetworking(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient021_GetISteamNetworking(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamNetworking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7819,11 +7826,11 @@ void /*ISteamNetworking*/ * __thiscall winISteamClient_SteamClient021_GetISteamN return params._ret; } -void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient021_GetISteamRemoteStorage(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient021_GetISteamRemoteStorage(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamRemoteStorage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7835,11 +7842,11 @@ void /*ISteamRemoteStorage*/ * __thiscall winISteamClient_SteamClient021_GetISte return params._ret; } -void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient021_GetISteamScreenshots(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient021_GetISteamScreenshots(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamScreenshots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7851,11 +7858,11 @@ void /*ISteamScreenshots*/ * __thiscall winISteamClient_SteamClient021_GetISteam return params._ret; } -void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient021_GetISteamGameSearch(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient021_GetISteamGameSearch(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamGameSearch_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7867,54 +7874,54 @@ void /*ISteamGameSearch*/ * __thiscall winISteamClient_SteamClient021_GetISteamG return params._ret; } -void __thiscall winISteamClient_SteamClient021_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamClient_SteamClient021_RunFrame(struct w_iface *_this) { struct ISteamClient_SteamClient021_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient021_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamClient_SteamClient021_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamClient_SteamClient021_GetIPCCallCount(struct w_iface *_this) { struct ISteamClient_SteamClient021_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient021_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamClient_SteamClient021_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamClient_SteamClient021_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamClient_SteamClient021_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient021_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamClient_SteamClient021_BShutdownIfAllPipesClosed(struct w_steam_iface *_this) +int8_t __thiscall winISteamClient_SteamClient021_BShutdownIfAllPipesClosed(struct w_iface *_this) { struct ISteamClient_SteamClient021_BShutdownIfAllPipesClosed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient021_BShutdownIfAllPipesClosed, ¶ms ); return params._ret; } -void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient021_GetISteamHTTP(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient021_GetISteamHTTP(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamHTTP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7926,11 +7933,11 @@ void /*ISteamHTTP*/ * __thiscall winISteamClient_SteamClient021_GetISteamHTTP(st return params._ret; } -void /*ISteamController*/ * __thiscall winISteamClient_SteamClient021_GetISteamController(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamController*/ * __thiscall winISteamClient_SteamClient021_GetISteamController(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7942,11 +7949,11 @@ void /*ISteamController*/ * __thiscall winISteamClient_SteamClient021_GetISteamC return params._ret; } -void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient021_GetISteamUGC(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient021_GetISteamUGC(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamUGC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7958,11 +7965,11 @@ void /*ISteamUGC*/ * __thiscall winISteamClient_SteamClient021_GetISteamUGC(stru return params._ret; } -void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient021_GetISteamMusic(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient021_GetISteamMusic(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamMusic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7974,11 +7981,11 @@ void /*ISteamMusic*/ * __thiscall winISteamClient_SteamClient021_GetISteamMusic( return params._ret; } -void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient021_GetISteamMusicRemote(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient021_GetISteamMusicRemote(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamMusicRemote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -7990,11 +7997,11 @@ void /*ISteamMusicRemote*/ * __thiscall winISteamClient_SteamClient021_GetISteam return params._ret; } -void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient021_GetISteamHTMLSurface(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient021_GetISteamHTMLSurface(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamHTMLSurface_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -8006,44 +8013,44 @@ void /*ISteamHTMLSurface*/ * __thiscall winISteamClient_SteamClient021_GetISteam return params._ret; } -void __thiscall winISteamClient_SteamClient021_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_CDECL _a)(void)) +void __thiscall winISteamClient_SteamClient021_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess(struct w_iface *_this, void (*W_CDECL _a)(void)) { struct ISteamClient_SteamClient021_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._a = _a, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient021_DEPRECATED_Set_SteamAPI_CPostAPIResultInProcess, ¶ms ); } -void __thiscall winISteamClient_SteamClient021_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess(struct w_steam_iface *_this, void (*W_CDECL _a)(void)) +void __thiscall winISteamClient_SteamClient021_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess(struct w_iface *_this, void (*W_CDECL _a)(void)) { struct ISteamClient_SteamClient021_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._a = _a, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient021_DEPRECATED_Remove_SteamAPI_CPostAPIResultInProcess, ¶ms ); } -void __thiscall winISteamClient_SteamClient021_Set_SteamAPI_CCheckCallbackRegisteredInProcess(struct w_steam_iface *_this, uint32_t (*W_CDECL func)(int32_t)) +void __thiscall winISteamClient_SteamClient021_Set_SteamAPI_CCheckCallbackRegisteredInProcess(struct w_iface *_this, uint32_t (*W_CDECL func)(int32_t)) { struct ISteamClient_SteamClient021_Set_SteamAPI_CCheckCallbackRegisteredInProcess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .func = func, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient021_Set_SteamAPI_CCheckCallbackRegisteredInProcess, ¶ms ); } -void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient021_GetISteamInventory(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient021_GetISteamInventory(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamInventory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -8055,11 +8062,11 @@ void /*ISteamInventory*/ * __thiscall winISteamClient_SteamClient021_GetISteamIn return params._ret; } -void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient021_GetISteamVideo(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient021_GetISteamVideo(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -8071,11 +8078,11 @@ void /*ISteamVideo*/ * __thiscall winISteamClient_SteamClient021_GetISteamVideo( return params._ret; } -void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient021_GetISteamParentalSettings(struct w_steam_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient021_GetISteamParentalSettings(struct w_iface *_this, int32_t hSteamuser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamParentalSettings_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamuser = hSteamuser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -8087,11 +8094,11 @@ void /*ISteamParentalSettings*/ * __thiscall winISteamClient_SteamClient021_GetI return params._ret; } -void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient021_GetISteamInput(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient021_GetISteamInput(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -8103,11 +8110,11 @@ void /*ISteamInput*/ * __thiscall winISteamClient_SteamClient021_GetISteamInput( return params._ret; } -void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient021_GetISteamParties(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient021_GetISteamParties(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamParties_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -8119,11 +8126,11 @@ void /*ISteamParties*/ * __thiscall winISteamClient_SteamClient021_GetISteamPart return params._ret; } -void /*ISteamRemotePlay*/ * __thiscall winISteamClient_SteamClient021_GetISteamRemotePlay(struct w_steam_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) +void /*ISteamRemotePlay*/ * __thiscall winISteamClient_SteamClient021_GetISteamRemotePlay(struct w_iface *_this, int32_t hSteamUser, int32_t hSteamPipe, const char *pchVersion) { struct ISteamClient_SteamClient021_GetISteamRemotePlay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamUser = hSteamUser, .hSteamPipe = hSteamPipe, .pchVersion = pchVersion, @@ -8135,11 +8142,11 @@ void /*ISteamRemotePlay*/ * __thiscall winISteamClient_SteamClient021_GetISteamR return params._ret; } -void __thiscall winISteamClient_SteamClient021_DestroyAllInterfaces(struct w_steam_iface *_this) +void __thiscall winISteamClient_SteamClient021_DestroyAllInterfaces(struct w_iface *_this) { struct ISteamClient_SteamClient021_DestroyAllInterfaces_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamClient_SteamClient021_DestroyAllInterfaces, ¶ms ); @@ -8194,9 +8201,9 @@ __ASM_BLOCK_BEGIN(winISteamClient_SteamClient021_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamClient_SteamClient021(void *u_iface) +struct w_iface *create_winISteamClient_SteamClient021( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamClient021"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamClient021"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamClient_SteamClient021_vtable, 40, "SteamClient021"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamController.c b/lsteamclient/winISteamController.c index e2a0ec32..24f1930d 100644 --- a/lsteamclient/winISteamController.c +++ b/lsteamclient/winISteamController.c @@ -10,11 +10,11 @@ DEFINE_THISCALL_WRAPPER(winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Ge DEFINE_THISCALL_WRAPPER(winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse, 16) DEFINE_THISCALL_WRAPPER(winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode, 8) -int8_t __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init(struct w_steam_iface *_this, const char *pchAbsolutePathToControllerConfigVDF) +int8_t __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init(struct w_iface *_this, const char *pchAbsolutePathToControllerConfigVDF) { struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchAbsolutePathToControllerConfigVDF = pchAbsolutePathToControllerConfigVDF, }; TRACE("%p\n", _this); @@ -23,32 +23,32 @@ int8_t __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Init(str return params._ret; } -int8_t __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown(struct w_iface *_this) { struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_Shutdown, ¶ms ); return params._ret; } -void __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame(struct w_iface *_this) { struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_RunFrame, ¶ms ); } -int8_t __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState(struct w_steam_iface *_this, uint32_t unControllerIndex, SteamControllerState001_t *pState) +int8_t __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState(struct w_iface *_this, uint32_t unControllerIndex, SteamControllerState001_t *pState) { struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetControllerState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unControllerIndex = unControllerIndex, .pState = pState, }; @@ -57,11 +57,11 @@ int8_t __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_GetContr return params._ret; } -void __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse(struct w_steam_iface *_this, uint32_t unControllerIndex, uint32_t eTargetPad, uint16_t usDurationMicroSec) +void __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse(struct w_iface *_this, uint32_t unControllerIndex, uint32_t eTargetPad, uint16_t usDurationMicroSec) { struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unControllerIndex = unControllerIndex, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -70,11 +70,11 @@ void __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHap STEAMCLIENT_CALL( ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_TriggerHapticPulse, ¶ms ); } -void __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode(struct w_steam_iface *_this, const char *pchMode) +void __thiscall winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode(struct w_iface *_this, const char *pchMode) { struct ISteamController_STEAMCONTROLLER_INTERFACE_VERSION_SetOverrideMode_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchMode = pchMode, }; TRACE("%p\n", _this); @@ -97,9 +97,9 @@ __ASM_BLOCK_BEGIN(winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamController_STEAMCONTROLLER_INTERFACE_VERSION(void *u_iface) +struct w_iface *create_winISteamController_STEAMCONTROLLER_INTERFACE_VERSION( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMCONTROLLER_INTERFACE_VERSION"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMCONTROLLER_INTERFACE_VERSION"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamController_STEAMCONTROLLER_INTERFACE_VERSION_vtable, 6, "STEAMCONTROLLER_INTERFACE_VERSION"); r->u_iface = u_iface; @@ -124,43 +124,43 @@ DEFINE_THISCALL_WRAPPER(winISteamController_SteamController003_StopAnalogActionM DEFINE_THISCALL_WRAPPER(winISteamController_SteamController003_TriggerHapticPulse, 20) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController003_TriggerRepeatedHapticPulse, 32) -int8_t __thiscall winISteamController_SteamController003_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController003_Init(struct w_iface *_this) { struct ISteamController_SteamController003_Init_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController003_Init, ¶ms ); return params._ret; } -int8_t __thiscall winISteamController_SteamController003_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController003_Shutdown(struct w_iface *_this) { struct ISteamController_SteamController003_Shutdown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController003_Shutdown, ¶ms ); return params._ret; } -void __thiscall winISteamController_SteamController003_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamController_SteamController003_RunFrame(struct w_iface *_this) { struct ISteamController_SteamController003_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController003_RunFrame, ¶ms ); } -int32_t __thiscall winISteamController_SteamController003_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) +int32_t __thiscall winISteamController_SteamController003_GetConnectedControllers(struct w_iface *_this, uint64_t *handlesOut) { struct ISteamController_SteamController003_GetConnectedControllers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); @@ -168,11 +168,11 @@ int32_t __thiscall winISteamController_SteamController003_GetConnectedController return params._ret; } -int8_t __thiscall winISteamController_SteamController003_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) +int8_t __thiscall winISteamController_SteamController003_ShowBindingPanel(struct w_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController003_ShowBindingPanel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); @@ -180,11 +180,11 @@ int8_t __thiscall winISteamController_SteamController003_ShowBindingPanel(struct return params._ret; } -uint64_t __thiscall winISteamController_SteamController003_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) +uint64_t __thiscall winISteamController_SteamController003_GetActionSetHandle(struct w_iface *_this, const char *pszActionSetName) { struct ISteamController_SteamController003_GetActionSetHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); @@ -193,11 +193,11 @@ uint64_t __thiscall winISteamController_SteamController003_GetActionSetHandle(st return params._ret; } -void __thiscall winISteamController_SteamController003_ActivateActionSet(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle) +void __thiscall winISteamController_SteamController003_ActivateActionSet(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle) { struct ISteamController_SteamController003_ActivateActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, }; @@ -205,11 +205,11 @@ void __thiscall winISteamController_SteamController003_ActivateActionSet(struct STEAMCLIENT_CALL( ISteamController_SteamController003_ActivateActionSet, ¶ms ); } -uint64_t __thiscall winISteamController_SteamController003_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t controllerHandle) +uint64_t __thiscall winISteamController_SteamController003_GetCurrentActionSet(struct w_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController003_GetCurrentActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); @@ -217,11 +217,11 @@ uint64_t __thiscall winISteamController_SteamController003_GetCurrentActionSet(s return params._ret; } -uint64_t __thiscall winISteamController_SteamController003_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamController_SteamController003_GetDigitalActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamController_SteamController003_GetDigitalActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -230,11 +230,11 @@ uint64_t __thiscall winISteamController_SteamController003_GetDigitalActionHandl return params._ret; } -ControllerDigitalActionData_t * __thiscall winISteamController_SteamController003_GetDigitalActionData(struct w_steam_iface *_this, ControllerDigitalActionData_t *_ret, uint64_t controllerHandle, uint64_t digitalActionHandle) +ControllerDigitalActionData_t * __thiscall winISteamController_SteamController003_GetDigitalActionData(struct w_iface *_this, ControllerDigitalActionData_t *_ret, uint64_t controllerHandle, uint64_t digitalActionHandle) { struct ISteamController_SteamController003_GetDigitalActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, .digitalActionHandle = digitalActionHandle, @@ -244,11 +244,11 @@ ControllerDigitalActionData_t * __thiscall winISteamController_SteamController00 return params._ret; } -int32_t __thiscall winISteamController_SteamController003_GetDigitalActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamController_SteamController003_GetDigitalActionOrigins(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) { struct ISteamController_SteamController003_GetDigitalActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, .digitalActionHandle = digitalActionHandle, @@ -259,11 +259,11 @@ int32_t __thiscall winISteamController_SteamController003_GetDigitalActionOrigin return params._ret; } -uint64_t __thiscall winISteamController_SteamController003_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamController_SteamController003_GetAnalogActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamController_SteamController003_GetAnalogActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -272,11 +272,11 @@ uint64_t __thiscall winISteamController_SteamController003_GetAnalogActionHandle return params._ret; } -ControllerAnalogActionData_t * __thiscall winISteamController_SteamController003_GetAnalogActionData(struct w_steam_iface *_this, ControllerAnalogActionData_t *_ret, uint64_t controllerHandle, uint64_t analogActionHandle) +ControllerAnalogActionData_t * __thiscall winISteamController_SteamController003_GetAnalogActionData(struct w_iface *_this, ControllerAnalogActionData_t *_ret, uint64_t controllerHandle, uint64_t analogActionHandle) { struct ISteamController_SteamController003_GetAnalogActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, .analogActionHandle = analogActionHandle, @@ -286,11 +286,11 @@ ControllerAnalogActionData_t * __thiscall winISteamController_SteamController003 return params._ret; } -int32_t __thiscall winISteamController_SteamController003_GetAnalogActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamController_SteamController003_GetAnalogActionOrigins(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) { struct ISteamController_SteamController003_GetAnalogActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, .analogActionHandle = analogActionHandle, @@ -301,11 +301,11 @@ int32_t __thiscall winISteamController_SteamController003_GetAnalogActionOrigins return params._ret; } -void __thiscall winISteamController_SteamController003_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t eAction) +void __thiscall winISteamController_SteamController003_StopAnalogActionMomentum(struct w_iface *_this, uint64_t controllerHandle, uint64_t eAction) { struct ISteamController_SteamController003_StopAnalogActionMomentum_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eAction = eAction, }; @@ -313,11 +313,11 @@ void __thiscall winISteamController_SteamController003_StopAnalogActionMomentum( STEAMCLIENT_CALL( ISteamController_SteamController003_StopAnalogActionMomentum, ¶ms ); } -void __thiscall winISteamController_SteamController003_TriggerHapticPulse(struct w_steam_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) +void __thiscall winISteamController_SteamController003_TriggerHapticPulse(struct w_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) { struct ISteamController_SteamController003_TriggerHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -326,11 +326,11 @@ void __thiscall winISteamController_SteamController003_TriggerHapticPulse(struct STEAMCLIENT_CALL( ISteamController_SteamController003_TriggerHapticPulse, ¶ms ); } -void __thiscall winISteamController_SteamController003_TriggerRepeatedHapticPulse(struct w_steam_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) +void __thiscall winISteamController_SteamController003_TriggerRepeatedHapticPulse(struct w_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) { struct ISteamController_SteamController003_TriggerRepeatedHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -368,9 +368,9 @@ __ASM_BLOCK_BEGIN(winISteamController_SteamController003_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamController_SteamController003(void *u_iface) +struct w_iface *create_winISteamController_SteamController003( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamController003"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamController003"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamController_SteamController003_vtable, 17, "SteamController003"); r->u_iface = u_iface; @@ -400,43 +400,43 @@ DEFINE_THISCALL_WRAPPER(winISteamController_SteamController004_GetMotionData, 16 DEFINE_THISCALL_WRAPPER(winISteamController_SteamController004_ShowDigitalActionOrigins, 32) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController004_ShowAnalogActionOrigins, 32) -int8_t __thiscall winISteamController_SteamController004_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController004_Init(struct w_iface *_this) { struct ISteamController_SteamController004_Init_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController004_Init, ¶ms ); return params._ret; } -int8_t __thiscall winISteamController_SteamController004_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController004_Shutdown(struct w_iface *_this) { struct ISteamController_SteamController004_Shutdown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController004_Shutdown, ¶ms ); return params._ret; } -void __thiscall winISteamController_SteamController004_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamController_SteamController004_RunFrame(struct w_iface *_this) { struct ISteamController_SteamController004_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController004_RunFrame, ¶ms ); } -int32_t __thiscall winISteamController_SteamController004_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) +int32_t __thiscall winISteamController_SteamController004_GetConnectedControllers(struct w_iface *_this, uint64_t *handlesOut) { struct ISteamController_SteamController004_GetConnectedControllers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); @@ -444,11 +444,11 @@ int32_t __thiscall winISteamController_SteamController004_GetConnectedController return params._ret; } -int8_t __thiscall winISteamController_SteamController004_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) +int8_t __thiscall winISteamController_SteamController004_ShowBindingPanel(struct w_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController004_ShowBindingPanel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); @@ -456,11 +456,11 @@ int8_t __thiscall winISteamController_SteamController004_ShowBindingPanel(struct return params._ret; } -uint64_t __thiscall winISteamController_SteamController004_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) +uint64_t __thiscall winISteamController_SteamController004_GetActionSetHandle(struct w_iface *_this, const char *pszActionSetName) { struct ISteamController_SteamController004_GetActionSetHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); @@ -469,11 +469,11 @@ uint64_t __thiscall winISteamController_SteamController004_GetActionSetHandle(st return params._ret; } -void __thiscall winISteamController_SteamController004_ActivateActionSet(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle) +void __thiscall winISteamController_SteamController004_ActivateActionSet(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle) { struct ISteamController_SteamController004_ActivateActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, }; @@ -481,11 +481,11 @@ void __thiscall winISteamController_SteamController004_ActivateActionSet(struct STEAMCLIENT_CALL( ISteamController_SteamController004_ActivateActionSet, ¶ms ); } -uint64_t __thiscall winISteamController_SteamController004_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t controllerHandle) +uint64_t __thiscall winISteamController_SteamController004_GetCurrentActionSet(struct w_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController004_GetCurrentActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); @@ -493,11 +493,11 @@ uint64_t __thiscall winISteamController_SteamController004_GetCurrentActionSet(s return params._ret; } -uint64_t __thiscall winISteamController_SteamController004_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamController_SteamController004_GetDigitalActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamController_SteamController004_GetDigitalActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -506,11 +506,11 @@ uint64_t __thiscall winISteamController_SteamController004_GetDigitalActionHandl return params._ret; } -ControllerDigitalActionData_t * __thiscall winISteamController_SteamController004_GetDigitalActionData(struct w_steam_iface *_this, ControllerDigitalActionData_t *_ret, uint64_t controllerHandle, uint64_t digitalActionHandle) +ControllerDigitalActionData_t * __thiscall winISteamController_SteamController004_GetDigitalActionData(struct w_iface *_this, ControllerDigitalActionData_t *_ret, uint64_t controllerHandle, uint64_t digitalActionHandle) { struct ISteamController_SteamController004_GetDigitalActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, .digitalActionHandle = digitalActionHandle, @@ -520,11 +520,11 @@ ControllerDigitalActionData_t * __thiscall winISteamController_SteamController00 return params._ret; } -int32_t __thiscall winISteamController_SteamController004_GetDigitalActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamController_SteamController004_GetDigitalActionOrigins(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) { struct ISteamController_SteamController004_GetDigitalActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, .digitalActionHandle = digitalActionHandle, @@ -535,11 +535,11 @@ int32_t __thiscall winISteamController_SteamController004_GetDigitalActionOrigin return params._ret; } -uint64_t __thiscall winISteamController_SteamController004_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamController_SteamController004_GetAnalogActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamController_SteamController004_GetAnalogActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -548,11 +548,11 @@ uint64_t __thiscall winISteamController_SteamController004_GetAnalogActionHandle return params._ret; } -ControllerAnalogActionData_t * __thiscall winISteamController_SteamController004_GetAnalogActionData(struct w_steam_iface *_this, ControllerAnalogActionData_t *_ret, uint64_t controllerHandle, uint64_t analogActionHandle) +ControllerAnalogActionData_t * __thiscall winISteamController_SteamController004_GetAnalogActionData(struct w_iface *_this, ControllerAnalogActionData_t *_ret, uint64_t controllerHandle, uint64_t analogActionHandle) { struct ISteamController_SteamController004_GetAnalogActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, .analogActionHandle = analogActionHandle, @@ -562,11 +562,11 @@ ControllerAnalogActionData_t * __thiscall winISteamController_SteamController004 return params._ret; } -int32_t __thiscall winISteamController_SteamController004_GetAnalogActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamController_SteamController004_GetAnalogActionOrigins(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) { struct ISteamController_SteamController004_GetAnalogActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, .analogActionHandle = analogActionHandle, @@ -577,11 +577,11 @@ int32_t __thiscall winISteamController_SteamController004_GetAnalogActionOrigins return params._ret; } -void __thiscall winISteamController_SteamController004_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t eAction) +void __thiscall winISteamController_SteamController004_StopAnalogActionMomentum(struct w_iface *_this, uint64_t controllerHandle, uint64_t eAction) { struct ISteamController_SteamController004_StopAnalogActionMomentum_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eAction = eAction, }; @@ -589,11 +589,11 @@ void __thiscall winISteamController_SteamController004_StopAnalogActionMomentum( STEAMCLIENT_CALL( ISteamController_SteamController004_StopAnalogActionMomentum, ¶ms ); } -void __thiscall winISteamController_SteamController004_TriggerHapticPulse(struct w_steam_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) +void __thiscall winISteamController_SteamController004_TriggerHapticPulse(struct w_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) { struct ISteamController_SteamController004_TriggerHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -602,11 +602,11 @@ void __thiscall winISteamController_SteamController004_TriggerHapticPulse(struct STEAMCLIENT_CALL( ISteamController_SteamController004_TriggerHapticPulse, ¶ms ); } -void __thiscall winISteamController_SteamController004_TriggerRepeatedHapticPulse(struct w_steam_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) +void __thiscall winISteamController_SteamController004_TriggerRepeatedHapticPulse(struct w_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) { struct ISteamController_SteamController004_TriggerRepeatedHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -618,11 +618,11 @@ void __thiscall winISteamController_SteamController004_TriggerRepeatedHapticPuls STEAMCLIENT_CALL( ISteamController_SteamController004_TriggerRepeatedHapticPulse, ¶ms ); } -int32_t __thiscall winISteamController_SteamController004_GetGamepadIndexForController(struct w_steam_iface *_this, uint64_t ulControllerHandle) +int32_t __thiscall winISteamController_SteamController004_GetGamepadIndexForController(struct w_iface *_this, uint64_t ulControllerHandle) { struct ISteamController_SteamController004_GetGamepadIndexForController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulControllerHandle = ulControllerHandle, }; TRACE("%p\n", _this); @@ -630,11 +630,11 @@ int32_t __thiscall winISteamController_SteamController004_GetGamepadIndexForCont return params._ret; } -uint64_t __thiscall winISteamController_SteamController004_GetControllerForGamepadIndex(struct w_steam_iface *_this, int32_t nIndex) +uint64_t __thiscall winISteamController_SteamController004_GetControllerForGamepadIndex(struct w_iface *_this, int32_t nIndex) { struct ISteamController_SteamController004_GetControllerForGamepadIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nIndex = nIndex, }; TRACE("%p\n", _this); @@ -642,11 +642,11 @@ uint64_t __thiscall winISteamController_SteamController004_GetControllerForGamep return params._ret; } -ControllerMotionData_t * __thiscall winISteamController_SteamController004_GetMotionData(struct w_steam_iface *_this, ControllerMotionData_t *_ret, uint64_t controllerHandle) +ControllerMotionData_t * __thiscall winISteamController_SteamController004_GetMotionData(struct w_iface *_this, ControllerMotionData_t *_ret, uint64_t controllerHandle) { struct ISteamController_SteamController004_GetMotionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, }; @@ -655,11 +655,11 @@ ControllerMotionData_t * __thiscall winISteamController_SteamController004_GetMo return params._ret; } -int8_t __thiscall winISteamController_SteamController004_ShowDigitalActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t digitalActionHandle, float flScale, float flXPosition, float flYPosition) +int8_t __thiscall winISteamController_SteamController004_ShowDigitalActionOrigins(struct w_iface *_this, uint64_t controllerHandle, uint64_t digitalActionHandle, float flScale, float flXPosition, float flYPosition) { struct ISteamController_SteamController004_ShowDigitalActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .digitalActionHandle = digitalActionHandle, .flScale = flScale, @@ -671,11 +671,11 @@ int8_t __thiscall winISteamController_SteamController004_ShowDigitalActionOrigin return params._ret; } -int8_t __thiscall winISteamController_SteamController004_ShowAnalogActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t analogActionHandle, float flScale, float flXPosition, float flYPosition) +int8_t __thiscall winISteamController_SteamController004_ShowAnalogActionOrigins(struct w_iface *_this, uint64_t controllerHandle, uint64_t analogActionHandle, float flScale, float flXPosition, float flYPosition) { struct ISteamController_SteamController004_ShowAnalogActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .analogActionHandle = analogActionHandle, .flScale = flScale, @@ -718,9 +718,9 @@ __ASM_BLOCK_BEGIN(winISteamController_SteamController004_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamController_SteamController004(void *u_iface) +struct w_iface *create_winISteamController_SteamController004( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamController004"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamController004"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamController_SteamController004_vtable, 22, "SteamController004"); r->u_iface = u_iface; @@ -754,43 +754,43 @@ DEFINE_THISCALL_WRAPPER(winISteamController_SteamController005_ShowAnalogActionO DEFINE_THISCALL_WRAPPER(winISteamController_SteamController005_GetStringForActionOrigin, 8) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController005_GetGlyphForActionOrigin, 8) -int8_t __thiscall winISteamController_SteamController005_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController005_Init(struct w_iface *_this) { struct ISteamController_SteamController005_Init_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController005_Init, ¶ms ); return params._ret; } -int8_t __thiscall winISteamController_SteamController005_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController005_Shutdown(struct w_iface *_this) { struct ISteamController_SteamController005_Shutdown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController005_Shutdown, ¶ms ); return params._ret; } -void __thiscall winISteamController_SteamController005_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamController_SteamController005_RunFrame(struct w_iface *_this) { struct ISteamController_SteamController005_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController005_RunFrame, ¶ms ); } -int32_t __thiscall winISteamController_SteamController005_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) +int32_t __thiscall winISteamController_SteamController005_GetConnectedControllers(struct w_iface *_this, uint64_t *handlesOut) { struct ISteamController_SteamController005_GetConnectedControllers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); @@ -798,11 +798,11 @@ int32_t __thiscall winISteamController_SteamController005_GetConnectedController return params._ret; } -int8_t __thiscall winISteamController_SteamController005_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) +int8_t __thiscall winISteamController_SteamController005_ShowBindingPanel(struct w_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController005_ShowBindingPanel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); @@ -810,11 +810,11 @@ int8_t __thiscall winISteamController_SteamController005_ShowBindingPanel(struct return params._ret; } -uint64_t __thiscall winISteamController_SteamController005_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) +uint64_t __thiscall winISteamController_SteamController005_GetActionSetHandle(struct w_iface *_this, const char *pszActionSetName) { struct ISteamController_SteamController005_GetActionSetHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); @@ -823,11 +823,11 @@ uint64_t __thiscall winISteamController_SteamController005_GetActionSetHandle(st return params._ret; } -void __thiscall winISteamController_SteamController005_ActivateActionSet(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle) +void __thiscall winISteamController_SteamController005_ActivateActionSet(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle) { struct ISteamController_SteamController005_ActivateActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, }; @@ -835,11 +835,11 @@ void __thiscall winISteamController_SteamController005_ActivateActionSet(struct STEAMCLIENT_CALL( ISteamController_SteamController005_ActivateActionSet, ¶ms ); } -uint64_t __thiscall winISteamController_SteamController005_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t controllerHandle) +uint64_t __thiscall winISteamController_SteamController005_GetCurrentActionSet(struct w_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController005_GetCurrentActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); @@ -847,11 +847,11 @@ uint64_t __thiscall winISteamController_SteamController005_GetCurrentActionSet(s return params._ret; } -uint64_t __thiscall winISteamController_SteamController005_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamController_SteamController005_GetDigitalActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamController_SteamController005_GetDigitalActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -860,11 +860,11 @@ uint64_t __thiscall winISteamController_SteamController005_GetDigitalActionHandl return params._ret; } -ControllerDigitalActionData_t * __thiscall winISteamController_SteamController005_GetDigitalActionData(struct w_steam_iface *_this, ControllerDigitalActionData_t *_ret, uint64_t controllerHandle, uint64_t digitalActionHandle) +ControllerDigitalActionData_t * __thiscall winISteamController_SteamController005_GetDigitalActionData(struct w_iface *_this, ControllerDigitalActionData_t *_ret, uint64_t controllerHandle, uint64_t digitalActionHandle) { struct ISteamController_SteamController005_GetDigitalActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, .digitalActionHandle = digitalActionHandle, @@ -874,11 +874,11 @@ ControllerDigitalActionData_t * __thiscall winISteamController_SteamController00 return params._ret; } -int32_t __thiscall winISteamController_SteamController005_GetDigitalActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamController_SteamController005_GetDigitalActionOrigins(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) { struct ISteamController_SteamController005_GetDigitalActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, .digitalActionHandle = digitalActionHandle, @@ -889,11 +889,11 @@ int32_t __thiscall winISteamController_SteamController005_GetDigitalActionOrigin return params._ret; } -uint64_t __thiscall winISteamController_SteamController005_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamController_SteamController005_GetAnalogActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamController_SteamController005_GetAnalogActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -902,11 +902,11 @@ uint64_t __thiscall winISteamController_SteamController005_GetAnalogActionHandle return params._ret; } -ControllerAnalogActionData_t * __thiscall winISteamController_SteamController005_GetAnalogActionData(struct w_steam_iface *_this, ControllerAnalogActionData_t *_ret, uint64_t controllerHandle, uint64_t analogActionHandle) +ControllerAnalogActionData_t * __thiscall winISteamController_SteamController005_GetAnalogActionData(struct w_iface *_this, ControllerAnalogActionData_t *_ret, uint64_t controllerHandle, uint64_t analogActionHandle) { struct ISteamController_SteamController005_GetAnalogActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, .analogActionHandle = analogActionHandle, @@ -916,11 +916,11 @@ ControllerAnalogActionData_t * __thiscall winISteamController_SteamController005 return params._ret; } -int32_t __thiscall winISteamController_SteamController005_GetAnalogActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamController_SteamController005_GetAnalogActionOrigins(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) { struct ISteamController_SteamController005_GetAnalogActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, .analogActionHandle = analogActionHandle, @@ -931,11 +931,11 @@ int32_t __thiscall winISteamController_SteamController005_GetAnalogActionOrigins return params._ret; } -void __thiscall winISteamController_SteamController005_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t eAction) +void __thiscall winISteamController_SteamController005_StopAnalogActionMomentum(struct w_iface *_this, uint64_t controllerHandle, uint64_t eAction) { struct ISteamController_SteamController005_StopAnalogActionMomentum_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eAction = eAction, }; @@ -943,11 +943,11 @@ void __thiscall winISteamController_SteamController005_StopAnalogActionMomentum( STEAMCLIENT_CALL( ISteamController_SteamController005_StopAnalogActionMomentum, ¶ms ); } -void __thiscall winISteamController_SteamController005_TriggerHapticPulse(struct w_steam_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) +void __thiscall winISteamController_SteamController005_TriggerHapticPulse(struct w_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) { struct ISteamController_SteamController005_TriggerHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -956,11 +956,11 @@ void __thiscall winISteamController_SteamController005_TriggerHapticPulse(struct STEAMCLIENT_CALL( ISteamController_SteamController005_TriggerHapticPulse, ¶ms ); } -void __thiscall winISteamController_SteamController005_TriggerRepeatedHapticPulse(struct w_steam_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) +void __thiscall winISteamController_SteamController005_TriggerRepeatedHapticPulse(struct w_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) { struct ISteamController_SteamController005_TriggerRepeatedHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -972,11 +972,11 @@ void __thiscall winISteamController_SteamController005_TriggerRepeatedHapticPuls STEAMCLIENT_CALL( ISteamController_SteamController005_TriggerRepeatedHapticPulse, ¶ms ); } -void __thiscall winISteamController_SteamController005_TriggerVibration(struct w_steam_iface *_this, uint64_t controllerHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) +void __thiscall winISteamController_SteamController005_TriggerVibration(struct w_iface *_this, uint64_t controllerHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) { struct ISteamController_SteamController005_TriggerVibration_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .usLeftSpeed = usLeftSpeed, .usRightSpeed = usRightSpeed, @@ -985,11 +985,11 @@ void __thiscall winISteamController_SteamController005_TriggerVibration(struct w STEAMCLIENT_CALL( ISteamController_SteamController005_TriggerVibration, ¶ms ); } -void __thiscall winISteamController_SteamController005_SetLEDColor(struct w_steam_iface *_this, uint64_t controllerHandle, uint8_t nColorR, uint8_t nColorG, uint8_t nColorB, uint32_t nFlags) +void __thiscall winISteamController_SteamController005_SetLEDColor(struct w_iface *_this, uint64_t controllerHandle, uint8_t nColorR, uint8_t nColorG, uint8_t nColorB, uint32_t nFlags) { struct ISteamController_SteamController005_SetLEDColor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .nColorR = nColorR, .nColorG = nColorG, @@ -1000,11 +1000,11 @@ void __thiscall winISteamController_SteamController005_SetLEDColor(struct w_stea STEAMCLIENT_CALL( ISteamController_SteamController005_SetLEDColor, ¶ms ); } -int32_t __thiscall winISteamController_SteamController005_GetGamepadIndexForController(struct w_steam_iface *_this, uint64_t ulControllerHandle) +int32_t __thiscall winISteamController_SteamController005_GetGamepadIndexForController(struct w_iface *_this, uint64_t ulControllerHandle) { struct ISteamController_SteamController005_GetGamepadIndexForController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulControllerHandle = ulControllerHandle, }; TRACE("%p\n", _this); @@ -1012,11 +1012,11 @@ int32_t __thiscall winISteamController_SteamController005_GetGamepadIndexForCont return params._ret; } -uint64_t __thiscall winISteamController_SteamController005_GetControllerForGamepadIndex(struct w_steam_iface *_this, int32_t nIndex) +uint64_t __thiscall winISteamController_SteamController005_GetControllerForGamepadIndex(struct w_iface *_this, int32_t nIndex) { struct ISteamController_SteamController005_GetControllerForGamepadIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nIndex = nIndex, }; TRACE("%p\n", _this); @@ -1024,11 +1024,11 @@ uint64_t __thiscall winISteamController_SteamController005_GetControllerForGamep return params._ret; } -ControllerMotionData_t * __thiscall winISteamController_SteamController005_GetMotionData(struct w_steam_iface *_this, ControllerMotionData_t *_ret, uint64_t controllerHandle) +ControllerMotionData_t * __thiscall winISteamController_SteamController005_GetMotionData(struct w_iface *_this, ControllerMotionData_t *_ret, uint64_t controllerHandle) { struct ISteamController_SteamController005_GetMotionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, }; @@ -1037,11 +1037,11 @@ ControllerMotionData_t * __thiscall winISteamController_SteamController005_GetMo return params._ret; } -int8_t __thiscall winISteamController_SteamController005_ShowDigitalActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t digitalActionHandle, float flScale, float flXPosition, float flYPosition) +int8_t __thiscall winISteamController_SteamController005_ShowDigitalActionOrigins(struct w_iface *_this, uint64_t controllerHandle, uint64_t digitalActionHandle, float flScale, float flXPosition, float flYPosition) { struct ISteamController_SteamController005_ShowDigitalActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .digitalActionHandle = digitalActionHandle, .flScale = flScale, @@ -1053,11 +1053,11 @@ int8_t __thiscall winISteamController_SteamController005_ShowDigitalActionOrigin return params._ret; } -int8_t __thiscall winISteamController_SteamController005_ShowAnalogActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t analogActionHandle, float flScale, float flXPosition, float flYPosition) +int8_t __thiscall winISteamController_SteamController005_ShowAnalogActionOrigins(struct w_iface *_this, uint64_t controllerHandle, uint64_t analogActionHandle, float flScale, float flXPosition, float flYPosition) { struct ISteamController_SteamController005_ShowAnalogActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .analogActionHandle = analogActionHandle, .flScale = flScale, @@ -1069,11 +1069,11 @@ int8_t __thiscall winISteamController_SteamController005_ShowAnalogActionOrigins return params._ret; } -const char * __thiscall winISteamController_SteamController005_GetStringForActionOrigin(struct w_steam_iface *_this, uint32_t eOrigin) +const char * __thiscall winISteamController_SteamController005_GetStringForActionOrigin(struct w_iface *_this, uint32_t eOrigin) { struct ISteamController_SteamController005_GetStringForActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); @@ -1116,9 +1116,9 @@ __ASM_BLOCK_BEGIN(winISteamController_SteamController005_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamController_SteamController005(void *u_iface) +struct w_iface *create_winISteamController_SteamController005( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamController005"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamController005"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamController_SteamController005_vtable, 26, "SteamController005"); r->u_iface = u_iface; @@ -1157,43 +1157,43 @@ DEFINE_THISCALL_WRAPPER(winISteamController_SteamController006_GetStringForActio DEFINE_THISCALL_WRAPPER(winISteamController_SteamController006_GetGlyphForActionOrigin, 8) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController006_GetInputTypeForHandle, 12) -int8_t __thiscall winISteamController_SteamController006_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController006_Init(struct w_iface *_this) { struct ISteamController_SteamController006_Init_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController006_Init, ¶ms ); return params._ret; } -int8_t __thiscall winISteamController_SteamController006_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController006_Shutdown(struct w_iface *_this) { struct ISteamController_SteamController006_Shutdown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController006_Shutdown, ¶ms ); return params._ret; } -void __thiscall winISteamController_SteamController006_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamController_SteamController006_RunFrame(struct w_iface *_this) { struct ISteamController_SteamController006_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController006_RunFrame, ¶ms ); } -int32_t __thiscall winISteamController_SteamController006_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) +int32_t __thiscall winISteamController_SteamController006_GetConnectedControllers(struct w_iface *_this, uint64_t *handlesOut) { struct ISteamController_SteamController006_GetConnectedControllers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); @@ -1201,11 +1201,11 @@ int32_t __thiscall winISteamController_SteamController006_GetConnectedController return params._ret; } -int8_t __thiscall winISteamController_SteamController006_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) +int8_t __thiscall winISteamController_SteamController006_ShowBindingPanel(struct w_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController006_ShowBindingPanel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); @@ -1213,11 +1213,11 @@ int8_t __thiscall winISteamController_SteamController006_ShowBindingPanel(struct return params._ret; } -uint64_t __thiscall winISteamController_SteamController006_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) +uint64_t __thiscall winISteamController_SteamController006_GetActionSetHandle(struct w_iface *_this, const char *pszActionSetName) { struct ISteamController_SteamController006_GetActionSetHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); @@ -1226,11 +1226,11 @@ uint64_t __thiscall winISteamController_SteamController006_GetActionSetHandle(st return params._ret; } -void __thiscall winISteamController_SteamController006_ActivateActionSet(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle) +void __thiscall winISteamController_SteamController006_ActivateActionSet(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle) { struct ISteamController_SteamController006_ActivateActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, }; @@ -1238,11 +1238,11 @@ void __thiscall winISteamController_SteamController006_ActivateActionSet(struct STEAMCLIENT_CALL( ISteamController_SteamController006_ActivateActionSet, ¶ms ); } -uint64_t __thiscall winISteamController_SteamController006_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t controllerHandle) +uint64_t __thiscall winISteamController_SteamController006_GetCurrentActionSet(struct w_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController006_GetCurrentActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); @@ -1250,11 +1250,11 @@ uint64_t __thiscall winISteamController_SteamController006_GetCurrentActionSet(s return params._ret; } -void __thiscall winISteamController_SteamController006_ActivateActionSetLayer(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetLayerHandle) +void __thiscall winISteamController_SteamController006_ActivateActionSetLayer(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetLayerHandle) { struct ISteamController_SteamController006_ActivateActionSetLayer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetLayerHandle = actionSetLayerHandle, }; @@ -1262,11 +1262,11 @@ void __thiscall winISteamController_SteamController006_ActivateActionSetLayer(st STEAMCLIENT_CALL( ISteamController_SteamController006_ActivateActionSetLayer, ¶ms ); } -void __thiscall winISteamController_SteamController006_DeactivateActionSetLayer(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetLayerHandle) +void __thiscall winISteamController_SteamController006_DeactivateActionSetLayer(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetLayerHandle) { struct ISteamController_SteamController006_DeactivateActionSetLayer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetLayerHandle = actionSetLayerHandle, }; @@ -1274,22 +1274,22 @@ void __thiscall winISteamController_SteamController006_DeactivateActionSetLayer( STEAMCLIENT_CALL( ISteamController_SteamController006_DeactivateActionSetLayer, ¶ms ); } -void __thiscall winISteamController_SteamController006_DeactivateAllActionSetLayers(struct w_steam_iface *_this, uint64_t controllerHandle) +void __thiscall winISteamController_SteamController006_DeactivateAllActionSetLayers(struct w_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController006_DeactivateAllActionSetLayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController006_DeactivateAllActionSetLayers, ¶ms ); } -int32_t __thiscall winISteamController_SteamController006_GetActiveActionSetLayers(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t *handlesOut) +int32_t __thiscall winISteamController_SteamController006_GetActiveActionSetLayers(struct w_iface *_this, uint64_t controllerHandle, uint64_t *handlesOut) { struct ISteamController_SteamController006_GetActiveActionSetLayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .handlesOut = handlesOut, }; @@ -1298,11 +1298,11 @@ int32_t __thiscall winISteamController_SteamController006_GetActiveActionSetLaye return params._ret; } -uint64_t __thiscall winISteamController_SteamController006_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamController_SteamController006_GetDigitalActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamController_SteamController006_GetDigitalActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -1311,11 +1311,11 @@ uint64_t __thiscall winISteamController_SteamController006_GetDigitalActionHandl return params._ret; } -ControllerDigitalActionData_t * __thiscall winISteamController_SteamController006_GetDigitalActionData(struct w_steam_iface *_this, ControllerDigitalActionData_t *_ret, uint64_t controllerHandle, uint64_t digitalActionHandle) +ControllerDigitalActionData_t * __thiscall winISteamController_SteamController006_GetDigitalActionData(struct w_iface *_this, ControllerDigitalActionData_t *_ret, uint64_t controllerHandle, uint64_t digitalActionHandle) { struct ISteamController_SteamController006_GetDigitalActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, .digitalActionHandle = digitalActionHandle, @@ -1325,11 +1325,11 @@ ControllerDigitalActionData_t * __thiscall winISteamController_SteamController00 return params._ret; } -int32_t __thiscall winISteamController_SteamController006_GetDigitalActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamController_SteamController006_GetDigitalActionOrigins(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) { struct ISteamController_SteamController006_GetDigitalActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, .digitalActionHandle = digitalActionHandle, @@ -1340,11 +1340,11 @@ int32_t __thiscall winISteamController_SteamController006_GetDigitalActionOrigin return params._ret; } -uint64_t __thiscall winISteamController_SteamController006_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamController_SteamController006_GetAnalogActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamController_SteamController006_GetAnalogActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -1353,11 +1353,11 @@ uint64_t __thiscall winISteamController_SteamController006_GetAnalogActionHandle return params._ret; } -ControllerAnalogActionData_t * __thiscall winISteamController_SteamController006_GetAnalogActionData(struct w_steam_iface *_this, ControllerAnalogActionData_t *_ret, uint64_t controllerHandle, uint64_t analogActionHandle) +ControllerAnalogActionData_t * __thiscall winISteamController_SteamController006_GetAnalogActionData(struct w_iface *_this, ControllerAnalogActionData_t *_ret, uint64_t controllerHandle, uint64_t analogActionHandle) { struct ISteamController_SteamController006_GetAnalogActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, .analogActionHandle = analogActionHandle, @@ -1367,11 +1367,11 @@ ControllerAnalogActionData_t * __thiscall winISteamController_SteamController006 return params._ret; } -int32_t __thiscall winISteamController_SteamController006_GetAnalogActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamController_SteamController006_GetAnalogActionOrigins(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) { struct ISteamController_SteamController006_GetAnalogActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, .analogActionHandle = analogActionHandle, @@ -1382,11 +1382,11 @@ int32_t __thiscall winISteamController_SteamController006_GetAnalogActionOrigins return params._ret; } -void __thiscall winISteamController_SteamController006_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t eAction) +void __thiscall winISteamController_SteamController006_StopAnalogActionMomentum(struct w_iface *_this, uint64_t controllerHandle, uint64_t eAction) { struct ISteamController_SteamController006_StopAnalogActionMomentum_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eAction = eAction, }; @@ -1394,11 +1394,11 @@ void __thiscall winISteamController_SteamController006_StopAnalogActionMomentum( STEAMCLIENT_CALL( ISteamController_SteamController006_StopAnalogActionMomentum, ¶ms ); } -void __thiscall winISteamController_SteamController006_TriggerHapticPulse(struct w_steam_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) +void __thiscall winISteamController_SteamController006_TriggerHapticPulse(struct w_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) { struct ISteamController_SteamController006_TriggerHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -1407,11 +1407,11 @@ void __thiscall winISteamController_SteamController006_TriggerHapticPulse(struct STEAMCLIENT_CALL( ISteamController_SteamController006_TriggerHapticPulse, ¶ms ); } -void __thiscall winISteamController_SteamController006_TriggerRepeatedHapticPulse(struct w_steam_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) +void __thiscall winISteamController_SteamController006_TriggerRepeatedHapticPulse(struct w_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) { struct ISteamController_SteamController006_TriggerRepeatedHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -1423,11 +1423,11 @@ void __thiscall winISteamController_SteamController006_TriggerRepeatedHapticPuls STEAMCLIENT_CALL( ISteamController_SteamController006_TriggerRepeatedHapticPulse, ¶ms ); } -void __thiscall winISteamController_SteamController006_TriggerVibration(struct w_steam_iface *_this, uint64_t controllerHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) +void __thiscall winISteamController_SteamController006_TriggerVibration(struct w_iface *_this, uint64_t controllerHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) { struct ISteamController_SteamController006_TriggerVibration_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .usLeftSpeed = usLeftSpeed, .usRightSpeed = usRightSpeed, @@ -1436,11 +1436,11 @@ void __thiscall winISteamController_SteamController006_TriggerVibration(struct w STEAMCLIENT_CALL( ISteamController_SteamController006_TriggerVibration, ¶ms ); } -void __thiscall winISteamController_SteamController006_SetLEDColor(struct w_steam_iface *_this, uint64_t controllerHandle, uint8_t nColorR, uint8_t nColorG, uint8_t nColorB, uint32_t nFlags) +void __thiscall winISteamController_SteamController006_SetLEDColor(struct w_iface *_this, uint64_t controllerHandle, uint8_t nColorR, uint8_t nColorG, uint8_t nColorB, uint32_t nFlags) { struct ISteamController_SteamController006_SetLEDColor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .nColorR = nColorR, .nColorG = nColorG, @@ -1451,11 +1451,11 @@ void __thiscall winISteamController_SteamController006_SetLEDColor(struct w_stea STEAMCLIENT_CALL( ISteamController_SteamController006_SetLEDColor, ¶ms ); } -int32_t __thiscall winISteamController_SteamController006_GetGamepadIndexForController(struct w_steam_iface *_this, uint64_t ulControllerHandle) +int32_t __thiscall winISteamController_SteamController006_GetGamepadIndexForController(struct w_iface *_this, uint64_t ulControllerHandle) { struct ISteamController_SteamController006_GetGamepadIndexForController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulControllerHandle = ulControllerHandle, }; TRACE("%p\n", _this); @@ -1463,11 +1463,11 @@ int32_t __thiscall winISteamController_SteamController006_GetGamepadIndexForCont return params._ret; } -uint64_t __thiscall winISteamController_SteamController006_GetControllerForGamepadIndex(struct w_steam_iface *_this, int32_t nIndex) +uint64_t __thiscall winISteamController_SteamController006_GetControllerForGamepadIndex(struct w_iface *_this, int32_t nIndex) { struct ISteamController_SteamController006_GetControllerForGamepadIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nIndex = nIndex, }; TRACE("%p\n", _this); @@ -1475,11 +1475,11 @@ uint64_t __thiscall winISteamController_SteamController006_GetControllerForGamep return params._ret; } -ControllerMotionData_t * __thiscall winISteamController_SteamController006_GetMotionData(struct w_steam_iface *_this, ControllerMotionData_t *_ret, uint64_t controllerHandle) +ControllerMotionData_t * __thiscall winISteamController_SteamController006_GetMotionData(struct w_iface *_this, ControllerMotionData_t *_ret, uint64_t controllerHandle) { struct ISteamController_SteamController006_GetMotionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, }; @@ -1488,11 +1488,11 @@ ControllerMotionData_t * __thiscall winISteamController_SteamController006_GetMo return params._ret; } -int8_t __thiscall winISteamController_SteamController006_ShowDigitalActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t digitalActionHandle, float flScale, float flXPosition, float flYPosition) +int8_t __thiscall winISteamController_SteamController006_ShowDigitalActionOrigins(struct w_iface *_this, uint64_t controllerHandle, uint64_t digitalActionHandle, float flScale, float flXPosition, float flYPosition) { struct ISteamController_SteamController006_ShowDigitalActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .digitalActionHandle = digitalActionHandle, .flScale = flScale, @@ -1504,11 +1504,11 @@ int8_t __thiscall winISteamController_SteamController006_ShowDigitalActionOrigin return params._ret; } -int8_t __thiscall winISteamController_SteamController006_ShowAnalogActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t analogActionHandle, float flScale, float flXPosition, float flYPosition) +int8_t __thiscall winISteamController_SteamController006_ShowAnalogActionOrigins(struct w_iface *_this, uint64_t controllerHandle, uint64_t analogActionHandle, float flScale, float flXPosition, float flYPosition) { struct ISteamController_SteamController006_ShowAnalogActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .analogActionHandle = analogActionHandle, .flScale = flScale, @@ -1520,11 +1520,11 @@ int8_t __thiscall winISteamController_SteamController006_ShowAnalogActionOrigins return params._ret; } -const char * __thiscall winISteamController_SteamController006_GetStringForActionOrigin(struct w_steam_iface *_this, uint32_t eOrigin) +const char * __thiscall winISteamController_SteamController006_GetStringForActionOrigin(struct w_iface *_this, uint32_t eOrigin) { struct ISteamController_SteamController006_GetStringForActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); @@ -1532,11 +1532,11 @@ const char * __thiscall winISteamController_SteamController006_GetStringForActio return params._ret; } -uint32_t __thiscall winISteamController_SteamController006_GetInputTypeForHandle(struct w_steam_iface *_this, uint64_t controllerHandle) +uint32_t __thiscall winISteamController_SteamController006_GetInputTypeForHandle(struct w_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController006_GetInputTypeForHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); @@ -1584,9 +1584,9 @@ __ASM_BLOCK_BEGIN(winISteamController_SteamController006_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamController_SteamController006(void *u_iface) +struct w_iface *create_winISteamController_SteamController006( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamController006"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamController006"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamController_SteamController006_vtable, 31, "SteamController006"); r->u_iface = u_iface; @@ -1628,43 +1628,43 @@ DEFINE_THISCALL_WRAPPER(winISteamController_SteamController007_GetActionOriginFr DEFINE_THISCALL_WRAPPER(winISteamController_SteamController007_TranslateActionOrigin, 12) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController007_GetControllerBindingRevision, 20) -int8_t __thiscall winISteamController_SteamController007_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController007_Init(struct w_iface *_this) { struct ISteamController_SteamController007_Init_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController007_Init, ¶ms ); return params._ret; } -int8_t __thiscall winISteamController_SteamController007_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController007_Shutdown(struct w_iface *_this) { struct ISteamController_SteamController007_Shutdown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController007_Shutdown, ¶ms ); return params._ret; } -void __thiscall winISteamController_SteamController007_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamController_SteamController007_RunFrame(struct w_iface *_this) { struct ISteamController_SteamController007_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController007_RunFrame, ¶ms ); } -int32_t __thiscall winISteamController_SteamController007_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) +int32_t __thiscall winISteamController_SteamController007_GetConnectedControllers(struct w_iface *_this, uint64_t *handlesOut) { struct ISteamController_SteamController007_GetConnectedControllers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); @@ -1672,11 +1672,11 @@ int32_t __thiscall winISteamController_SteamController007_GetConnectedController return params._ret; } -uint64_t __thiscall winISteamController_SteamController007_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) +uint64_t __thiscall winISteamController_SteamController007_GetActionSetHandle(struct w_iface *_this, const char *pszActionSetName) { struct ISteamController_SteamController007_GetActionSetHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); @@ -1685,11 +1685,11 @@ uint64_t __thiscall winISteamController_SteamController007_GetActionSetHandle(st return params._ret; } -void __thiscall winISteamController_SteamController007_ActivateActionSet(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle) +void __thiscall winISteamController_SteamController007_ActivateActionSet(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle) { struct ISteamController_SteamController007_ActivateActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, }; @@ -1697,11 +1697,11 @@ void __thiscall winISteamController_SteamController007_ActivateActionSet(struct STEAMCLIENT_CALL( ISteamController_SteamController007_ActivateActionSet, ¶ms ); } -uint64_t __thiscall winISteamController_SteamController007_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t controllerHandle) +uint64_t __thiscall winISteamController_SteamController007_GetCurrentActionSet(struct w_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController007_GetCurrentActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); @@ -1709,11 +1709,11 @@ uint64_t __thiscall winISteamController_SteamController007_GetCurrentActionSet(s return params._ret; } -void __thiscall winISteamController_SteamController007_ActivateActionSetLayer(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetLayerHandle) +void __thiscall winISteamController_SteamController007_ActivateActionSetLayer(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetLayerHandle) { struct ISteamController_SteamController007_ActivateActionSetLayer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetLayerHandle = actionSetLayerHandle, }; @@ -1721,11 +1721,11 @@ void __thiscall winISteamController_SteamController007_ActivateActionSetLayer(st STEAMCLIENT_CALL( ISteamController_SteamController007_ActivateActionSetLayer, ¶ms ); } -void __thiscall winISteamController_SteamController007_DeactivateActionSetLayer(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetLayerHandle) +void __thiscall winISteamController_SteamController007_DeactivateActionSetLayer(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetLayerHandle) { struct ISteamController_SteamController007_DeactivateActionSetLayer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetLayerHandle = actionSetLayerHandle, }; @@ -1733,22 +1733,22 @@ void __thiscall winISteamController_SteamController007_DeactivateActionSetLayer( STEAMCLIENT_CALL( ISteamController_SteamController007_DeactivateActionSetLayer, ¶ms ); } -void __thiscall winISteamController_SteamController007_DeactivateAllActionSetLayers(struct w_steam_iface *_this, uint64_t controllerHandle) +void __thiscall winISteamController_SteamController007_DeactivateAllActionSetLayers(struct w_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController007_DeactivateAllActionSetLayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController007_DeactivateAllActionSetLayers, ¶ms ); } -int32_t __thiscall winISteamController_SteamController007_GetActiveActionSetLayers(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t *handlesOut) +int32_t __thiscall winISteamController_SteamController007_GetActiveActionSetLayers(struct w_iface *_this, uint64_t controllerHandle, uint64_t *handlesOut) { struct ISteamController_SteamController007_GetActiveActionSetLayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .handlesOut = handlesOut, }; @@ -1757,11 +1757,11 @@ int32_t __thiscall winISteamController_SteamController007_GetActiveActionSetLaye return params._ret; } -uint64_t __thiscall winISteamController_SteamController007_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamController_SteamController007_GetDigitalActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamController_SteamController007_GetDigitalActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -1770,11 +1770,11 @@ uint64_t __thiscall winISteamController_SteamController007_GetDigitalActionHandl return params._ret; } -InputDigitalActionData_t * __thiscall winISteamController_SteamController007_GetDigitalActionData(struct w_steam_iface *_this, InputDigitalActionData_t *_ret, uint64_t controllerHandle, uint64_t digitalActionHandle) +InputDigitalActionData_t * __thiscall winISteamController_SteamController007_GetDigitalActionData(struct w_iface *_this, InputDigitalActionData_t *_ret, uint64_t controllerHandle, uint64_t digitalActionHandle) { struct ISteamController_SteamController007_GetDigitalActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, .digitalActionHandle = digitalActionHandle, @@ -1784,11 +1784,11 @@ InputDigitalActionData_t * __thiscall winISteamController_SteamController007_Get return params._ret; } -int32_t __thiscall winISteamController_SteamController007_GetDigitalActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamController_SteamController007_GetDigitalActionOrigins(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) { struct ISteamController_SteamController007_GetDigitalActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, .digitalActionHandle = digitalActionHandle, @@ -1799,11 +1799,11 @@ int32_t __thiscall winISteamController_SteamController007_GetDigitalActionOrigin return params._ret; } -uint64_t __thiscall winISteamController_SteamController007_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamController_SteamController007_GetAnalogActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamController_SteamController007_GetAnalogActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -1812,11 +1812,11 @@ uint64_t __thiscall winISteamController_SteamController007_GetAnalogActionHandle return params._ret; } -InputAnalogActionData_t * __thiscall winISteamController_SteamController007_GetAnalogActionData(struct w_steam_iface *_this, InputAnalogActionData_t *_ret, uint64_t controllerHandle, uint64_t analogActionHandle) +InputAnalogActionData_t * __thiscall winISteamController_SteamController007_GetAnalogActionData(struct w_iface *_this, InputAnalogActionData_t *_ret, uint64_t controllerHandle, uint64_t analogActionHandle) { struct ISteamController_SteamController007_GetAnalogActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, .analogActionHandle = analogActionHandle, @@ -1826,11 +1826,11 @@ InputAnalogActionData_t * __thiscall winISteamController_SteamController007_GetA return params._ret; } -int32_t __thiscall winISteamController_SteamController007_GetAnalogActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamController_SteamController007_GetAnalogActionOrigins(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) { struct ISteamController_SteamController007_GetAnalogActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, .analogActionHandle = analogActionHandle, @@ -1841,11 +1841,11 @@ int32_t __thiscall winISteamController_SteamController007_GetAnalogActionOrigins return params._ret; } -const char * __thiscall winISteamController_SteamController007_GetStringForActionOrigin(struct w_steam_iface *_this, uint32_t eOrigin) +const char * __thiscall winISteamController_SteamController007_GetStringForActionOrigin(struct w_iface *_this, uint32_t eOrigin) { struct ISteamController_SteamController007_GetStringForActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); @@ -1853,11 +1853,11 @@ const char * __thiscall winISteamController_SteamController007_GetStringForActio return params._ret; } -void __thiscall winISteamController_SteamController007_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t eAction) +void __thiscall winISteamController_SteamController007_StopAnalogActionMomentum(struct w_iface *_this, uint64_t controllerHandle, uint64_t eAction) { struct ISteamController_SteamController007_StopAnalogActionMomentum_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eAction = eAction, }; @@ -1865,11 +1865,11 @@ void __thiscall winISteamController_SteamController007_StopAnalogActionMomentum( STEAMCLIENT_CALL( ISteamController_SteamController007_StopAnalogActionMomentum, ¶ms ); } -InputMotionData_t * __thiscall winISteamController_SteamController007_GetMotionData(struct w_steam_iface *_this, InputMotionData_t *_ret, uint64_t controllerHandle) +InputMotionData_t * __thiscall winISteamController_SteamController007_GetMotionData(struct w_iface *_this, InputMotionData_t *_ret, uint64_t controllerHandle) { struct ISteamController_SteamController007_GetMotionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, }; @@ -1878,11 +1878,11 @@ InputMotionData_t * __thiscall winISteamController_SteamController007_GetMotionD return params._ret; } -void __thiscall winISteamController_SteamController007_TriggerHapticPulse(struct w_steam_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) +void __thiscall winISteamController_SteamController007_TriggerHapticPulse(struct w_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) { struct ISteamController_SteamController007_TriggerHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -1891,11 +1891,11 @@ void __thiscall winISteamController_SteamController007_TriggerHapticPulse(struct STEAMCLIENT_CALL( ISteamController_SteamController007_TriggerHapticPulse, ¶ms ); } -void __thiscall winISteamController_SteamController007_TriggerRepeatedHapticPulse(struct w_steam_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) +void __thiscall winISteamController_SteamController007_TriggerRepeatedHapticPulse(struct w_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) { struct ISteamController_SteamController007_TriggerRepeatedHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -1907,11 +1907,11 @@ void __thiscall winISteamController_SteamController007_TriggerRepeatedHapticPuls STEAMCLIENT_CALL( ISteamController_SteamController007_TriggerRepeatedHapticPulse, ¶ms ); } -void __thiscall winISteamController_SteamController007_TriggerVibration(struct w_steam_iface *_this, uint64_t controllerHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) +void __thiscall winISteamController_SteamController007_TriggerVibration(struct w_iface *_this, uint64_t controllerHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) { struct ISteamController_SteamController007_TriggerVibration_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .usLeftSpeed = usLeftSpeed, .usRightSpeed = usRightSpeed, @@ -1920,11 +1920,11 @@ void __thiscall winISteamController_SteamController007_TriggerVibration(struct w STEAMCLIENT_CALL( ISteamController_SteamController007_TriggerVibration, ¶ms ); } -void __thiscall winISteamController_SteamController007_SetLEDColor(struct w_steam_iface *_this, uint64_t controllerHandle, uint8_t nColorR, uint8_t nColorG, uint8_t nColorB, uint32_t nFlags) +void __thiscall winISteamController_SteamController007_SetLEDColor(struct w_iface *_this, uint64_t controllerHandle, uint8_t nColorR, uint8_t nColorG, uint8_t nColorB, uint32_t nFlags) { struct ISteamController_SteamController007_SetLEDColor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .nColorR = nColorR, .nColorG = nColorG, @@ -1935,11 +1935,11 @@ void __thiscall winISteamController_SteamController007_SetLEDColor(struct w_stea STEAMCLIENT_CALL( ISteamController_SteamController007_SetLEDColor, ¶ms ); } -int8_t __thiscall winISteamController_SteamController007_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) +int8_t __thiscall winISteamController_SteamController007_ShowBindingPanel(struct w_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController007_ShowBindingPanel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); @@ -1947,11 +1947,11 @@ int8_t __thiscall winISteamController_SteamController007_ShowBindingPanel(struct return params._ret; } -uint32_t __thiscall winISteamController_SteamController007_GetInputTypeForHandle(struct w_steam_iface *_this, uint64_t controllerHandle) +uint32_t __thiscall winISteamController_SteamController007_GetInputTypeForHandle(struct w_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController007_GetInputTypeForHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); @@ -1959,11 +1959,11 @@ uint32_t __thiscall winISteamController_SteamController007_GetInputTypeForHandle return params._ret; } -uint64_t __thiscall winISteamController_SteamController007_GetControllerForGamepadIndex(struct w_steam_iface *_this, int32_t nIndex) +uint64_t __thiscall winISteamController_SteamController007_GetControllerForGamepadIndex(struct w_iface *_this, int32_t nIndex) { struct ISteamController_SteamController007_GetControllerForGamepadIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nIndex = nIndex, }; TRACE("%p\n", _this); @@ -1971,11 +1971,11 @@ uint64_t __thiscall winISteamController_SteamController007_GetControllerForGamep return params._ret; } -int32_t __thiscall winISteamController_SteamController007_GetGamepadIndexForController(struct w_steam_iface *_this, uint64_t ulControllerHandle) +int32_t __thiscall winISteamController_SteamController007_GetGamepadIndexForController(struct w_iface *_this, uint64_t ulControllerHandle) { struct ISteamController_SteamController007_GetGamepadIndexForController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulControllerHandle = ulControllerHandle, }; TRACE("%p\n", _this); @@ -1983,11 +1983,11 @@ int32_t __thiscall winISteamController_SteamController007_GetGamepadIndexForCont return params._ret; } -const char * __thiscall winISteamController_SteamController007_GetStringForXboxOrigin(struct w_steam_iface *_this, uint32_t eOrigin) +const char * __thiscall winISteamController_SteamController007_GetStringForXboxOrigin(struct w_iface *_this, uint32_t eOrigin) { struct ISteamController_SteamController007_GetStringForXboxOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); @@ -1995,11 +1995,11 @@ const char * __thiscall winISteamController_SteamController007_GetStringForXboxO return params._ret; } -uint32_t __thiscall winISteamController_SteamController007_GetActionOriginFromXboxOrigin(struct w_steam_iface *_this, uint64_t controllerHandle, uint32_t eOrigin) +uint32_t __thiscall winISteamController_SteamController007_GetActionOriginFromXboxOrigin(struct w_iface *_this, uint64_t controllerHandle, uint32_t eOrigin) { struct ISteamController_SteamController007_GetActionOriginFromXboxOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eOrigin = eOrigin, }; @@ -2008,11 +2008,11 @@ uint32_t __thiscall winISteamController_SteamController007_GetActionOriginFromXb return params._ret; } -uint32_t __thiscall winISteamController_SteamController007_TranslateActionOrigin(struct w_steam_iface *_this, uint32_t eDestinationInputType, uint32_t eSourceOrigin) +uint32_t __thiscall winISteamController_SteamController007_TranslateActionOrigin(struct w_iface *_this, uint32_t eDestinationInputType, uint32_t eSourceOrigin) { struct ISteamController_SteamController007_TranslateActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eDestinationInputType = eDestinationInputType, .eSourceOrigin = eSourceOrigin, }; @@ -2021,11 +2021,11 @@ uint32_t __thiscall winISteamController_SteamController007_TranslateActionOrigin return params._ret; } -int8_t __thiscall winISteamController_SteamController007_GetControllerBindingRevision(struct w_steam_iface *_this, uint64_t controllerHandle, int32_t *pMajor, int32_t *pMinor) +int8_t __thiscall winISteamController_SteamController007_GetControllerBindingRevision(struct w_iface *_this, uint64_t controllerHandle, int32_t *pMajor, int32_t *pMinor) { struct ISteamController_SteamController007_GetControllerBindingRevision_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .pMajor = pMajor, .pMinor = pMinor, @@ -2078,9 +2078,9 @@ __ASM_BLOCK_BEGIN(winISteamController_SteamController007_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamController_SteamController007(void *u_iface) +struct w_iface *create_winISteamController_SteamController007( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamController007"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamController007"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamController_SteamController007_vtable, 34, "SteamController007"); r->u_iface = u_iface; @@ -2122,43 +2122,43 @@ DEFINE_THISCALL_WRAPPER(winISteamController_SteamController008_GetActionOriginFr DEFINE_THISCALL_WRAPPER(winISteamController_SteamController008_TranslateActionOrigin, 12) DEFINE_THISCALL_WRAPPER(winISteamController_SteamController008_GetControllerBindingRevision, 20) -int8_t __thiscall winISteamController_SteamController008_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController008_Init(struct w_iface *_this) { struct ISteamController_SteamController008_Init_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController008_Init, ¶ms ); return params._ret; } -int8_t __thiscall winISteamController_SteamController008_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamController_SteamController008_Shutdown(struct w_iface *_this) { struct ISteamController_SteamController008_Shutdown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController008_Shutdown, ¶ms ); return params._ret; } -void __thiscall winISteamController_SteamController008_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamController_SteamController008_RunFrame(struct w_iface *_this) { struct ISteamController_SteamController008_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController008_RunFrame, ¶ms ); } -int32_t __thiscall winISteamController_SteamController008_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) +int32_t __thiscall winISteamController_SteamController008_GetConnectedControllers(struct w_iface *_this, uint64_t *handlesOut) { struct ISteamController_SteamController008_GetConnectedControllers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); @@ -2166,11 +2166,11 @@ int32_t __thiscall winISteamController_SteamController008_GetConnectedController return params._ret; } -uint64_t __thiscall winISteamController_SteamController008_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) +uint64_t __thiscall winISteamController_SteamController008_GetActionSetHandle(struct w_iface *_this, const char *pszActionSetName) { struct ISteamController_SteamController008_GetActionSetHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); @@ -2179,11 +2179,11 @@ uint64_t __thiscall winISteamController_SteamController008_GetActionSetHandle(st return params._ret; } -void __thiscall winISteamController_SteamController008_ActivateActionSet(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle) +void __thiscall winISteamController_SteamController008_ActivateActionSet(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle) { struct ISteamController_SteamController008_ActivateActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, }; @@ -2191,11 +2191,11 @@ void __thiscall winISteamController_SteamController008_ActivateActionSet(struct STEAMCLIENT_CALL( ISteamController_SteamController008_ActivateActionSet, ¶ms ); } -uint64_t __thiscall winISteamController_SteamController008_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t controllerHandle) +uint64_t __thiscall winISteamController_SteamController008_GetCurrentActionSet(struct w_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController008_GetCurrentActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); @@ -2203,11 +2203,11 @@ uint64_t __thiscall winISteamController_SteamController008_GetCurrentActionSet(s return params._ret; } -void __thiscall winISteamController_SteamController008_ActivateActionSetLayer(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetLayerHandle) +void __thiscall winISteamController_SteamController008_ActivateActionSetLayer(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetLayerHandle) { struct ISteamController_SteamController008_ActivateActionSetLayer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetLayerHandle = actionSetLayerHandle, }; @@ -2215,11 +2215,11 @@ void __thiscall winISteamController_SteamController008_ActivateActionSetLayer(st STEAMCLIENT_CALL( ISteamController_SteamController008_ActivateActionSetLayer, ¶ms ); } -void __thiscall winISteamController_SteamController008_DeactivateActionSetLayer(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetLayerHandle) +void __thiscall winISteamController_SteamController008_DeactivateActionSetLayer(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetLayerHandle) { struct ISteamController_SteamController008_DeactivateActionSetLayer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetLayerHandle = actionSetLayerHandle, }; @@ -2227,22 +2227,22 @@ void __thiscall winISteamController_SteamController008_DeactivateActionSetLayer( STEAMCLIENT_CALL( ISteamController_SteamController008_DeactivateActionSetLayer, ¶ms ); } -void __thiscall winISteamController_SteamController008_DeactivateAllActionSetLayers(struct w_steam_iface *_this, uint64_t controllerHandle) +void __thiscall winISteamController_SteamController008_DeactivateAllActionSetLayers(struct w_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController008_DeactivateAllActionSetLayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamController_SteamController008_DeactivateAllActionSetLayers, ¶ms ); } -int32_t __thiscall winISteamController_SteamController008_GetActiveActionSetLayers(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t *handlesOut) +int32_t __thiscall winISteamController_SteamController008_GetActiveActionSetLayers(struct w_iface *_this, uint64_t controllerHandle, uint64_t *handlesOut) { struct ISteamController_SteamController008_GetActiveActionSetLayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .handlesOut = handlesOut, }; @@ -2251,11 +2251,11 @@ int32_t __thiscall winISteamController_SteamController008_GetActiveActionSetLaye return params._ret; } -uint64_t __thiscall winISteamController_SteamController008_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamController_SteamController008_GetDigitalActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamController_SteamController008_GetDigitalActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -2264,11 +2264,11 @@ uint64_t __thiscall winISteamController_SteamController008_GetDigitalActionHandl return params._ret; } -InputDigitalActionData_t * __thiscall winISteamController_SteamController008_GetDigitalActionData(struct w_steam_iface *_this, InputDigitalActionData_t *_ret, uint64_t controllerHandle, uint64_t digitalActionHandle) +InputDigitalActionData_t * __thiscall winISteamController_SteamController008_GetDigitalActionData(struct w_iface *_this, InputDigitalActionData_t *_ret, uint64_t controllerHandle, uint64_t digitalActionHandle) { struct ISteamController_SteamController008_GetDigitalActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, .digitalActionHandle = digitalActionHandle, @@ -2278,11 +2278,11 @@ InputDigitalActionData_t * __thiscall winISteamController_SteamController008_Get return params._ret; } -int32_t __thiscall winISteamController_SteamController008_GetDigitalActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamController_SteamController008_GetDigitalActionOrigins(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) { struct ISteamController_SteamController008_GetDigitalActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, .digitalActionHandle = digitalActionHandle, @@ -2293,11 +2293,11 @@ int32_t __thiscall winISteamController_SteamController008_GetDigitalActionOrigin return params._ret; } -uint64_t __thiscall winISteamController_SteamController008_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamController_SteamController008_GetAnalogActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamController_SteamController008_GetAnalogActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -2306,11 +2306,11 @@ uint64_t __thiscall winISteamController_SteamController008_GetAnalogActionHandle return params._ret; } -InputAnalogActionData_t * __thiscall winISteamController_SteamController008_GetAnalogActionData(struct w_steam_iface *_this, InputAnalogActionData_t *_ret, uint64_t controllerHandle, uint64_t analogActionHandle) +InputAnalogActionData_t * __thiscall winISteamController_SteamController008_GetAnalogActionData(struct w_iface *_this, InputAnalogActionData_t *_ret, uint64_t controllerHandle, uint64_t analogActionHandle) { struct ISteamController_SteamController008_GetAnalogActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, .analogActionHandle = analogActionHandle, @@ -2320,11 +2320,11 @@ InputAnalogActionData_t * __thiscall winISteamController_SteamController008_GetA return params._ret; } -int32_t __thiscall winISteamController_SteamController008_GetAnalogActionOrigins(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamController_SteamController008_GetAnalogActionOrigins(struct w_iface *_this, uint64_t controllerHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) { struct ISteamController_SteamController008_GetAnalogActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .actionSetHandle = actionSetHandle, .analogActionHandle = analogActionHandle, @@ -2335,11 +2335,11 @@ int32_t __thiscall winISteamController_SteamController008_GetAnalogActionOrigins return params._ret; } -const char * __thiscall winISteamController_SteamController008_GetStringForActionOrigin(struct w_steam_iface *_this, uint32_t eOrigin) +const char * __thiscall winISteamController_SteamController008_GetStringForActionOrigin(struct w_iface *_this, uint32_t eOrigin) { struct ISteamController_SteamController008_GetStringForActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); @@ -2347,11 +2347,11 @@ const char * __thiscall winISteamController_SteamController008_GetStringForActio return params._ret; } -void __thiscall winISteamController_SteamController008_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t controllerHandle, uint64_t eAction) +void __thiscall winISteamController_SteamController008_StopAnalogActionMomentum(struct w_iface *_this, uint64_t controllerHandle, uint64_t eAction) { struct ISteamController_SteamController008_StopAnalogActionMomentum_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eAction = eAction, }; @@ -2359,11 +2359,11 @@ void __thiscall winISteamController_SteamController008_StopAnalogActionMomentum( STEAMCLIENT_CALL( ISteamController_SteamController008_StopAnalogActionMomentum, ¶ms ); } -InputMotionData_t * __thiscall winISteamController_SteamController008_GetMotionData(struct w_steam_iface *_this, InputMotionData_t *_ret, uint64_t controllerHandle) +InputMotionData_t * __thiscall winISteamController_SteamController008_GetMotionData(struct w_iface *_this, InputMotionData_t *_ret, uint64_t controllerHandle) { struct ISteamController_SteamController008_GetMotionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .controllerHandle = controllerHandle, }; @@ -2372,11 +2372,11 @@ InputMotionData_t * __thiscall winISteamController_SteamController008_GetMotionD return params._ret; } -void __thiscall winISteamController_SteamController008_TriggerHapticPulse(struct w_steam_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) +void __thiscall winISteamController_SteamController008_TriggerHapticPulse(struct w_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) { struct ISteamController_SteamController008_TriggerHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -2385,11 +2385,11 @@ void __thiscall winISteamController_SteamController008_TriggerHapticPulse(struct STEAMCLIENT_CALL( ISteamController_SteamController008_TriggerHapticPulse, ¶ms ); } -void __thiscall winISteamController_SteamController008_TriggerRepeatedHapticPulse(struct w_steam_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) +void __thiscall winISteamController_SteamController008_TriggerRepeatedHapticPulse(struct w_iface *_this, uint64_t controllerHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) { struct ISteamController_SteamController008_TriggerRepeatedHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -2401,11 +2401,11 @@ void __thiscall winISteamController_SteamController008_TriggerRepeatedHapticPuls STEAMCLIENT_CALL( ISteamController_SteamController008_TriggerRepeatedHapticPulse, ¶ms ); } -void __thiscall winISteamController_SteamController008_TriggerVibration(struct w_steam_iface *_this, uint64_t controllerHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) +void __thiscall winISteamController_SteamController008_TriggerVibration(struct w_iface *_this, uint64_t controllerHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) { struct ISteamController_SteamController008_TriggerVibration_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .usLeftSpeed = usLeftSpeed, .usRightSpeed = usRightSpeed, @@ -2414,11 +2414,11 @@ void __thiscall winISteamController_SteamController008_TriggerVibration(struct w STEAMCLIENT_CALL( ISteamController_SteamController008_TriggerVibration, ¶ms ); } -void __thiscall winISteamController_SteamController008_SetLEDColor(struct w_steam_iface *_this, uint64_t controllerHandle, uint8_t nColorR, uint8_t nColorG, uint8_t nColorB, uint32_t nFlags) +void __thiscall winISteamController_SteamController008_SetLEDColor(struct w_iface *_this, uint64_t controllerHandle, uint8_t nColorR, uint8_t nColorG, uint8_t nColorB, uint32_t nFlags) { struct ISteamController_SteamController008_SetLEDColor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .nColorR = nColorR, .nColorG = nColorG, @@ -2429,11 +2429,11 @@ void __thiscall winISteamController_SteamController008_SetLEDColor(struct w_stea STEAMCLIENT_CALL( ISteamController_SteamController008_SetLEDColor, ¶ms ); } -int8_t __thiscall winISteamController_SteamController008_ShowBindingPanel(struct w_steam_iface *_this, uint64_t controllerHandle) +int8_t __thiscall winISteamController_SteamController008_ShowBindingPanel(struct w_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController008_ShowBindingPanel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); @@ -2441,11 +2441,11 @@ int8_t __thiscall winISteamController_SteamController008_ShowBindingPanel(struct return params._ret; } -uint32_t __thiscall winISteamController_SteamController008_GetInputTypeForHandle(struct w_steam_iface *_this, uint64_t controllerHandle) +uint32_t __thiscall winISteamController_SteamController008_GetInputTypeForHandle(struct w_iface *_this, uint64_t controllerHandle) { struct ISteamController_SteamController008_GetInputTypeForHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, }; TRACE("%p\n", _this); @@ -2453,11 +2453,11 @@ uint32_t __thiscall winISteamController_SteamController008_GetInputTypeForHandle return params._ret; } -uint64_t __thiscall winISteamController_SteamController008_GetControllerForGamepadIndex(struct w_steam_iface *_this, int32_t nIndex) +uint64_t __thiscall winISteamController_SteamController008_GetControllerForGamepadIndex(struct w_iface *_this, int32_t nIndex) { struct ISteamController_SteamController008_GetControllerForGamepadIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nIndex = nIndex, }; TRACE("%p\n", _this); @@ -2465,11 +2465,11 @@ uint64_t __thiscall winISteamController_SteamController008_GetControllerForGamep return params._ret; } -int32_t __thiscall winISteamController_SteamController008_GetGamepadIndexForController(struct w_steam_iface *_this, uint64_t ulControllerHandle) +int32_t __thiscall winISteamController_SteamController008_GetGamepadIndexForController(struct w_iface *_this, uint64_t ulControllerHandle) { struct ISteamController_SteamController008_GetGamepadIndexForController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulControllerHandle = ulControllerHandle, }; TRACE("%p\n", _this); @@ -2477,11 +2477,11 @@ int32_t __thiscall winISteamController_SteamController008_GetGamepadIndexForCont return params._ret; } -const char * __thiscall winISteamController_SteamController008_GetStringForXboxOrigin(struct w_steam_iface *_this, uint32_t eOrigin) +const char * __thiscall winISteamController_SteamController008_GetStringForXboxOrigin(struct w_iface *_this, uint32_t eOrigin) { struct ISteamController_SteamController008_GetStringForXboxOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); @@ -2489,11 +2489,11 @@ const char * __thiscall winISteamController_SteamController008_GetStringForXboxO return params._ret; } -uint32_t __thiscall winISteamController_SteamController008_GetActionOriginFromXboxOrigin(struct w_steam_iface *_this, uint64_t controllerHandle, uint32_t eOrigin) +uint32_t __thiscall winISteamController_SteamController008_GetActionOriginFromXboxOrigin(struct w_iface *_this, uint64_t controllerHandle, uint32_t eOrigin) { struct ISteamController_SteamController008_GetActionOriginFromXboxOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .eOrigin = eOrigin, }; @@ -2502,11 +2502,11 @@ uint32_t __thiscall winISteamController_SteamController008_GetActionOriginFromXb return params._ret; } -uint32_t __thiscall winISteamController_SteamController008_TranslateActionOrigin(struct w_steam_iface *_this, uint32_t eDestinationInputType, uint32_t eSourceOrigin) +uint32_t __thiscall winISteamController_SteamController008_TranslateActionOrigin(struct w_iface *_this, uint32_t eDestinationInputType, uint32_t eSourceOrigin) { struct ISteamController_SteamController008_TranslateActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eDestinationInputType = eDestinationInputType, .eSourceOrigin = eSourceOrigin, }; @@ -2515,11 +2515,11 @@ uint32_t __thiscall winISteamController_SteamController008_TranslateActionOrigin return params._ret; } -int8_t __thiscall winISteamController_SteamController008_GetControllerBindingRevision(struct w_steam_iface *_this, uint64_t controllerHandle, int32_t *pMajor, int32_t *pMinor) +int8_t __thiscall winISteamController_SteamController008_GetControllerBindingRevision(struct w_iface *_this, uint64_t controllerHandle, int32_t *pMajor, int32_t *pMinor) { struct ISteamController_SteamController008_GetControllerBindingRevision_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .controllerHandle = controllerHandle, .pMajor = pMajor, .pMinor = pMinor, @@ -2572,9 +2572,9 @@ __ASM_BLOCK_BEGIN(winISteamController_SteamController008_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamController_SteamController008(void *u_iface) +struct w_iface *create_winISteamController_SteamController008( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamController008"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamController008"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamController_SteamController008_vtable, 34, "SteamController008"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamFriends.c b/lsteamclient/winISteamFriends.c index fb70ca1c..945d3ce6 100644 --- a/lsteamclient/winISteamFriends.c +++ b/lsteamclient/winISteamFriends.c @@ -31,22 +31,22 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends001_GetBlockedFriendCount, DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends001_GetFriendGamePlayed, 24) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends001_GetFriendGamePlayed2, 28) -const char * __thiscall winISteamFriends_SteamFriends001_GetPersonaName(struct w_steam_iface *_this) +const char * __thiscall winISteamFriends_SteamFriends001_GetPersonaName(struct w_iface *_this) { struct ISteamFriends_SteamFriends001_GetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_GetPersonaName, ¶ms ); return params._ret; } -void __thiscall winISteamFriends_SteamFriends001_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) +void __thiscall winISteamFriends_SteamFriends001_SetPersonaName(struct w_iface *_this, const char *pchPersonaName) { struct ISteamFriends_SteamFriends001_SetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); @@ -54,33 +54,33 @@ void __thiscall winISteamFriends_SteamFriends001_SetPersonaName(struct w_steam_i STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_SetPersonaName, ¶ms ); } -uint32_t __thiscall winISteamFriends_SteamFriends001_GetPersonaState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends001_GetPersonaState(struct w_iface *_this) { struct ISteamFriends_SteamFriends001_GetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_GetPersonaState, ¶ms ); return params._ret; } -void __thiscall winISteamFriends_SteamFriends001_SetPersonaState(struct w_steam_iface *_this, uint32_t ePersonaState) +void __thiscall winISteamFriends_SteamFriends001_SetPersonaState(struct w_iface *_this, uint32_t ePersonaState) { struct ISteamFriends_SteamFriends001_SetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ePersonaState = ePersonaState, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_SetPersonaState, ¶ms ); } -int8_t __thiscall winISteamFriends_SteamFriends001_AddFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) +int8_t __thiscall winISteamFriends_SteamFriends001_AddFriend(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends001_AddFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -88,11 +88,11 @@ int8_t __thiscall winISteamFriends_SteamFriends001_AddFriend(struct w_steam_ifac return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends001_RemoveFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) +int8_t __thiscall winISteamFriends_SteamFriends001_RemoveFriend(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends001_RemoveFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -100,11 +100,11 @@ int8_t __thiscall winISteamFriends_SteamFriends001_RemoveFriend(struct w_steam_i return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends001_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) +int8_t __thiscall winISteamFriends_SteamFriends001_HasFriend(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends001_HasFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -112,11 +112,11 @@ int8_t __thiscall winISteamFriends_SteamFriends001_HasFriend(struct w_steam_ifac return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends001_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends001_GetFriendRelationship(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends001_GetFriendRelationship_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -124,11 +124,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends001_GetFriendRelationship(struc return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends001_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends001_GetFriendPersonaState(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends001_GetFriendPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -136,11 +136,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends001_GetFriendPersonaState(struc return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t *pnGameID, uint32_t *punGameIP, uint16_t *pusGamePort) +int8_t __thiscall winISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, int32_t *pnGameID, uint32_t *punGameIP, uint16_t *pusGamePort) { struct ISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pnGameID = pnGameID, .punGameIP = punGameIP, @@ -151,11 +151,11 @@ int8_t __thiscall winISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlaye return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends001_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) +const char * __thiscall winISteamFriends_SteamFriends001_GetFriendPersonaName(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends001_GetFriendPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -163,11 +163,11 @@ const char * __thiscall winISteamFriends_SteamFriends001_GetFriendPersonaName(st return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends001_AddFriendByName(struct w_steam_iface *_this, const char *pchEmailOrAccountName) +int32_t __thiscall winISteamFriends_SteamFriends001_AddFriendByName(struct w_iface *_this, const char *pchEmailOrAccountName) { struct ISteamFriends_SteamFriends001_AddFriendByName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchEmailOrAccountName = pchEmailOrAccountName, }; TRACE("%p\n", _this); @@ -176,22 +176,22 @@ int32_t __thiscall winISteamFriends_SteamFriends001_AddFriendByName(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends001_GetFriendCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends001_GetFriendCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends001_GetFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_GetFriendCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends001_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends001_GetFriendByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iFriend) { struct ISteamFriends_SteamFriends001_GetFriendByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iFriend = iFriend, }; @@ -200,11 +200,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends001_GetFriendByIndex(struct w return params._ret; } -void __thiscall winISteamFriends_SteamFriends001_SendMsgToFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, uint32_t eChatEntryType, const char *pchMsgBody) +void __thiscall winISteamFriends_SteamFriends001_SendMsgToFriend(struct w_iface *_this, CSteamID steamIDFriend, uint32_t eChatEntryType, const char *pchMsgBody) { struct ISteamFriends_SteamFriends001_SendMsgToFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .eChatEntryType = eChatEntryType, .pchMsgBody = pchMsgBody, @@ -214,11 +214,11 @@ void __thiscall winISteamFriends_SteamFriends001_SendMsgToFriend(struct w_steam_ STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_SendMsgToFriend, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends001_SetFriendRegValue(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey, const char *pchValue) +void __thiscall winISteamFriends_SteamFriends001_SetFriendRegValue(struct w_iface *_this, CSteamID steamIDFriend, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends001_SetFriendRegValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, .pchValue = pchValue, @@ -229,11 +229,11 @@ void __thiscall winISteamFriends_SteamFriends001_SetFriendRegValue(struct w_stea STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_SetFriendRegValue, ¶ms ); } -const char * __thiscall winISteamFriends_SteamFriends001_GetFriendRegValue(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) +const char * __thiscall winISteamFriends_SteamFriends001_GetFriendRegValue(struct w_iface *_this, CSteamID steamIDFriend, const char *pchKey) { struct ISteamFriends_SteamFriends001_GetFriendRegValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; @@ -243,11 +243,11 @@ const char * __thiscall winISteamFriends_SteamFriends001_GetFriendRegValue(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends001_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) +const char * __thiscall winISteamFriends_SteamFriends001_GetFriendPersonaNameHistory(struct w_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { struct ISteamFriends_SteamFriends001_GetFriendPersonaNameHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; @@ -256,11 +256,11 @@ const char * __thiscall winISteamFriends_SteamFriends001_GetFriendPersonaNameHis return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends001_GetChatMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iChatID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamFriends_SteamFriends001_GetChatMessage(struct w_iface *_this, CSteamID steamIDFriend, int32_t iChatID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamFriends_SteamFriends001_GetChatMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iChatID = iChatID, .pvData = pvData, @@ -272,11 +272,11 @@ int32_t __thiscall winISteamFriends_SteamFriends001_GetChatMessage(struct w_stea return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends001_SendMsgToFriend_2(struct w_steam_iface *_this, CSteamID steamIDFriend, uint32_t eChatEntryType, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamFriends_SteamFriends001_SendMsgToFriend_2(struct w_iface *_this, CSteamID steamIDFriend, uint32_t eChatEntryType, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamFriends_SteamFriends001_SendMsgToFriend_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .eChatEntryType = eChatEntryType, .pvMsgBody = pvMsgBody, @@ -287,11 +287,11 @@ int8_t __thiscall winISteamFriends_SteamFriends001_SendMsgToFriend_2(struct w_st return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -299,11 +299,11 @@ int32_t __thiscall winISteamFriends_SteamFriends001_GetChatIDOfChatHistoryStart( return params._ret; } -void __thiscall winISteamFriends_SteamFriends001_SetChatHistoryStart(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iChatID) +void __thiscall winISteamFriends_SteamFriends001_SetChatHistoryStart(struct w_iface *_this, CSteamID steamIDFriend, int32_t iChatID) { struct ISteamFriends_SteamFriends001_SetChatHistoryStart_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iChatID = iChatID, }; @@ -311,22 +311,22 @@ void __thiscall winISteamFriends_SteamFriends001_SetChatHistoryStart(struct w_st STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_SetChatHistoryStart, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends001_ClearChatHistory(struct w_steam_iface *_this, CSteamID steamIDFriend) +void __thiscall winISteamFriends_SteamFriends001_ClearChatHistory(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends001_ClearChatHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_ClearChatHistory, ¶ms ); } -int8_t __thiscall winISteamFriends_SteamFriends001_InviteFriendByEmail(struct w_steam_iface *_this, const char *pchEmailAccount) +int8_t __thiscall winISteamFriends_SteamFriends001_InviteFriendByEmail(struct w_iface *_this, const char *pchEmailAccount) { struct ISteamFriends_SteamFriends001_InviteFriendByEmail_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchEmailAccount = pchEmailAccount, }; TRACE("%p\n", _this); @@ -335,22 +335,22 @@ int8_t __thiscall winISteamFriends_SteamFriends001_InviteFriendByEmail(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends001_GetBlockedFriendCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends001_GetBlockedFriendCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends001_GetBlockedFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends001_GetBlockedFriendCount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends001_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort) +int8_t __thiscall winISteamFriends_SteamFriends001_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort) { struct ISteamFriends_SteamFriends001_GetFriendGamePlayed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pulGameID = pulGameID, .punGameIP = punGameIP, @@ -361,11 +361,11 @@ int8_t __thiscall winISteamFriends_SteamFriends001_GetFriendGamePlayed(struct w_ return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends001_GetFriendGamePlayed2(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) +int8_t __thiscall winISteamFriends_SteamFriends001_GetFriendGamePlayed2(struct w_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) { struct ISteamFriends_SteamFriends001_GetFriendGamePlayed2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pulGameID = pulGameID, .punGameIP = punGameIP, @@ -413,9 +413,9 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends001_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamFriends_SteamFriends001(void *u_iface) +struct w_iface *create_winISteamFriends_SteamFriends001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamFriends001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamFriends_SteamFriends001_vtable, 27, "SteamFriends001"); r->u_iface = u_iface; @@ -453,22 +453,22 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends002_AcknowledgeInviteToClan DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends002_GetFriendCountFromSource, 12) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends002_GetFriendFromSourceByIndex, 20) -const char * __thiscall winISteamFriends_SteamFriends002_GetPersonaName(struct w_steam_iface *_this) +const char * __thiscall winISteamFriends_SteamFriends002_GetPersonaName(struct w_iface *_this) { struct ISteamFriends_SteamFriends002_GetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetPersonaName, ¶ms ); return params._ret; } -void __thiscall winISteamFriends_SteamFriends002_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) +void __thiscall winISteamFriends_SteamFriends002_SetPersonaName(struct w_iface *_this, const char *pchPersonaName) { struct ISteamFriends_SteamFriends002_SetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); @@ -476,33 +476,33 @@ void __thiscall winISteamFriends_SteamFriends002_SetPersonaName(struct w_steam_i STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_SetPersonaName, ¶ms ); } -uint32_t __thiscall winISteamFriends_SteamFriends002_GetPersonaState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends002_GetPersonaState(struct w_iface *_this) { struct ISteamFriends_SteamFriends002_GetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetPersonaState, ¶ms ); return params._ret; } -void __thiscall winISteamFriends_SteamFriends002_SetPersonaState(struct w_steam_iface *_this, uint32_t ePersonaState) +void __thiscall winISteamFriends_SteamFriends002_SetPersonaState(struct w_iface *_this, uint32_t ePersonaState) { struct ISteamFriends_SteamFriends002_SetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ePersonaState = ePersonaState, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_SetPersonaState, ¶ms ); } -int32_t __thiscall winISteamFriends_SteamFriends002_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) +int32_t __thiscall winISteamFriends_SteamFriends002_GetFriendCount(struct w_iface *_this, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends002_GetFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); @@ -510,11 +510,11 @@ int32_t __thiscall winISteamFriends_SteamFriends002_GetFriendCount(struct w_stea return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends002_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) +CSteamID * __thiscall winISteamFriends_SteamFriends002_GetFriendByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends002_GetFriendByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iFriend = iFriend, .iFriendFlags = iFriendFlags, @@ -524,11 +524,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends002_GetFriendByIndex(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends002_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends002_GetFriendRelationship(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends002_GetFriendRelationship_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -536,11 +536,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends002_GetFriendRelationship(struc return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends002_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends002_GetFriendPersonaState(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends002_GetFriendPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -548,11 +548,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends002_GetFriendPersonaState(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends002_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) +const char * __thiscall winISteamFriends_SteamFriends002_GetFriendPersonaName(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends002_GetFriendPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -560,11 +560,11 @@ const char * __thiscall winISteamFriends_SteamFriends002_GetFriendPersonaName(st return params._ret; } -void __thiscall winISteamFriends_SteamFriends002_SetFriendRegValue(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey, const char *pchValue) +void __thiscall winISteamFriends_SteamFriends002_SetFriendRegValue(struct w_iface *_this, CSteamID steamIDFriend, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends002_SetFriendRegValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, .pchValue = pchValue, @@ -575,11 +575,11 @@ void __thiscall winISteamFriends_SteamFriends002_SetFriendRegValue(struct w_stea STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_SetFriendRegValue, ¶ms ); } -const char * __thiscall winISteamFriends_SteamFriends002_GetFriendRegValue(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) +const char * __thiscall winISteamFriends_SteamFriends002_GetFriendRegValue(struct w_iface *_this, CSteamID steamIDFriend, const char *pchKey) { struct ISteamFriends_SteamFriends002_GetFriendRegValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; @@ -589,11 +589,11 @@ const char * __thiscall winISteamFriends_SteamFriends002_GetFriendRegValue(struc return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends002_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) +int8_t __thiscall winISteamFriends_SteamFriends002_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) { struct ISteamFriends_SteamFriends002_GetFriendGamePlayed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pulGameID = pulGameID, .punGameIP = punGameIP, @@ -605,11 +605,11 @@ int8_t __thiscall winISteamFriends_SteamFriends002_GetFriendGamePlayed(struct w_ return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends002_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) +const char * __thiscall winISteamFriends_SteamFriends002_GetFriendPersonaNameHistory(struct w_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { struct ISteamFriends_SteamFriends002_GetFriendPersonaNameHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; @@ -618,11 +618,11 @@ const char * __thiscall winISteamFriends_SteamFriends002_GetFriendPersonaNameHis return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends002_AddFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) +int8_t __thiscall winISteamFriends_SteamFriends002_AddFriend(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends002_AddFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -630,11 +630,11 @@ int8_t __thiscall winISteamFriends_SteamFriends002_AddFriend(struct w_steam_ifac return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends002_RemoveFriend(struct w_steam_iface *_this, CSteamID steamIDFriend) +int8_t __thiscall winISteamFriends_SteamFriends002_RemoveFriend(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends002_RemoveFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -642,11 +642,11 @@ int8_t __thiscall winISteamFriends_SteamFriends002_RemoveFriend(struct w_steam_i return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends002_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends002_HasFriend(struct w_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends002_HasFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; @@ -655,11 +655,11 @@ int8_t __thiscall winISteamFriends_SteamFriends002_HasFriend(struct w_steam_ifac return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends002_AddFriendByName(struct w_steam_iface *_this, const char *pchEmailOrAccountName) +int32_t __thiscall winISteamFriends_SteamFriends002_AddFriendByName(struct w_iface *_this, const char *pchEmailOrAccountName) { struct ISteamFriends_SteamFriends002_AddFriendByName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchEmailOrAccountName = pchEmailOrAccountName, }; TRACE("%p\n", _this); @@ -668,11 +668,11 @@ int32_t __thiscall winISteamFriends_SteamFriends002_AddFriendByName(struct w_ste return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends002_InviteFriendByEmail(struct w_steam_iface *_this, const char *pchEmailAccount) +int8_t __thiscall winISteamFriends_SteamFriends002_InviteFriendByEmail(struct w_iface *_this, const char *pchEmailAccount) { struct ISteamFriends_SteamFriends002_InviteFriendByEmail_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchEmailAccount = pchEmailAccount, }; TRACE("%p\n", _this); @@ -681,11 +681,11 @@ int8_t __thiscall winISteamFriends_SteamFriends002_InviteFriendByEmail(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends002_GetChatMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iChatID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamFriends_SteamFriends002_GetChatMessage(struct w_iface *_this, CSteamID steamIDFriend, int32_t iChatID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamFriends_SteamFriends002_GetChatMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iChatID = iChatID, .pvData = pvData, @@ -697,11 +697,11 @@ int32_t __thiscall winISteamFriends_SteamFriends002_GetChatMessage(struct w_stea return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends002_SendMsgToFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, uint32_t eChatEntryType, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamFriends_SteamFriends002_SendMsgToFriend(struct w_iface *_this, CSteamID steamIDFriend, uint32_t eChatEntryType, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamFriends_SteamFriends002_SendMsgToFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .eChatEntryType = eChatEntryType, .pvMsgBody = pvMsgBody, @@ -712,11 +712,11 @@ int8_t __thiscall winISteamFriends_SteamFriends002_SendMsgToFriend(struct w_stea return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -724,11 +724,11 @@ int32_t __thiscall winISteamFriends_SteamFriends002_GetChatIDOfChatHistoryStart( return params._ret; } -void __thiscall winISteamFriends_SteamFriends002_SetChatHistoryStart(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iChatID) +void __thiscall winISteamFriends_SteamFriends002_SetChatHistoryStart(struct w_iface *_this, CSteamID steamIDFriend, int32_t iChatID) { struct ISteamFriends_SteamFriends002_SetChatHistoryStart_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iChatID = iChatID, }; @@ -736,33 +736,33 @@ void __thiscall winISteamFriends_SteamFriends002_SetChatHistoryStart(struct w_st STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_SetChatHistoryStart, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends002_ClearChatHistory(struct w_steam_iface *_this, CSteamID steamIDFriend) +void __thiscall winISteamFriends_SteamFriends002_ClearChatHistory(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends002_ClearChatHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_ClearChatHistory, ¶ms ); } -int32_t __thiscall winISteamFriends_SteamFriends002_GetClanCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends002_GetClanCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends002_GetClanCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends002_GetClanCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends002_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) +CSteamID * __thiscall winISteamFriends_SteamFriends002_GetClanByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iClan) { struct ISteamFriends_SteamFriends002_GetClanByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iClan = iClan, }; @@ -771,11 +771,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends002_GetClanByIndex(struct w_s return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends002_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends002_GetClanName(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends002_GetClanName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -783,11 +783,11 @@ const char * __thiscall winISteamFriends_SteamFriends002_GetClanName(struct w_st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends002_InviteFriendToClan(struct w_steam_iface *_this, CSteamID steamIDFriend, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends002_InviteFriendToClan(struct w_iface *_this, CSteamID steamIDFriend, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends002_InviteFriendToClan_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .steamIDClan = steamIDClan, }; @@ -796,11 +796,11 @@ int8_t __thiscall winISteamFriends_SteamFriends002_InviteFriendToClan(struct w_s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends002_AcknowledgeInviteToClan(struct w_steam_iface *_this, CSteamID steamIDClan, int8_t bAcceptOrDenyClanInvite) +int8_t __thiscall winISteamFriends_SteamFriends002_AcknowledgeInviteToClan(struct w_iface *_this, CSteamID steamIDClan, int8_t bAcceptOrDenyClanInvite) { struct ISteamFriends_SteamFriends002_AcknowledgeInviteToClan_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, .bAcceptOrDenyClanInvite = bAcceptOrDenyClanInvite, }; @@ -809,11 +809,11 @@ int8_t __thiscall winISteamFriends_SteamFriends002_AcknowledgeInviteToClan(struc return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends002_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) +int32_t __thiscall winISteamFriends_SteamFriends002_GetFriendCountFromSource(struct w_iface *_this, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends002_GetFriendCountFromSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); @@ -821,11 +821,11 @@ int32_t __thiscall winISteamFriends_SteamFriends002_GetFriendCountFromSource(str return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends002_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends002_GetFriendFromSourceByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { struct ISteamFriends_SteamFriends002_GetFriendFromSourceByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDSource = steamIDSource, .iFriend = iFriend, @@ -874,9 +874,9 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends002_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamFriends_SteamFriends002(void *u_iface) +struct w_iface *create_winISteamFriends_SteamFriends002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamFriends002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamFriends_SteamFriends002_vtable, 30, "SteamFriends002"); r->u_iface = u_iface; @@ -904,22 +904,22 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends003_IsUserInSource, 20) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends003_SetInGameVoiceSpeaking, 16) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends003_ActivateGameOverlay, 8) -const char * __thiscall winISteamFriends_SteamFriends003_GetPersonaName(struct w_steam_iface *_this) +const char * __thiscall winISteamFriends_SteamFriends003_GetPersonaName(struct w_iface *_this) { struct ISteamFriends_SteamFriends003_GetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_GetPersonaName, ¶ms ); return params._ret; } -void __thiscall winISteamFriends_SteamFriends003_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) +void __thiscall winISteamFriends_SteamFriends003_SetPersonaName(struct w_iface *_this, const char *pchPersonaName) { struct ISteamFriends_SteamFriends003_SetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); @@ -927,22 +927,22 @@ void __thiscall winISteamFriends_SteamFriends003_SetPersonaName(struct w_steam_i STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_SetPersonaName, ¶ms ); } -uint32_t __thiscall winISteamFriends_SteamFriends003_GetPersonaState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends003_GetPersonaState(struct w_iface *_this) { struct ISteamFriends_SteamFriends003_GetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_GetPersonaState, ¶ms ); return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends003_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) +int32_t __thiscall winISteamFriends_SteamFriends003_GetFriendCount(struct w_iface *_this, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends003_GetFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); @@ -950,11 +950,11 @@ int32_t __thiscall winISteamFriends_SteamFriends003_GetFriendCount(struct w_stea return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends003_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) +CSteamID * __thiscall winISteamFriends_SteamFriends003_GetFriendByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends003_GetFriendByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iFriend = iFriend, .iFriendFlags = iFriendFlags, @@ -964,11 +964,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends003_GetFriendByIndex(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends003_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends003_GetFriendRelationship(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends003_GetFriendRelationship_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -976,11 +976,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends003_GetFriendRelationship(struc return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends003_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends003_GetFriendPersonaState(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends003_GetFriendPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -988,11 +988,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends003_GetFriendPersonaState(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends003_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) +const char * __thiscall winISteamFriends_SteamFriends003_GetFriendPersonaName(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends003_GetFriendPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -1000,11 +1000,11 @@ const char * __thiscall winISteamFriends_SteamFriends003_GetFriendPersonaName(st return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends003_GetFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends003_GetFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends003_GetFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -1012,11 +1012,11 @@ int32_t __thiscall winISteamFriends_SteamFriends003_GetFriendAvatar(struct w_ste return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends003_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) +int8_t __thiscall winISteamFriends_SteamFriends003_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) { struct ISteamFriends_SteamFriends003_GetFriendGamePlayed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pulGameID = pulGameID, .punGameIP = punGameIP, @@ -1028,11 +1028,11 @@ int8_t __thiscall winISteamFriends_SteamFriends003_GetFriendGamePlayed(struct w_ return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends003_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) +const char * __thiscall winISteamFriends_SteamFriends003_GetFriendPersonaNameHistory(struct w_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { struct ISteamFriends_SteamFriends003_GetFriendPersonaNameHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; @@ -1041,11 +1041,11 @@ const char * __thiscall winISteamFriends_SteamFriends003_GetFriendPersonaNameHis return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends003_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends003_HasFriend(struct w_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends003_HasFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; @@ -1054,22 +1054,22 @@ int8_t __thiscall winISteamFriends_SteamFriends003_HasFriend(struct w_steam_ifac return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends003_GetClanCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends003_GetClanCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends003_GetClanCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_GetClanCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends003_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) +CSteamID * __thiscall winISteamFriends_SteamFriends003_GetClanByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iClan) { struct ISteamFriends_SteamFriends003_GetClanByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iClan = iClan, }; @@ -1078,11 +1078,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends003_GetClanByIndex(struct w_s return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends003_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends003_GetClanName(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends003_GetClanName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -1090,11 +1090,11 @@ const char * __thiscall winISteamFriends_SteamFriends003_GetClanName(struct w_st return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends003_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) +int32_t __thiscall winISteamFriends_SteamFriends003_GetFriendCountFromSource(struct w_iface *_this, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends003_GetFriendCountFromSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); @@ -1102,11 +1102,11 @@ int32_t __thiscall winISteamFriends_SteamFriends003_GetFriendCountFromSource(str return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends003_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends003_GetFriendFromSourceByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { struct ISteamFriends_SteamFriends003_GetFriendFromSourceByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDSource = steamIDSource, .iFriend = iFriend, @@ -1116,11 +1116,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends003_GetFriendFromSourceByInde return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends003_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends003_IsUserInSource(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends003_IsUserInSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; @@ -1129,11 +1129,11 @@ int8_t __thiscall winISteamFriends_SteamFriends003_IsUserInSource(struct w_steam return params._ret; } -void __thiscall winISteamFriends_SteamFriends003_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) +void __thiscall winISteamFriends_SteamFriends003_SetInGameVoiceSpeaking(struct w_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends003_SetInGameVoiceSpeaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; @@ -1141,11 +1141,11 @@ void __thiscall winISteamFriends_SteamFriends003_SetInGameVoiceSpeaking(struct w STEAMCLIENT_CALL( ISteamFriends_SteamFriends003_SetInGameVoiceSpeaking, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends003_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) +void __thiscall winISteamFriends_SteamFriends003_ActivateGameOverlay(struct w_iface *_this, const char *pchDialog) { struct ISteamFriends_SteamFriends003_ActivateGameOverlay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); @@ -1182,9 +1182,9 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends003_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamFriends_SteamFriends003(void *u_iface) +struct w_iface *create_winISteamFriends_SteamFriends003( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamFriends003"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends003"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamFriends_SteamFriends003_vtable, 20, "SteamFriends003"); r->u_iface = u_iface; @@ -1212,22 +1212,22 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends004_IsUserInSource, 20) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends004_SetInGameVoiceSpeaking, 16) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends004_ActivateGameOverlay, 8) -const char * __thiscall winISteamFriends_SteamFriends004_GetPersonaName(struct w_steam_iface *_this) +const char * __thiscall winISteamFriends_SteamFriends004_GetPersonaName(struct w_iface *_this) { struct ISteamFriends_SteamFriends004_GetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_GetPersonaName, ¶ms ); return params._ret; } -void __thiscall winISteamFriends_SteamFriends004_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) +void __thiscall winISteamFriends_SteamFriends004_SetPersonaName(struct w_iface *_this, const char *pchPersonaName) { struct ISteamFriends_SteamFriends004_SetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); @@ -1235,22 +1235,22 @@ void __thiscall winISteamFriends_SteamFriends004_SetPersonaName(struct w_steam_i STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_SetPersonaName, ¶ms ); } -uint32_t __thiscall winISteamFriends_SteamFriends004_GetPersonaState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends004_GetPersonaState(struct w_iface *_this) { struct ISteamFriends_SteamFriends004_GetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_GetPersonaState, ¶ms ); return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends004_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) +int32_t __thiscall winISteamFriends_SteamFriends004_GetFriendCount(struct w_iface *_this, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends004_GetFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); @@ -1258,11 +1258,11 @@ int32_t __thiscall winISteamFriends_SteamFriends004_GetFriendCount(struct w_stea return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends004_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) +CSteamID * __thiscall winISteamFriends_SteamFriends004_GetFriendByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends004_GetFriendByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iFriend = iFriend, .iFriendFlags = iFriendFlags, @@ -1272,11 +1272,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends004_GetFriendByIndex(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends004_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends004_GetFriendRelationship(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends004_GetFriendRelationship_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -1284,11 +1284,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends004_GetFriendRelationship(struc return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends004_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends004_GetFriendPersonaState(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends004_GetFriendPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -1296,11 +1296,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends004_GetFriendPersonaState(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends004_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) +const char * __thiscall winISteamFriends_SteamFriends004_GetFriendPersonaName(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends004_GetFriendPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -1308,11 +1308,11 @@ const char * __thiscall winISteamFriends_SteamFriends004_GetFriendPersonaName(st return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends004_GetFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t eAvatarSize) +int32_t __thiscall winISteamFriends_SteamFriends004_GetFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend, int32_t eAvatarSize) { struct ISteamFriends_SteamFriends004_GetFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .eAvatarSize = eAvatarSize, }; @@ -1321,11 +1321,11 @@ int32_t __thiscall winISteamFriends_SteamFriends004_GetFriendAvatar(struct w_ste return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends004_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) +int8_t __thiscall winISteamFriends_SteamFriends004_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, uint64_t *pulGameID, uint32_t *punGameIP, uint16_t *pusGamePort, uint16_t *pusQueryPort) { struct ISteamFriends_SteamFriends004_GetFriendGamePlayed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pulGameID = pulGameID, .punGameIP = punGameIP, @@ -1337,11 +1337,11 @@ int8_t __thiscall winISteamFriends_SteamFriends004_GetFriendGamePlayed(struct w_ return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends004_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) +const char * __thiscall winISteamFriends_SteamFriends004_GetFriendPersonaNameHistory(struct w_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { struct ISteamFriends_SteamFriends004_GetFriendPersonaNameHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; @@ -1350,11 +1350,11 @@ const char * __thiscall winISteamFriends_SteamFriends004_GetFriendPersonaNameHis return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends004_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends004_HasFriend(struct w_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends004_HasFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; @@ -1363,22 +1363,22 @@ int8_t __thiscall winISteamFriends_SteamFriends004_HasFriend(struct w_steam_ifac return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends004_GetClanCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends004_GetClanCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends004_GetClanCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_GetClanCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends004_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) +CSteamID * __thiscall winISteamFriends_SteamFriends004_GetClanByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iClan) { struct ISteamFriends_SteamFriends004_GetClanByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iClan = iClan, }; @@ -1387,11 +1387,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends004_GetClanByIndex(struct w_s return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends004_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends004_GetClanName(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends004_GetClanName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -1399,11 +1399,11 @@ const char * __thiscall winISteamFriends_SteamFriends004_GetClanName(struct w_st return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends004_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) +int32_t __thiscall winISteamFriends_SteamFriends004_GetFriendCountFromSource(struct w_iface *_this, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends004_GetFriendCountFromSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); @@ -1411,11 +1411,11 @@ int32_t __thiscall winISteamFriends_SteamFriends004_GetFriendCountFromSource(str return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends004_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends004_GetFriendFromSourceByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { struct ISteamFriends_SteamFriends004_GetFriendFromSourceByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDSource = steamIDSource, .iFriend = iFriend, @@ -1425,11 +1425,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends004_GetFriendFromSourceByInde return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends004_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends004_IsUserInSource(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends004_IsUserInSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; @@ -1438,11 +1438,11 @@ int8_t __thiscall winISteamFriends_SteamFriends004_IsUserInSource(struct w_steam return params._ret; } -void __thiscall winISteamFriends_SteamFriends004_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) +void __thiscall winISteamFriends_SteamFriends004_SetInGameVoiceSpeaking(struct w_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends004_SetInGameVoiceSpeaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; @@ -1450,11 +1450,11 @@ void __thiscall winISteamFriends_SteamFriends004_SetInGameVoiceSpeaking(struct w STEAMCLIENT_CALL( ISteamFriends_SteamFriends004_SetInGameVoiceSpeaking, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends004_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) +void __thiscall winISteamFriends_SteamFriends004_ActivateGameOverlay(struct w_iface *_this, const char *pchDialog) { struct ISteamFriends_SteamFriends004_ActivateGameOverlay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); @@ -1491,9 +1491,9 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends004_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamFriends_SteamFriends004(void *u_iface) +struct w_iface *create_winISteamFriends_SteamFriends004( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamFriends004"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends004"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamFriends_SteamFriends004_vtable, 20, "SteamFriends004"); r->u_iface = u_iface; @@ -1525,22 +1525,22 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends005_ActivateGameOverlayToWe DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends005_ActivateGameOverlayToStore, 8) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends005_SetPlayedWith, 12) -const char * __thiscall winISteamFriends_SteamFriends005_GetPersonaName(struct w_steam_iface *_this) +const char * __thiscall winISteamFriends_SteamFriends005_GetPersonaName(struct w_iface *_this) { struct ISteamFriends_SteamFriends005_GetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_GetPersonaName, ¶ms ); return params._ret; } -void __thiscall winISteamFriends_SteamFriends005_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) +void __thiscall winISteamFriends_SteamFriends005_SetPersonaName(struct w_iface *_this, const char *pchPersonaName) { struct ISteamFriends_SteamFriends005_SetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); @@ -1548,22 +1548,22 @@ void __thiscall winISteamFriends_SteamFriends005_SetPersonaName(struct w_steam_i STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_SetPersonaName, ¶ms ); } -uint32_t __thiscall winISteamFriends_SteamFriends005_GetPersonaState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends005_GetPersonaState(struct w_iface *_this) { struct ISteamFriends_SteamFriends005_GetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_GetPersonaState, ¶ms ); return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends005_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) +int32_t __thiscall winISteamFriends_SteamFriends005_GetFriendCount(struct w_iface *_this, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends005_GetFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); @@ -1571,11 +1571,11 @@ int32_t __thiscall winISteamFriends_SteamFriends005_GetFriendCount(struct w_stea return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends005_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) +CSteamID * __thiscall winISteamFriends_SteamFriends005_GetFriendByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends005_GetFriendByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iFriend = iFriend, .iFriendFlags = iFriendFlags, @@ -1585,11 +1585,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends005_GetFriendByIndex(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends005_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends005_GetFriendRelationship(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends005_GetFriendRelationship_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -1597,11 +1597,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends005_GetFriendRelationship(struc return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends005_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends005_GetFriendPersonaState(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends005_GetFriendPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -1609,11 +1609,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends005_GetFriendPersonaState(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends005_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) +const char * __thiscall winISteamFriends_SteamFriends005_GetFriendPersonaName(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends005_GetFriendPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -1621,11 +1621,11 @@ const char * __thiscall winISteamFriends_SteamFriends005_GetFriendPersonaName(st return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends005_GetFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t eAvatarSize) +int32_t __thiscall winISteamFriends_SteamFriends005_GetFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend, int32_t eAvatarSize) { struct ISteamFriends_SteamFriends005_GetFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .eAvatarSize = eAvatarSize, }; @@ -1634,11 +1634,11 @@ int32_t __thiscall winISteamFriends_SteamFriends005_GetFriendAvatar(struct w_ste return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends005_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends005_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends005_GetFriendGamePlayed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; @@ -1647,11 +1647,11 @@ int8_t __thiscall winISteamFriends_SteamFriends005_GetFriendGamePlayed(struct w_ return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends005_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) +const char * __thiscall winISteamFriends_SteamFriends005_GetFriendPersonaNameHistory(struct w_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { struct ISteamFriends_SteamFriends005_GetFriendPersonaNameHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; @@ -1660,11 +1660,11 @@ const char * __thiscall winISteamFriends_SteamFriends005_GetFriendPersonaNameHis return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends005_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends005_HasFriend(struct w_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends005_HasFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; @@ -1673,22 +1673,22 @@ int8_t __thiscall winISteamFriends_SteamFriends005_HasFriend(struct w_steam_ifac return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends005_GetClanCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends005_GetClanCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends005_GetClanCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_GetClanCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends005_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) +CSteamID * __thiscall winISteamFriends_SteamFriends005_GetClanByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iClan) { struct ISteamFriends_SteamFriends005_GetClanByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iClan = iClan, }; @@ -1697,11 +1697,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends005_GetClanByIndex(struct w_s return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends005_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends005_GetClanName(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends005_GetClanName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -1709,11 +1709,11 @@ const char * __thiscall winISteamFriends_SteamFriends005_GetClanName(struct w_st return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends005_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) +int32_t __thiscall winISteamFriends_SteamFriends005_GetFriendCountFromSource(struct w_iface *_this, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends005_GetFriendCountFromSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); @@ -1721,11 +1721,11 @@ int32_t __thiscall winISteamFriends_SteamFriends005_GetFriendCountFromSource(str return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends005_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends005_GetFriendFromSourceByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { struct ISteamFriends_SteamFriends005_GetFriendFromSourceByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDSource = steamIDSource, .iFriend = iFriend, @@ -1735,11 +1735,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends005_GetFriendFromSourceByInde return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends005_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends005_IsUserInSource(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends005_IsUserInSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; @@ -1748,11 +1748,11 @@ int8_t __thiscall winISteamFriends_SteamFriends005_IsUserInSource(struct w_steam return params._ret; } -void __thiscall winISteamFriends_SteamFriends005_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) +void __thiscall winISteamFriends_SteamFriends005_SetInGameVoiceSpeaking(struct w_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends005_SetInGameVoiceSpeaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; @@ -1760,11 +1760,11 @@ void __thiscall winISteamFriends_SteamFriends005_SetInGameVoiceSpeaking(struct w STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_SetInGameVoiceSpeaking, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends005_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) +void __thiscall winISteamFriends_SteamFriends005_ActivateGameOverlay(struct w_iface *_this, const char *pchDialog) { struct ISteamFriends_SteamFriends005_ActivateGameOverlay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); @@ -1772,11 +1772,11 @@ void __thiscall winISteamFriends_SteamFriends005_ActivateGameOverlay(struct w_st STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_ActivateGameOverlay, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends005_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) +void __thiscall winISteamFriends_SteamFriends005_ActivateGameOverlayToUser(struct w_iface *_this, const char *pchDialog, CSteamID steamID) { struct ISteamFriends_SteamFriends005_ActivateGameOverlayToUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; @@ -1785,11 +1785,11 @@ void __thiscall winISteamFriends_SteamFriends005_ActivateGameOverlayToUser(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_ActivateGameOverlayToUser, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) +void __thiscall winISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage(struct w_iface *_this, const char *pchURL) { struct ISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); @@ -1797,22 +1797,22 @@ void __thiscall winISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage(st STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_ActivateGameOverlayToWebPage, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends005_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamFriends_SteamFriends005_ActivateGameOverlayToStore(struct w_iface *_this, uint32_t nAppID) { struct ISteamFriends_SteamFriends005_ActivateGameOverlayToStore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends005_ActivateGameOverlayToStore, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends005_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) +void __thiscall winISteamFriends_SteamFriends005_SetPlayedWith(struct w_iface *_this, CSteamID steamIDUserPlayedWith) { struct ISteamFriends_SteamFriends005_SetPlayedWith_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); @@ -1852,9 +1852,9 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends005_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamFriends_SteamFriends005(void *u_iface) +struct w_iface *create_winISteamFriends_SteamFriends005( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamFriends005"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends005"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamFriends_SteamFriends005_vtable, 24, "SteamFriends005"); r->u_iface = u_iface; @@ -1888,22 +1888,22 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends006_ActivateGameOverlayToSt DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends006_SetPlayedWith, 12) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog, 12) -const char * __thiscall winISteamFriends_SteamFriends006_GetPersonaName(struct w_steam_iface *_this) +const char * __thiscall winISteamFriends_SteamFriends006_GetPersonaName(struct w_iface *_this) { struct ISteamFriends_SteamFriends006_GetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetPersonaName, ¶ms ); return params._ret; } -void __thiscall winISteamFriends_SteamFriends006_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) +void __thiscall winISteamFriends_SteamFriends006_SetPersonaName(struct w_iface *_this, const char *pchPersonaName) { struct ISteamFriends_SteamFriends006_SetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); @@ -1911,22 +1911,22 @@ void __thiscall winISteamFriends_SteamFriends006_SetPersonaName(struct w_steam_i STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_SetPersonaName, ¶ms ); } -uint32_t __thiscall winISteamFriends_SteamFriends006_GetPersonaState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends006_GetPersonaState(struct w_iface *_this) { struct ISteamFriends_SteamFriends006_GetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetPersonaState, ¶ms ); return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends006_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) +int32_t __thiscall winISteamFriends_SteamFriends006_GetFriendCount(struct w_iface *_this, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends006_GetFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); @@ -1934,11 +1934,11 @@ int32_t __thiscall winISteamFriends_SteamFriends006_GetFriendCount(struct w_stea return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends006_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) +CSteamID * __thiscall winISteamFriends_SteamFriends006_GetFriendByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends006_GetFriendByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iFriend = iFriend, .iFriendFlags = iFriendFlags, @@ -1948,11 +1948,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends006_GetFriendByIndex(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends006_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends006_GetFriendRelationship(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends006_GetFriendRelationship_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -1960,11 +1960,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends006_GetFriendRelationship(struc return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends006_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends006_GetFriendPersonaState(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends006_GetFriendPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -1972,11 +1972,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends006_GetFriendPersonaState(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends006_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) +const char * __thiscall winISteamFriends_SteamFriends006_GetFriendPersonaName(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends006_GetFriendPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -1984,11 +1984,11 @@ const char * __thiscall winISteamFriends_SteamFriends006_GetFriendPersonaName(st return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends006_GetFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t eAvatarSize) +int32_t __thiscall winISteamFriends_SteamFriends006_GetFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend, int32_t eAvatarSize) { struct ISteamFriends_SteamFriends006_GetFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .eAvatarSize = eAvatarSize, }; @@ -1997,11 +1997,11 @@ int32_t __thiscall winISteamFriends_SteamFriends006_GetFriendAvatar(struct w_ste return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends006_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends006_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends006_GetFriendGamePlayed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; @@ -2010,11 +2010,11 @@ int8_t __thiscall winISteamFriends_SteamFriends006_GetFriendGamePlayed(struct w_ return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends006_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) +const char * __thiscall winISteamFriends_SteamFriends006_GetFriendPersonaNameHistory(struct w_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { struct ISteamFriends_SteamFriends006_GetFriendPersonaNameHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; @@ -2023,11 +2023,11 @@ const char * __thiscall winISteamFriends_SteamFriends006_GetFriendPersonaNameHis return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends006_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends006_HasFriend(struct w_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends006_HasFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; @@ -2036,22 +2036,22 @@ int8_t __thiscall winISteamFriends_SteamFriends006_HasFriend(struct w_steam_ifac return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends006_GetClanCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends006_GetClanCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends006_GetClanCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_GetClanCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends006_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) +CSteamID * __thiscall winISteamFriends_SteamFriends006_GetClanByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iClan) { struct ISteamFriends_SteamFriends006_GetClanByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iClan = iClan, }; @@ -2060,11 +2060,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends006_GetClanByIndex(struct w_s return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends006_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends006_GetClanName(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends006_GetClanName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -2072,11 +2072,11 @@ const char * __thiscall winISteamFriends_SteamFriends006_GetClanName(struct w_st return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends006_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends006_GetClanTag(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends006_GetClanTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -2084,11 +2084,11 @@ const char * __thiscall winISteamFriends_SteamFriends006_GetClanTag(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends006_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) +int32_t __thiscall winISteamFriends_SteamFriends006_GetFriendCountFromSource(struct w_iface *_this, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends006_GetFriendCountFromSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); @@ -2096,11 +2096,11 @@ int32_t __thiscall winISteamFriends_SteamFriends006_GetFriendCountFromSource(str return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends006_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends006_GetFriendFromSourceByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { struct ISteamFriends_SteamFriends006_GetFriendFromSourceByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDSource = steamIDSource, .iFriend = iFriend, @@ -2110,11 +2110,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends006_GetFriendFromSourceByInde return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends006_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends006_IsUserInSource(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends006_IsUserInSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; @@ -2123,11 +2123,11 @@ int8_t __thiscall winISteamFriends_SteamFriends006_IsUserInSource(struct w_steam return params._ret; } -void __thiscall winISteamFriends_SteamFriends006_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) +void __thiscall winISteamFriends_SteamFriends006_SetInGameVoiceSpeaking(struct w_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends006_SetInGameVoiceSpeaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; @@ -2135,11 +2135,11 @@ void __thiscall winISteamFriends_SteamFriends006_SetInGameVoiceSpeaking(struct w STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_SetInGameVoiceSpeaking, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends006_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) +void __thiscall winISteamFriends_SteamFriends006_ActivateGameOverlay(struct w_iface *_this, const char *pchDialog) { struct ISteamFriends_SteamFriends006_ActivateGameOverlay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); @@ -2147,11 +2147,11 @@ void __thiscall winISteamFriends_SteamFriends006_ActivateGameOverlay(struct w_st STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_ActivateGameOverlay, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends006_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) +void __thiscall winISteamFriends_SteamFriends006_ActivateGameOverlayToUser(struct w_iface *_this, const char *pchDialog, CSteamID steamID) { struct ISteamFriends_SteamFriends006_ActivateGameOverlayToUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; @@ -2160,11 +2160,11 @@ void __thiscall winISteamFriends_SteamFriends006_ActivateGameOverlayToUser(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_ActivateGameOverlayToUser, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) +void __thiscall winISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage(struct w_iface *_this, const char *pchURL) { struct ISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); @@ -2172,33 +2172,33 @@ void __thiscall winISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage(st STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends006_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamFriends_SteamFriends006_ActivateGameOverlayToStore(struct w_iface *_this, uint32_t nAppID) { struct ISteamFriends_SteamFriends006_ActivateGameOverlayToStore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_ActivateGameOverlayToStore, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends006_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) +void __thiscall winISteamFriends_SteamFriends006_SetPlayedWith(struct w_iface *_this, CSteamID steamIDUserPlayedWith) { struct ISteamFriends_SteamFriends006_SetPlayedWith_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends006_SetPlayedWith, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamFriends_SteamFriends006_ActivateGameOverlayInviteDialog_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -2240,9 +2240,9 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends006_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamFriends_SteamFriends006(void *u_iface) +struct w_iface *create_winISteamFriends_SteamFriends006( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamFriends006"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends006"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamFriends_SteamFriends006_vtable, 26, "SteamFriends006"); r->u_iface = u_iface; @@ -2278,22 +2278,22 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends007_GetSmallFriendAvatar, 1 DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends007_GetMediumFriendAvatar, 12) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends007_GetLargeFriendAvatar, 12) -const char * __thiscall winISteamFriends_SteamFriends007_GetPersonaName(struct w_steam_iface *_this) +const char * __thiscall winISteamFriends_SteamFriends007_GetPersonaName(struct w_iface *_this) { struct ISteamFriends_SteamFriends007_GetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetPersonaName, ¶ms ); return params._ret; } -void __thiscall winISteamFriends_SteamFriends007_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) +void __thiscall winISteamFriends_SteamFriends007_SetPersonaName(struct w_iface *_this, const char *pchPersonaName) { struct ISteamFriends_SteamFriends007_SetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); @@ -2301,22 +2301,22 @@ void __thiscall winISteamFriends_SteamFriends007_SetPersonaName(struct w_steam_i STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_SetPersonaName, ¶ms ); } -uint32_t __thiscall winISteamFriends_SteamFriends007_GetPersonaState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends007_GetPersonaState(struct w_iface *_this) { struct ISteamFriends_SteamFriends007_GetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetPersonaState, ¶ms ); return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends007_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) +int32_t __thiscall winISteamFriends_SteamFriends007_GetFriendCount(struct w_iface *_this, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends007_GetFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); @@ -2324,11 +2324,11 @@ int32_t __thiscall winISteamFriends_SteamFriends007_GetFriendCount(struct w_stea return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends007_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) +CSteamID * __thiscall winISteamFriends_SteamFriends007_GetFriendByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends007_GetFriendByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iFriend = iFriend, .iFriendFlags = iFriendFlags, @@ -2338,11 +2338,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends007_GetFriendByIndex(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends007_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends007_GetFriendRelationship(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends007_GetFriendRelationship_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -2350,11 +2350,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends007_GetFriendRelationship(struc return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends007_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends007_GetFriendPersonaState(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends007_GetFriendPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -2362,11 +2362,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends007_GetFriendPersonaState(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends007_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) +const char * __thiscall winISteamFriends_SteamFriends007_GetFriendPersonaName(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends007_GetFriendPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -2374,11 +2374,11 @@ const char * __thiscall winISteamFriends_SteamFriends007_GetFriendPersonaName(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends007_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends007_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends007_GetFriendGamePlayed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; @@ -2387,11 +2387,11 @@ int8_t __thiscall winISteamFriends_SteamFriends007_GetFriendGamePlayed(struct w_ return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends007_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) +const char * __thiscall winISteamFriends_SteamFriends007_GetFriendPersonaNameHistory(struct w_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { struct ISteamFriends_SteamFriends007_GetFriendPersonaNameHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; @@ -2400,11 +2400,11 @@ const char * __thiscall winISteamFriends_SteamFriends007_GetFriendPersonaNameHis return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends007_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends007_HasFriend(struct w_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends007_HasFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; @@ -2413,22 +2413,22 @@ int8_t __thiscall winISteamFriends_SteamFriends007_HasFriend(struct w_steam_ifac return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends007_GetClanCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends007_GetClanCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends007_GetClanCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_GetClanCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends007_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) +CSteamID * __thiscall winISteamFriends_SteamFriends007_GetClanByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iClan) { struct ISteamFriends_SteamFriends007_GetClanByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iClan = iClan, }; @@ -2437,11 +2437,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends007_GetClanByIndex(struct w_s return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends007_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends007_GetClanName(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends007_GetClanName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -2449,11 +2449,11 @@ const char * __thiscall winISteamFriends_SteamFriends007_GetClanName(struct w_st return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends007_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends007_GetClanTag(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends007_GetClanTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -2461,11 +2461,11 @@ const char * __thiscall winISteamFriends_SteamFriends007_GetClanTag(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends007_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) +int32_t __thiscall winISteamFriends_SteamFriends007_GetFriendCountFromSource(struct w_iface *_this, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends007_GetFriendCountFromSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); @@ -2473,11 +2473,11 @@ int32_t __thiscall winISteamFriends_SteamFriends007_GetFriendCountFromSource(str return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends007_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends007_GetFriendFromSourceByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { struct ISteamFriends_SteamFriends007_GetFriendFromSourceByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDSource = steamIDSource, .iFriend = iFriend, @@ -2487,11 +2487,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends007_GetFriendFromSourceByInde return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends007_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends007_IsUserInSource(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends007_IsUserInSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; @@ -2500,11 +2500,11 @@ int8_t __thiscall winISteamFriends_SteamFriends007_IsUserInSource(struct w_steam return params._ret; } -void __thiscall winISteamFriends_SteamFriends007_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) +void __thiscall winISteamFriends_SteamFriends007_SetInGameVoiceSpeaking(struct w_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends007_SetInGameVoiceSpeaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; @@ -2512,11 +2512,11 @@ void __thiscall winISteamFriends_SteamFriends007_SetInGameVoiceSpeaking(struct w STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_SetInGameVoiceSpeaking, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends007_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) +void __thiscall winISteamFriends_SteamFriends007_ActivateGameOverlay(struct w_iface *_this, const char *pchDialog) { struct ISteamFriends_SteamFriends007_ActivateGameOverlay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); @@ -2524,11 +2524,11 @@ void __thiscall winISteamFriends_SteamFriends007_ActivateGameOverlay(struct w_st STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_ActivateGameOverlay, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends007_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) +void __thiscall winISteamFriends_SteamFriends007_ActivateGameOverlayToUser(struct w_iface *_this, const char *pchDialog, CSteamID steamID) { struct ISteamFriends_SteamFriends007_ActivateGameOverlayToUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; @@ -2537,11 +2537,11 @@ void __thiscall winISteamFriends_SteamFriends007_ActivateGameOverlayToUser(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_ActivateGameOverlayToUser, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) +void __thiscall winISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage(struct w_iface *_this, const char *pchURL) { struct ISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); @@ -2549,44 +2549,44 @@ void __thiscall winISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage(st STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_ActivateGameOverlayToWebPage, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends007_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamFriends_SteamFriends007_ActivateGameOverlayToStore(struct w_iface *_this, uint32_t nAppID) { struct ISteamFriends_SteamFriends007_ActivateGameOverlayToStore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_ActivateGameOverlayToStore, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends007_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) +void __thiscall winISteamFriends_SteamFriends007_SetPlayedWith(struct w_iface *_this, CSteamID steamIDUserPlayedWith) { struct ISteamFriends_SteamFriends007_SetPlayedWith_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_SetPlayedWith, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends007_ActivateGameOverlayInviteDialog, ¶ms ); } -int32_t __thiscall winISteamFriends_SteamFriends007_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends007_GetSmallFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends007_GetSmallFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -2594,11 +2594,11 @@ int32_t __thiscall winISteamFriends_SteamFriends007_GetSmallFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends007_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends007_GetMediumFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends007_GetMediumFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -2606,11 +2606,11 @@ int32_t __thiscall winISteamFriends_SteamFriends007_GetMediumFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends007_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends007_GetLargeFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends007_GetLargeFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -2655,9 +2655,9 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends007_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamFriends_SteamFriends007(void *u_iface) +struct w_iface *create_winISteamFriends_SteamFriends007( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamFriends007"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends007"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamFriends_SteamFriends007_vtable, 28, "SteamFriends007"); r->u_iface = u_iface; @@ -2699,22 +2699,22 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends008_GetClanOfficerCount, 12 DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends008_GetClanOfficerByIndex, 20) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends008_GetUserRestrictions, 4) -const char * __thiscall winISteamFriends_SteamFriends008_GetPersonaName(struct w_steam_iface *_this) +const char * __thiscall winISteamFriends_SteamFriends008_GetPersonaName(struct w_iface *_this) { struct ISteamFriends_SteamFriends008_GetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetPersonaName, ¶ms ); return params._ret; } -void __thiscall winISteamFriends_SteamFriends008_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) +void __thiscall winISteamFriends_SteamFriends008_SetPersonaName(struct w_iface *_this, const char *pchPersonaName) { struct ISteamFriends_SteamFriends008_SetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); @@ -2722,22 +2722,22 @@ void __thiscall winISteamFriends_SteamFriends008_SetPersonaName(struct w_steam_i STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_SetPersonaName, ¶ms ); } -uint32_t __thiscall winISteamFriends_SteamFriends008_GetPersonaState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends008_GetPersonaState(struct w_iface *_this) { struct ISteamFriends_SteamFriends008_GetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetPersonaState, ¶ms ); return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends008_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) +int32_t __thiscall winISteamFriends_SteamFriends008_GetFriendCount(struct w_iface *_this, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends008_GetFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); @@ -2745,11 +2745,11 @@ int32_t __thiscall winISteamFriends_SteamFriends008_GetFriendCount(struct w_stea return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends008_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) +CSteamID * __thiscall winISteamFriends_SteamFriends008_GetFriendByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends008_GetFriendByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iFriend = iFriend, .iFriendFlags = iFriendFlags, @@ -2759,11 +2759,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends008_GetFriendByIndex(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends008_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends008_GetFriendRelationship(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends008_GetFriendRelationship_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -2771,11 +2771,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends008_GetFriendRelationship(struc return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends008_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends008_GetFriendPersonaState(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends008_GetFriendPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -2783,11 +2783,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends008_GetFriendPersonaState(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends008_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) +const char * __thiscall winISteamFriends_SteamFriends008_GetFriendPersonaName(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends008_GetFriendPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -2795,11 +2795,11 @@ const char * __thiscall winISteamFriends_SteamFriends008_GetFriendPersonaName(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends008_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends008_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends008_GetFriendGamePlayed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; @@ -2808,11 +2808,11 @@ int8_t __thiscall winISteamFriends_SteamFriends008_GetFriendGamePlayed(struct w_ return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends008_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) +const char * __thiscall winISteamFriends_SteamFriends008_GetFriendPersonaNameHistory(struct w_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { struct ISteamFriends_SteamFriends008_GetFriendPersonaNameHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; @@ -2821,11 +2821,11 @@ const char * __thiscall winISteamFriends_SteamFriends008_GetFriendPersonaNameHis return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends008_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends008_HasFriend(struct w_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends008_HasFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; @@ -2834,22 +2834,22 @@ int8_t __thiscall winISteamFriends_SteamFriends008_HasFriend(struct w_steam_ifac return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends008_GetClanCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends008_GetClanCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends008_GetClanCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetClanCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends008_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) +CSteamID * __thiscall winISteamFriends_SteamFriends008_GetClanByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iClan) { struct ISteamFriends_SteamFriends008_GetClanByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iClan = iClan, }; @@ -2858,11 +2858,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends008_GetClanByIndex(struct w_s return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends008_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends008_GetClanName(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends008_GetClanName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -2870,11 +2870,11 @@ const char * __thiscall winISteamFriends_SteamFriends008_GetClanName(struct w_st return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends008_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends008_GetClanTag(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends008_GetClanTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -2882,11 +2882,11 @@ const char * __thiscall winISteamFriends_SteamFriends008_GetClanTag(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends008_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) +int32_t __thiscall winISteamFriends_SteamFriends008_GetFriendCountFromSource(struct w_iface *_this, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends008_GetFriendCountFromSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); @@ -2894,11 +2894,11 @@ int32_t __thiscall winISteamFriends_SteamFriends008_GetFriendCountFromSource(str return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends008_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends008_GetFriendFromSourceByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { struct ISteamFriends_SteamFriends008_GetFriendFromSourceByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDSource = steamIDSource, .iFriend = iFriend, @@ -2908,11 +2908,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends008_GetFriendFromSourceByInde return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends008_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends008_IsUserInSource(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends008_IsUserInSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; @@ -2921,11 +2921,11 @@ int8_t __thiscall winISteamFriends_SteamFriends008_IsUserInSource(struct w_steam return params._ret; } -void __thiscall winISteamFriends_SteamFriends008_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) +void __thiscall winISteamFriends_SteamFriends008_SetInGameVoiceSpeaking(struct w_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends008_SetInGameVoiceSpeaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; @@ -2933,11 +2933,11 @@ void __thiscall winISteamFriends_SteamFriends008_SetInGameVoiceSpeaking(struct w STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_SetInGameVoiceSpeaking, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends008_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) +void __thiscall winISteamFriends_SteamFriends008_ActivateGameOverlay(struct w_iface *_this, const char *pchDialog) { struct ISteamFriends_SteamFriends008_ActivateGameOverlay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); @@ -2945,11 +2945,11 @@ void __thiscall winISteamFriends_SteamFriends008_ActivateGameOverlay(struct w_st STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_ActivateGameOverlay, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends008_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) +void __thiscall winISteamFriends_SteamFriends008_ActivateGameOverlayToUser(struct w_iface *_this, const char *pchDialog, CSteamID steamID) { struct ISteamFriends_SteamFriends008_ActivateGameOverlayToUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; @@ -2958,11 +2958,11 @@ void __thiscall winISteamFriends_SteamFriends008_ActivateGameOverlayToUser(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_ActivateGameOverlayToUser, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) +void __thiscall winISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage(struct w_iface *_this, const char *pchURL) { struct ISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); @@ -2970,44 +2970,44 @@ void __thiscall winISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage(st STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_ActivateGameOverlayToWebPage, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends008_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamFriends_SteamFriends008_ActivateGameOverlayToStore(struct w_iface *_this, uint32_t nAppID) { struct ISteamFriends_SteamFriends008_ActivateGameOverlayToStore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_ActivateGameOverlayToStore, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends008_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) +void __thiscall winISteamFriends_SteamFriends008_SetPlayedWith(struct w_iface *_this, CSteamID steamIDUserPlayedWith) { struct ISteamFriends_SteamFriends008_SetPlayedWith_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_SetPlayedWith, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_ActivateGameOverlayInviteDialog, ¶ms ); } -int32_t __thiscall winISteamFriends_SteamFriends008_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends008_GetSmallFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends008_GetSmallFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -3015,11 +3015,11 @@ int32_t __thiscall winISteamFriends_SteamFriends008_GetSmallFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends008_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends008_GetMediumFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends008_GetMediumFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -3027,11 +3027,11 @@ int32_t __thiscall winISteamFriends_SteamFriends008_GetMediumFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends008_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends008_GetLargeFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends008_GetLargeFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -3039,11 +3039,11 @@ int32_t __thiscall winISteamFriends_SteamFriends008_GetLargeFriendAvatar(struct return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends008_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends008_RequestUserInformation(struct w_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends008_RequestUserInformation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; @@ -3052,11 +3052,11 @@ int8_t __thiscall winISteamFriends_SteamFriends008_RequestUserInformation(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends008_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamFriends_SteamFriends008_RequestClanOfficerList(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends008_RequestClanOfficerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -3064,11 +3064,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends008_RequestClanOfficerList(stru return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends008_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) +CSteamID * __thiscall winISteamFriends_SteamFriends008_GetClanOwner(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends008_GetClanOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; @@ -3077,11 +3077,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends008_GetClanOwner(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends008_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) +int32_t __thiscall winISteamFriends_SteamFriends008_GetClanOfficerCount(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends008_GetClanOfficerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -3089,11 +3089,11 @@ int32_t __thiscall winISteamFriends_SteamFriends008_GetClanOfficerCount(struct w return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends008_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) +CSteamID * __thiscall winISteamFriends_SteamFriends008_GetClanOfficerByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { struct ISteamFriends_SteamFriends008_GetClanOfficerByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, .iOfficer = iOfficer, @@ -3103,11 +3103,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends008_GetClanOfficerByIndex(str return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends008_GetUserRestrictions(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends008_GetUserRestrictions(struct w_iface *_this) { struct ISteamFriends_SteamFriends008_GetUserRestrictions_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends008_GetUserRestrictions, ¶ms ); @@ -3157,9 +3157,9 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends008_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamFriends_SteamFriends008(void *u_iface) +struct w_iface *create_winISteamFriends_SteamFriends008( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamFriends008"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends008"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamFriends_SteamFriends008_vtable, 34, "SteamFriends008"); r->u_iface = u_iface; @@ -3211,22 +3211,22 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends009_GetCoplayFriend, 12) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends009_GetFriendCoplayTime, 12) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends009_GetFriendCoplayGame, 12) -const char * __thiscall winISteamFriends_SteamFriends009_GetPersonaName(struct w_steam_iface *_this) +const char * __thiscall winISteamFriends_SteamFriends009_GetPersonaName(struct w_iface *_this) { struct ISteamFriends_SteamFriends009_GetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetPersonaName, ¶ms ); return params._ret; } -void __thiscall winISteamFriends_SteamFriends009_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) +void __thiscall winISteamFriends_SteamFriends009_SetPersonaName(struct w_iface *_this, const char *pchPersonaName) { struct ISteamFriends_SteamFriends009_SetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); @@ -3234,22 +3234,22 @@ void __thiscall winISteamFriends_SteamFriends009_SetPersonaName(struct w_steam_i STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_SetPersonaName, ¶ms ); } -uint32_t __thiscall winISteamFriends_SteamFriends009_GetPersonaState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends009_GetPersonaState(struct w_iface *_this) { struct ISteamFriends_SteamFriends009_GetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetPersonaState, ¶ms ); return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends009_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) +int32_t __thiscall winISteamFriends_SteamFriends009_GetFriendCount(struct w_iface *_this, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends009_GetFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); @@ -3257,11 +3257,11 @@ int32_t __thiscall winISteamFriends_SteamFriends009_GetFriendCount(struct w_stea return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends009_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) +CSteamID * __thiscall winISteamFriends_SteamFriends009_GetFriendByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends009_GetFriendByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iFriend = iFriend, .iFriendFlags = iFriendFlags, @@ -3271,11 +3271,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends009_GetFriendByIndex(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends009_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends009_GetFriendRelationship(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends009_GetFriendRelationship_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -3283,11 +3283,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends009_GetFriendRelationship(struc return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends009_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends009_GetFriendPersonaState(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends009_GetFriendPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -3295,11 +3295,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends009_GetFriendPersonaState(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends009_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) +const char * __thiscall winISteamFriends_SteamFriends009_GetFriendPersonaName(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends009_GetFriendPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -3307,11 +3307,11 @@ const char * __thiscall winISteamFriends_SteamFriends009_GetFriendPersonaName(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends009_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends009_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends009_GetFriendGamePlayed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; @@ -3320,11 +3320,11 @@ int8_t __thiscall winISteamFriends_SteamFriends009_GetFriendGamePlayed(struct w_ return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends009_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) +const char * __thiscall winISteamFriends_SteamFriends009_GetFriendPersonaNameHistory(struct w_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { struct ISteamFriends_SteamFriends009_GetFriendPersonaNameHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; @@ -3333,11 +3333,11 @@ const char * __thiscall winISteamFriends_SteamFriends009_GetFriendPersonaNameHis return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends009_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends009_HasFriend(struct w_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends009_HasFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; @@ -3346,22 +3346,22 @@ int8_t __thiscall winISteamFriends_SteamFriends009_HasFriend(struct w_steam_ifac return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends009_GetClanCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends009_GetClanCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends009_GetClanCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetClanCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends009_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) +CSteamID * __thiscall winISteamFriends_SteamFriends009_GetClanByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iClan) { struct ISteamFriends_SteamFriends009_GetClanByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iClan = iClan, }; @@ -3370,11 +3370,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends009_GetClanByIndex(struct w_s return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends009_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends009_GetClanName(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends009_GetClanName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -3382,11 +3382,11 @@ const char * __thiscall winISteamFriends_SteamFriends009_GetClanName(struct w_st return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends009_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends009_GetClanTag(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends009_GetClanTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -3394,11 +3394,11 @@ const char * __thiscall winISteamFriends_SteamFriends009_GetClanTag(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends009_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) +int32_t __thiscall winISteamFriends_SteamFriends009_GetFriendCountFromSource(struct w_iface *_this, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends009_GetFriendCountFromSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); @@ -3406,11 +3406,11 @@ int32_t __thiscall winISteamFriends_SteamFriends009_GetFriendCountFromSource(str return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends009_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends009_GetFriendFromSourceByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { struct ISteamFriends_SteamFriends009_GetFriendFromSourceByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDSource = steamIDSource, .iFriend = iFriend, @@ -3420,11 +3420,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends009_GetFriendFromSourceByInde return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends009_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends009_IsUserInSource(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends009_IsUserInSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; @@ -3433,11 +3433,11 @@ int8_t __thiscall winISteamFriends_SteamFriends009_IsUserInSource(struct w_steam return params._ret; } -void __thiscall winISteamFriends_SteamFriends009_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) +void __thiscall winISteamFriends_SteamFriends009_SetInGameVoiceSpeaking(struct w_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends009_SetInGameVoiceSpeaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; @@ -3445,11 +3445,11 @@ void __thiscall winISteamFriends_SteamFriends009_SetInGameVoiceSpeaking(struct w STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_SetInGameVoiceSpeaking, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends009_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) +void __thiscall winISteamFriends_SteamFriends009_ActivateGameOverlay(struct w_iface *_this, const char *pchDialog) { struct ISteamFriends_SteamFriends009_ActivateGameOverlay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); @@ -3457,11 +3457,11 @@ void __thiscall winISteamFriends_SteamFriends009_ActivateGameOverlay(struct w_st STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_ActivateGameOverlay, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends009_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) +void __thiscall winISteamFriends_SteamFriends009_ActivateGameOverlayToUser(struct w_iface *_this, const char *pchDialog, CSteamID steamID) { struct ISteamFriends_SteamFriends009_ActivateGameOverlayToUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; @@ -3470,11 +3470,11 @@ void __thiscall winISteamFriends_SteamFriends009_ActivateGameOverlayToUser(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_ActivateGameOverlayToUser, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) +void __thiscall winISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage(struct w_iface *_this, const char *pchURL) { struct ISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); @@ -3482,44 +3482,44 @@ void __thiscall winISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage(st STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_ActivateGameOverlayToWebPage, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends009_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamFriends_SteamFriends009_ActivateGameOverlayToStore(struct w_iface *_this, uint32_t nAppID) { struct ISteamFriends_SteamFriends009_ActivateGameOverlayToStore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_ActivateGameOverlayToStore, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends009_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) +void __thiscall winISteamFriends_SteamFriends009_SetPlayedWith(struct w_iface *_this, CSteamID steamIDUserPlayedWith) { struct ISteamFriends_SteamFriends009_SetPlayedWith_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_SetPlayedWith, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_ActivateGameOverlayInviteDialog, ¶ms ); } -int32_t __thiscall winISteamFriends_SteamFriends009_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends009_GetSmallFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends009_GetSmallFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -3527,11 +3527,11 @@ int32_t __thiscall winISteamFriends_SteamFriends009_GetSmallFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends009_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends009_GetMediumFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends009_GetMediumFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -3539,11 +3539,11 @@ int32_t __thiscall winISteamFriends_SteamFriends009_GetMediumFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends009_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends009_GetLargeFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends009_GetLargeFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -3551,11 +3551,11 @@ int32_t __thiscall winISteamFriends_SteamFriends009_GetLargeFriendAvatar(struct return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends009_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends009_RequestUserInformation(struct w_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends009_RequestUserInformation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; @@ -3564,11 +3564,11 @@ int8_t __thiscall winISteamFriends_SteamFriends009_RequestUserInformation(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends009_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamFriends_SteamFriends009_RequestClanOfficerList(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends009_RequestClanOfficerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -3576,11 +3576,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends009_RequestClanOfficerList(stru return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends009_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) +CSteamID * __thiscall winISteamFriends_SteamFriends009_GetClanOwner(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends009_GetClanOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; @@ -3589,11 +3589,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends009_GetClanOwner(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends009_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) +int32_t __thiscall winISteamFriends_SteamFriends009_GetClanOfficerCount(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends009_GetClanOfficerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -3601,11 +3601,11 @@ int32_t __thiscall winISteamFriends_SteamFriends009_GetClanOfficerCount(struct w return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends009_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) +CSteamID * __thiscall winISteamFriends_SteamFriends009_GetClanOfficerByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { struct ISteamFriends_SteamFriends009_GetClanOfficerByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, .iOfficer = iOfficer, @@ -3615,22 +3615,22 @@ CSteamID * __thiscall winISteamFriends_SteamFriends009_GetClanOfficerByIndex(str return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends009_GetUserRestrictions(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends009_GetUserRestrictions(struct w_iface *_this) { struct ISteamFriends_SteamFriends009_GetUserRestrictions_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetUserRestrictions, ¶ms ); return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends009_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamFriends_SteamFriends009_SetRichPresence(struct w_iface *_this, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends009_SetRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; @@ -3641,21 +3641,21 @@ int8_t __thiscall winISteamFriends_SteamFriends009_SetRichPresence(struct w_stea return params._ret; } -void __thiscall winISteamFriends_SteamFriends009_ClearRichPresence(struct w_steam_iface *_this) +void __thiscall winISteamFriends_SteamFriends009_ClearRichPresence(struct w_iface *_this) { struct ISteamFriends_SteamFriends009_ClearRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_ClearRichPresence, ¶ms ); } -const char * __thiscall winISteamFriends_SteamFriends009_GetFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) +const char * __thiscall winISteamFriends_SteamFriends009_GetFriendRichPresence(struct w_iface *_this, CSteamID steamIDFriend, const char *pchKey) { struct ISteamFriends_SteamFriends009_GetFriendRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; @@ -3665,11 +3665,11 @@ const char * __thiscall winISteamFriends_SteamFriends009_GetFriendRichPresence(s return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -3677,11 +3677,11 @@ int32_t __thiscall winISteamFriends_SteamFriends009_GetFriendRichPresenceKeyCoun return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iKey) +const char * __thiscall winISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex(struct w_iface *_this, CSteamID steamIDFriend, int32_t iKey) { struct ISteamFriends_SteamFriends009_GetFriendRichPresenceKeyByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iKey = iKey, }; @@ -3690,11 +3690,11 @@ const char * __thiscall winISteamFriends_SteamFriends009_GetFriendRichPresenceKe return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends009_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) +int8_t __thiscall winISteamFriends_SteamFriends009_InviteUserToGame(struct w_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { struct ISteamFriends_SteamFriends009_InviteUserToGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchConnectString = pchConnectString, }; @@ -3704,22 +3704,22 @@ int8_t __thiscall winISteamFriends_SteamFriends009_InviteUserToGame(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends009_GetCoplayFriendCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends009_GetCoplayFriendCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends009_GetCoplayFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends009_GetCoplayFriendCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends009_GetCoplayFriend(struct w_steam_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends009_GetCoplayFriend(struct w_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) { struct ISteamFriends_SteamFriends009_GetCoplayFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iCoplayFriend = iCoplayFriend, }; @@ -3728,11 +3728,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends009_GetCoplayFriend(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends009_GetFriendCoplayTime(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends009_GetFriendCoplayTime(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends009_GetFriendCoplayTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -3740,11 +3740,11 @@ int32_t __thiscall winISteamFriends_SteamFriends009_GetFriendCoplayTime(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends009_GetFriendCoplayGame(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends009_GetFriendCoplayGame(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends009_GetFriendCoplayGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -3805,9 +3805,9 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends009_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamFriends_SteamFriends009(void *u_iface) +struct w_iface *create_winISteamFriends_SteamFriends009( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamFriends009"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends009"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamFriends_SteamFriends009_vtable, 44, "SteamFriends009"); r->u_iface = u_iface; @@ -3874,22 +3874,22 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends010_SetListenForFriendsMess DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends010_ReplyToFriendMessage, 16) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends010_GetFriendMessage, 28) -const char * __thiscall winISteamFriends_SteamFriends010_GetPersonaName(struct w_steam_iface *_this) +const char * __thiscall winISteamFriends_SteamFriends010_GetPersonaName(struct w_iface *_this) { struct ISteamFriends_SteamFriends010_GetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetPersonaName, ¶ms ); return params._ret; } -void __thiscall winISteamFriends_SteamFriends010_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) +void __thiscall winISteamFriends_SteamFriends010_SetPersonaName(struct w_iface *_this, const char *pchPersonaName) { struct ISteamFriends_SteamFriends010_SetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); @@ -3897,22 +3897,22 @@ void __thiscall winISteamFriends_SteamFriends010_SetPersonaName(struct w_steam_i STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_SetPersonaName, ¶ms ); } -uint32_t __thiscall winISteamFriends_SteamFriends010_GetPersonaState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends010_GetPersonaState(struct w_iface *_this) { struct ISteamFriends_SteamFriends010_GetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetPersonaState, ¶ms ); return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) +int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendCount(struct w_iface *_this, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends010_GetFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); @@ -3920,11 +3920,11 @@ int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendCount(struct w_stea return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends010_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) +CSteamID * __thiscall winISteamFriends_SteamFriends010_GetFriendByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends010_GetFriendByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iFriend = iFriend, .iFriendFlags = iFriendFlags, @@ -3934,11 +3934,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends010_GetFriendByIndex(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends010_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends010_GetFriendRelationship(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends010_GetFriendRelationship_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -3946,11 +3946,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends010_GetFriendRelationship(struc return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends010_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends010_GetFriendPersonaState(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends010_GetFriendPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -3958,11 +3958,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends010_GetFriendPersonaState(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends010_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) +const char * __thiscall winISteamFriends_SteamFriends010_GetFriendPersonaName(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends010_GetFriendPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -3970,11 +3970,11 @@ const char * __thiscall winISteamFriends_SteamFriends010_GetFriendPersonaName(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends010_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends010_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends010_GetFriendGamePlayed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; @@ -3983,11 +3983,11 @@ int8_t __thiscall winISteamFriends_SteamFriends010_GetFriendGamePlayed(struct w_ return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends010_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) +const char * __thiscall winISteamFriends_SteamFriends010_GetFriendPersonaNameHistory(struct w_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { struct ISteamFriends_SteamFriends010_GetFriendPersonaNameHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; @@ -3996,11 +3996,11 @@ const char * __thiscall winISteamFriends_SteamFriends010_GetFriendPersonaNameHis return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends010_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends010_HasFriend(struct w_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends010_HasFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; @@ -4009,22 +4009,22 @@ int8_t __thiscall winISteamFriends_SteamFriends010_HasFriend(struct w_steam_ifac return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends010_GetClanCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends010_GetClanCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends010_GetClanCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetClanCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends010_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) +CSteamID * __thiscall winISteamFriends_SteamFriends010_GetClanByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iClan) { struct ISteamFriends_SteamFriends010_GetClanByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iClan = iClan, }; @@ -4033,11 +4033,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends010_GetClanByIndex(struct w_s return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends010_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends010_GetClanName(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends010_GetClanName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -4045,11 +4045,11 @@ const char * __thiscall winISteamFriends_SteamFriends010_GetClanName(struct w_st return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends010_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends010_GetClanTag(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends010_GetClanTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -4057,11 +4057,11 @@ const char * __thiscall winISteamFriends_SteamFriends010_GetClanTag(struct w_ste return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends010_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) +int8_t __thiscall winISteamFriends_SteamFriends010_GetClanActivityCounts(struct w_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { struct ISteamFriends_SteamFriends010_GetClanActivityCounts_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, .pnOnline = pnOnline, .pnInGame = pnInGame, @@ -4072,11 +4072,11 @@ int8_t __thiscall winISteamFriends_SteamFriends010_GetClanActivityCounts(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends010_DownloadClanActivityCounts(struct w_steam_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) +uint64_t __thiscall winISteamFriends_SteamFriends010_DownloadClanActivityCounts(struct w_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) { struct ISteamFriends_SteamFriends010_DownloadClanActivityCounts_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .psteamIDClans = psteamIDClans, .cClansToRequest = cClansToRequest, }; @@ -4085,11 +4085,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends010_DownloadClanActivityCounts( return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) +int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendCountFromSource(struct w_iface *_this, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends010_GetFriendCountFromSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); @@ -4097,11 +4097,11 @@ int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendCountFromSource(str return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends010_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends010_GetFriendFromSourceByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { struct ISteamFriends_SteamFriends010_GetFriendFromSourceByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDSource = steamIDSource, .iFriend = iFriend, @@ -4111,11 +4111,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends010_GetFriendFromSourceByInde return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends010_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends010_IsUserInSource(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends010_IsUserInSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; @@ -4124,11 +4124,11 @@ int8_t __thiscall winISteamFriends_SteamFriends010_IsUserInSource(struct w_steam return params._ret; } -void __thiscall winISteamFriends_SteamFriends010_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) +void __thiscall winISteamFriends_SteamFriends010_SetInGameVoiceSpeaking(struct w_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends010_SetInGameVoiceSpeaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; @@ -4136,11 +4136,11 @@ void __thiscall winISteamFriends_SteamFriends010_SetInGameVoiceSpeaking(struct w STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_SetInGameVoiceSpeaking, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends010_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) +void __thiscall winISteamFriends_SteamFriends010_ActivateGameOverlay(struct w_iface *_this, const char *pchDialog) { struct ISteamFriends_SteamFriends010_ActivateGameOverlay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); @@ -4148,11 +4148,11 @@ void __thiscall winISteamFriends_SteamFriends010_ActivateGameOverlay(struct w_st STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_ActivateGameOverlay, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends010_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) +void __thiscall winISteamFriends_SteamFriends010_ActivateGameOverlayToUser(struct w_iface *_this, const char *pchDialog, CSteamID steamID) { struct ISteamFriends_SteamFriends010_ActivateGameOverlayToUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; @@ -4161,11 +4161,11 @@ void __thiscall winISteamFriends_SteamFriends010_ActivateGameOverlayToUser(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_ActivateGameOverlayToUser, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) +void __thiscall winISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage(struct w_iface *_this, const char *pchURL) { struct ISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); @@ -4173,44 +4173,44 @@ void __thiscall winISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage(st STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_ActivateGameOverlayToWebPage, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends010_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamFriends_SteamFriends010_ActivateGameOverlayToStore(struct w_iface *_this, uint32_t nAppID) { struct ISteamFriends_SteamFriends010_ActivateGameOverlayToStore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_ActivateGameOverlayToStore, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends010_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) +void __thiscall winISteamFriends_SteamFriends010_SetPlayedWith(struct w_iface *_this, CSteamID steamIDUserPlayedWith) { struct ISteamFriends_SteamFriends010_SetPlayedWith_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_SetPlayedWith, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_ActivateGameOverlayInviteDialog, ¶ms ); } -int32_t __thiscall winISteamFriends_SteamFriends010_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends010_GetSmallFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends010_GetSmallFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -4218,11 +4218,11 @@ int32_t __thiscall winISteamFriends_SteamFriends010_GetSmallFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends010_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends010_GetMediumFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends010_GetMediumFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -4230,11 +4230,11 @@ int32_t __thiscall winISteamFriends_SteamFriends010_GetMediumFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends010_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends010_GetLargeFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends010_GetLargeFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -4242,11 +4242,11 @@ int32_t __thiscall winISteamFriends_SteamFriends010_GetLargeFriendAvatar(struct return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends010_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends010_RequestUserInformation(struct w_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends010_RequestUserInformation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; @@ -4255,11 +4255,11 @@ int8_t __thiscall winISteamFriends_SteamFriends010_RequestUserInformation(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends010_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamFriends_SteamFriends010_RequestClanOfficerList(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends010_RequestClanOfficerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -4267,11 +4267,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends010_RequestClanOfficerList(stru return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends010_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) +CSteamID * __thiscall winISteamFriends_SteamFriends010_GetClanOwner(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends010_GetClanOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; @@ -4280,11 +4280,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends010_GetClanOwner(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends010_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) +int32_t __thiscall winISteamFriends_SteamFriends010_GetClanOfficerCount(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends010_GetClanOfficerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -4292,11 +4292,11 @@ int32_t __thiscall winISteamFriends_SteamFriends010_GetClanOfficerCount(struct w return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends010_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) +CSteamID * __thiscall winISteamFriends_SteamFriends010_GetClanOfficerByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { struct ISteamFriends_SteamFriends010_GetClanOfficerByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, .iOfficer = iOfficer, @@ -4306,22 +4306,22 @@ CSteamID * __thiscall winISteamFriends_SteamFriends010_GetClanOfficerByIndex(str return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends010_GetUserRestrictions(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends010_GetUserRestrictions(struct w_iface *_this) { struct ISteamFriends_SteamFriends010_GetUserRestrictions_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetUserRestrictions, ¶ms ); return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends010_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamFriends_SteamFriends010_SetRichPresence(struct w_iface *_this, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends010_SetRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; @@ -4332,21 +4332,21 @@ int8_t __thiscall winISteamFriends_SteamFriends010_SetRichPresence(struct w_stea return params._ret; } -void __thiscall winISteamFriends_SteamFriends010_ClearRichPresence(struct w_steam_iface *_this) +void __thiscall winISteamFriends_SteamFriends010_ClearRichPresence(struct w_iface *_this) { struct ISteamFriends_SteamFriends010_ClearRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_ClearRichPresence, ¶ms ); } -const char * __thiscall winISteamFriends_SteamFriends010_GetFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) +const char * __thiscall winISteamFriends_SteamFriends010_GetFriendRichPresence(struct w_iface *_this, CSteamID steamIDFriend, const char *pchKey) { struct ISteamFriends_SteamFriends010_GetFriendRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; @@ -4356,11 +4356,11 @@ const char * __thiscall winISteamFriends_SteamFriends010_GetFriendRichPresence(s return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -4368,11 +4368,11 @@ int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendRichPresenceKeyCoun return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iKey) +const char * __thiscall winISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex(struct w_iface *_this, CSteamID steamIDFriend, int32_t iKey) { struct ISteamFriends_SteamFriends010_GetFriendRichPresenceKeyByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iKey = iKey, }; @@ -4381,11 +4381,11 @@ const char * __thiscall winISteamFriends_SteamFriends010_GetFriendRichPresenceKe return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends010_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) +int8_t __thiscall winISteamFriends_SteamFriends010_InviteUserToGame(struct w_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { struct ISteamFriends_SteamFriends010_InviteUserToGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchConnectString = pchConnectString, }; @@ -4395,22 +4395,22 @@ int8_t __thiscall winISteamFriends_SteamFriends010_InviteUserToGame(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends010_GetCoplayFriendCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends010_GetCoplayFriendCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends010_GetCoplayFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends010_GetCoplayFriendCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends010_GetCoplayFriend(struct w_steam_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends010_GetCoplayFriend(struct w_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) { struct ISteamFriends_SteamFriends010_GetCoplayFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iCoplayFriend = iCoplayFriend, }; @@ -4419,11 +4419,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends010_GetCoplayFriend(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendCoplayTime(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendCoplayTime(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends010_GetFriendCoplayTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -4431,11 +4431,11 @@ int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendCoplayTime(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends010_GetFriendCoplayGame(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends010_GetFriendCoplayGame(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends010_GetFriendCoplayGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -4443,11 +4443,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends010_GetFriendCoplayGame(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends010_JoinClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamFriends_SteamFriends010_JoinClanChatRoom(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends010_JoinClanChatRoom_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -4455,11 +4455,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends010_JoinClanChatRoom(struct w_s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends010_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends010_LeaveClanChatRoom(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends010_LeaveClanChatRoom_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -4467,11 +4467,11 @@ int8_t __thiscall winISteamFriends_SteamFriends010_LeaveClanChatRoom(struct w_st return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends010_GetClanChatMemberCount(struct w_steam_iface *_this, CSteamID steamIDClan) +int32_t __thiscall winISteamFriends_SteamFriends010_GetClanChatMemberCount(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends010_GetClanChatMemberCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -4479,11 +4479,11 @@ int32_t __thiscall winISteamFriends_SteamFriends010_GetClanChatMemberCount(struc return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends010_GetChatMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) +CSteamID * __thiscall winISteamFriends_SteamFriends010_GetChatMemberByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) { struct ISteamFriends_SteamFriends010_GetChatMemberByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, .iUser = iUser, @@ -4493,11 +4493,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends010_GetChatMemberByIndex(stru return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends010_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) +int8_t __thiscall winISteamFriends_SteamFriends010_SendClanChatMessage(struct w_iface *_this, CSteamID steamIDClanChat, const char *pchText) { struct ISteamFriends_SteamFriends010_SendClanChatMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .pchText = pchText, }; @@ -4507,11 +4507,11 @@ int8_t __thiscall winISteamFriends_SteamFriends010_SendClanChatMessage(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends010_GetClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, int32_t iMessage, void *prgchText, int32_t cchTextMax, uint32_t *_e, CSteamID *_f) +int32_t __thiscall winISteamFriends_SteamFriends010_GetClanChatMessage(struct w_iface *_this, CSteamID steamIDClanChat, int32_t iMessage, void *prgchText, int32_t cchTextMax, uint32_t *_e, CSteamID *_f) { struct ISteamFriends_SteamFriends010_GetClanChatMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .iMessage = iMessage, .prgchText = prgchText, @@ -4524,11 +4524,11 @@ int32_t __thiscall winISteamFriends_SteamFriends010_GetClanChatMessage(struct w_ return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends010_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) +int8_t __thiscall winISteamFriends_SteamFriends010_IsClanChatAdmin(struct w_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { struct ISteamFriends_SteamFriends010_IsClanChatAdmin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .steamIDUser = steamIDUser, }; @@ -4537,11 +4537,11 @@ int8_t __thiscall winISteamFriends_SteamFriends010_IsClanChatAdmin(struct w_stea return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -4549,11 +4549,11 @@ int8_t __thiscall winISteamFriends_SteamFriends010_IsClanChatWindowOpenInSteam(s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends010_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends010_OpenClanChatWindowInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends010_OpenClanChatWindowInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -4561,11 +4561,11 @@ int8_t __thiscall winISteamFriends_SteamFriends010_OpenClanChatWindowInSteam(str return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends010_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends010_CloseClanChatWindowInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends010_CloseClanChatWindowInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -4573,11 +4573,11 @@ int8_t __thiscall winISteamFriends_SteamFriends010_CloseClanChatWindowInSteam(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends010_SetListenForFriendsMessages(struct w_steam_iface *_this, int8_t bInterceptEnabled) +int8_t __thiscall winISteamFriends_SteamFriends010_SetListenForFriendsMessages(struct w_iface *_this, int8_t bInterceptEnabled) { struct ISteamFriends_SteamFriends010_SetListenForFriendsMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bInterceptEnabled = bInterceptEnabled, }; TRACE("%p\n", _this); @@ -4585,11 +4585,11 @@ int8_t __thiscall winISteamFriends_SteamFriends010_SetListenForFriendsMessages(s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends010_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) +int8_t __thiscall winISteamFriends_SteamFriends010_ReplyToFriendMessage(struct w_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { struct ISteamFriends_SteamFriends010_ReplyToFriendMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchMsgToSend = pchMsgToSend, }; @@ -4599,11 +4599,11 @@ int8_t __thiscall winISteamFriends_SteamFriends010_ReplyToFriendMessage(struct w return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iMessageID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamFriends_SteamFriends010_GetFriendMessage(struct w_iface *_this, CSteamID steamIDFriend, int32_t iMessageID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamFriends_SteamFriends010_GetFriendMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iMessageID = iMessageID, .pvData = pvData, @@ -4683,9 +4683,9 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends010_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamFriends_SteamFriends010(void *u_iface) +struct w_iface *create_winISteamFriends_SteamFriends010( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamFriends010"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends010"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamFriends_SteamFriends010_vtable, 59, "SteamFriends010"); r->u_iface = u_iface; @@ -4756,22 +4756,22 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends011_GetFollowerCount, 12) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends011_IsFollowing, 12) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends011_EnumerateFollowingList, 8) -const char * __thiscall winISteamFriends_SteamFriends011_GetPersonaName(struct w_steam_iface *_this) +const char * __thiscall winISteamFriends_SteamFriends011_GetPersonaName(struct w_iface *_this) { struct ISteamFriends_SteamFriends011_GetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetPersonaName, ¶ms ); return params._ret; } -void __thiscall winISteamFriends_SteamFriends011_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) +void __thiscall winISteamFriends_SteamFriends011_SetPersonaName(struct w_iface *_this, const char *pchPersonaName) { struct ISteamFriends_SteamFriends011_SetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); @@ -4779,22 +4779,22 @@ void __thiscall winISteamFriends_SteamFriends011_SetPersonaName(struct w_steam_i STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_SetPersonaName, ¶ms ); } -uint32_t __thiscall winISteamFriends_SteamFriends011_GetPersonaState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends011_GetPersonaState(struct w_iface *_this) { struct ISteamFriends_SteamFriends011_GetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetPersonaState, ¶ms ); return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) +int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendCount(struct w_iface *_this, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends011_GetFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); @@ -4802,11 +4802,11 @@ int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendCount(struct w_stea return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends011_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) +CSteamID * __thiscall winISteamFriends_SteamFriends011_GetFriendByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends011_GetFriendByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iFriend = iFriend, .iFriendFlags = iFriendFlags, @@ -4816,11 +4816,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends011_GetFriendByIndex(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends011_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends011_GetFriendRelationship(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends011_GetFriendRelationship_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -4828,11 +4828,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends011_GetFriendRelationship(struc return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends011_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends011_GetFriendPersonaState(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends011_GetFriendPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -4840,11 +4840,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends011_GetFriendPersonaState(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends011_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) +const char * __thiscall winISteamFriends_SteamFriends011_GetFriendPersonaName(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends011_GetFriendPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -4852,11 +4852,11 @@ const char * __thiscall winISteamFriends_SteamFriends011_GetFriendPersonaName(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends011_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends011_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends011_GetFriendGamePlayed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; @@ -4865,11 +4865,11 @@ int8_t __thiscall winISteamFriends_SteamFriends011_GetFriendGamePlayed(struct w_ return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends011_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) +const char * __thiscall winISteamFriends_SteamFriends011_GetFriendPersonaNameHistory(struct w_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { struct ISteamFriends_SteamFriends011_GetFriendPersonaNameHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; @@ -4878,11 +4878,11 @@ const char * __thiscall winISteamFriends_SteamFriends011_GetFriendPersonaNameHis return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends011_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends011_HasFriend(struct w_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends011_HasFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; @@ -4891,22 +4891,22 @@ int8_t __thiscall winISteamFriends_SteamFriends011_HasFriend(struct w_steam_ifac return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends011_GetClanCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends011_GetClanCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends011_GetClanCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetClanCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends011_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) +CSteamID * __thiscall winISteamFriends_SteamFriends011_GetClanByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iClan) { struct ISteamFriends_SteamFriends011_GetClanByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iClan = iClan, }; @@ -4915,11 +4915,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends011_GetClanByIndex(struct w_s return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends011_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends011_GetClanName(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends011_GetClanName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -4927,11 +4927,11 @@ const char * __thiscall winISteamFriends_SteamFriends011_GetClanName(struct w_st return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends011_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends011_GetClanTag(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends011_GetClanTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -4939,11 +4939,11 @@ const char * __thiscall winISteamFriends_SteamFriends011_GetClanTag(struct w_ste return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends011_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) +int8_t __thiscall winISteamFriends_SteamFriends011_GetClanActivityCounts(struct w_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { struct ISteamFriends_SteamFriends011_GetClanActivityCounts_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, .pnOnline = pnOnline, .pnInGame = pnInGame, @@ -4954,11 +4954,11 @@ int8_t __thiscall winISteamFriends_SteamFriends011_GetClanActivityCounts(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends011_DownloadClanActivityCounts(struct w_steam_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) +uint64_t __thiscall winISteamFriends_SteamFriends011_DownloadClanActivityCounts(struct w_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) { struct ISteamFriends_SteamFriends011_DownloadClanActivityCounts_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .psteamIDClans = psteamIDClans, .cClansToRequest = cClansToRequest, }; @@ -4967,11 +4967,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends011_DownloadClanActivityCounts( return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) +int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendCountFromSource(struct w_iface *_this, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends011_GetFriendCountFromSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); @@ -4979,11 +4979,11 @@ int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendCountFromSource(str return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends011_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends011_GetFriendFromSourceByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { struct ISteamFriends_SteamFriends011_GetFriendFromSourceByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDSource = steamIDSource, .iFriend = iFriend, @@ -4993,11 +4993,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends011_GetFriendFromSourceByInde return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends011_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends011_IsUserInSource(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends011_IsUserInSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; @@ -5006,11 +5006,11 @@ int8_t __thiscall winISteamFriends_SteamFriends011_IsUserInSource(struct w_steam return params._ret; } -void __thiscall winISteamFriends_SteamFriends011_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) +void __thiscall winISteamFriends_SteamFriends011_SetInGameVoiceSpeaking(struct w_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends011_SetInGameVoiceSpeaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; @@ -5018,11 +5018,11 @@ void __thiscall winISteamFriends_SteamFriends011_SetInGameVoiceSpeaking(struct w STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_SetInGameVoiceSpeaking, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends011_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) +void __thiscall winISteamFriends_SteamFriends011_ActivateGameOverlay(struct w_iface *_this, const char *pchDialog) { struct ISteamFriends_SteamFriends011_ActivateGameOverlay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); @@ -5030,11 +5030,11 @@ void __thiscall winISteamFriends_SteamFriends011_ActivateGameOverlay(struct w_st STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_ActivateGameOverlay, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends011_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) +void __thiscall winISteamFriends_SteamFriends011_ActivateGameOverlayToUser(struct w_iface *_this, const char *pchDialog, CSteamID steamID) { struct ISteamFriends_SteamFriends011_ActivateGameOverlayToUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; @@ -5043,11 +5043,11 @@ void __thiscall winISteamFriends_SteamFriends011_ActivateGameOverlayToUser(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_ActivateGameOverlayToUser, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) +void __thiscall winISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage(struct w_iface *_this, const char *pchURL) { struct ISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); @@ -5055,44 +5055,44 @@ void __thiscall winISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage(st STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_ActivateGameOverlayToWebPage, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends011_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamFriends_SteamFriends011_ActivateGameOverlayToStore(struct w_iface *_this, uint32_t nAppID) { struct ISteamFriends_SteamFriends011_ActivateGameOverlayToStore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_ActivateGameOverlayToStore, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends011_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) +void __thiscall winISteamFriends_SteamFriends011_SetPlayedWith(struct w_iface *_this, CSteamID steamIDUserPlayedWith) { struct ISteamFriends_SteamFriends011_SetPlayedWith_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_SetPlayedWith, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_ActivateGameOverlayInviteDialog, ¶ms ); } -int32_t __thiscall winISteamFriends_SteamFriends011_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends011_GetSmallFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends011_GetSmallFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -5100,11 +5100,11 @@ int32_t __thiscall winISteamFriends_SteamFriends011_GetSmallFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends011_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends011_GetMediumFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends011_GetMediumFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -5112,11 +5112,11 @@ int32_t __thiscall winISteamFriends_SteamFriends011_GetMediumFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends011_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends011_GetLargeFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends011_GetLargeFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -5124,11 +5124,11 @@ int32_t __thiscall winISteamFriends_SteamFriends011_GetLargeFriendAvatar(struct return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends011_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends011_RequestUserInformation(struct w_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends011_RequestUserInformation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; @@ -5137,11 +5137,11 @@ int8_t __thiscall winISteamFriends_SteamFriends011_RequestUserInformation(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends011_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamFriends_SteamFriends011_RequestClanOfficerList(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends011_RequestClanOfficerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -5149,11 +5149,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends011_RequestClanOfficerList(stru return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends011_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) +CSteamID * __thiscall winISteamFriends_SteamFriends011_GetClanOwner(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends011_GetClanOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; @@ -5162,11 +5162,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends011_GetClanOwner(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends011_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) +int32_t __thiscall winISteamFriends_SteamFriends011_GetClanOfficerCount(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends011_GetClanOfficerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -5174,11 +5174,11 @@ int32_t __thiscall winISteamFriends_SteamFriends011_GetClanOfficerCount(struct w return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends011_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) +CSteamID * __thiscall winISteamFriends_SteamFriends011_GetClanOfficerByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { struct ISteamFriends_SteamFriends011_GetClanOfficerByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, .iOfficer = iOfficer, @@ -5188,22 +5188,22 @@ CSteamID * __thiscall winISteamFriends_SteamFriends011_GetClanOfficerByIndex(str return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends011_GetUserRestrictions(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends011_GetUserRestrictions(struct w_iface *_this) { struct ISteamFriends_SteamFriends011_GetUserRestrictions_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetUserRestrictions, ¶ms ); return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends011_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamFriends_SteamFriends011_SetRichPresence(struct w_iface *_this, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends011_SetRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; @@ -5214,21 +5214,21 @@ int8_t __thiscall winISteamFriends_SteamFriends011_SetRichPresence(struct w_stea return params._ret; } -void __thiscall winISteamFriends_SteamFriends011_ClearRichPresence(struct w_steam_iface *_this) +void __thiscall winISteamFriends_SteamFriends011_ClearRichPresence(struct w_iface *_this) { struct ISteamFriends_SteamFriends011_ClearRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_ClearRichPresence, ¶ms ); } -const char * __thiscall winISteamFriends_SteamFriends011_GetFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) +const char * __thiscall winISteamFriends_SteamFriends011_GetFriendRichPresence(struct w_iface *_this, CSteamID steamIDFriend, const char *pchKey) { struct ISteamFriends_SteamFriends011_GetFriendRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; @@ -5238,11 +5238,11 @@ const char * __thiscall winISteamFriends_SteamFriends011_GetFriendRichPresence(s return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -5250,11 +5250,11 @@ int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendRichPresenceKeyCoun return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iKey) +const char * __thiscall winISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex(struct w_iface *_this, CSteamID steamIDFriend, int32_t iKey) { struct ISteamFriends_SteamFriends011_GetFriendRichPresenceKeyByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iKey = iKey, }; @@ -5263,22 +5263,22 @@ const char * __thiscall winISteamFriends_SteamFriends011_GetFriendRichPresenceKe return params._ret; } -void __thiscall winISteamFriends_SteamFriends011_RequestFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend) +void __thiscall winISteamFriends_SteamFriends011_RequestFriendRichPresence(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends011_RequestFriendRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_RequestFriendRichPresence, ¶ms ); } -int8_t __thiscall winISteamFriends_SteamFriends011_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) +int8_t __thiscall winISteamFriends_SteamFriends011_InviteUserToGame(struct w_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { struct ISteamFriends_SteamFriends011_InviteUserToGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchConnectString = pchConnectString, }; @@ -5288,22 +5288,22 @@ int8_t __thiscall winISteamFriends_SteamFriends011_InviteUserToGame(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends011_GetCoplayFriendCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends011_GetCoplayFriendCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends011_GetCoplayFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends011_GetCoplayFriendCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends011_GetCoplayFriend(struct w_steam_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends011_GetCoplayFriend(struct w_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) { struct ISteamFriends_SteamFriends011_GetCoplayFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iCoplayFriend = iCoplayFriend, }; @@ -5312,11 +5312,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends011_GetCoplayFriend(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendCoplayTime(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendCoplayTime(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends011_GetFriendCoplayTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -5324,11 +5324,11 @@ int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendCoplayTime(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends011_GetFriendCoplayGame(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends011_GetFriendCoplayGame(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends011_GetFriendCoplayGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -5336,11 +5336,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends011_GetFriendCoplayGame(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends011_JoinClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamFriends_SteamFriends011_JoinClanChatRoom(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends011_JoinClanChatRoom_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -5348,11 +5348,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends011_JoinClanChatRoom(struct w_s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends011_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends011_LeaveClanChatRoom(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends011_LeaveClanChatRoom_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -5360,11 +5360,11 @@ int8_t __thiscall winISteamFriends_SteamFriends011_LeaveClanChatRoom(struct w_st return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends011_GetClanChatMemberCount(struct w_steam_iface *_this, CSteamID steamIDClan) +int32_t __thiscall winISteamFriends_SteamFriends011_GetClanChatMemberCount(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends011_GetClanChatMemberCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -5372,11 +5372,11 @@ int32_t __thiscall winISteamFriends_SteamFriends011_GetClanChatMemberCount(struc return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends011_GetChatMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) +CSteamID * __thiscall winISteamFriends_SteamFriends011_GetChatMemberByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) { struct ISteamFriends_SteamFriends011_GetChatMemberByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, .iUser = iUser, @@ -5386,11 +5386,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends011_GetChatMemberByIndex(stru return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends011_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) +int8_t __thiscall winISteamFriends_SteamFriends011_SendClanChatMessage(struct w_iface *_this, CSteamID steamIDClanChat, const char *pchText) { struct ISteamFriends_SteamFriends011_SendClanChatMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .pchText = pchText, }; @@ -5400,11 +5400,11 @@ int8_t __thiscall winISteamFriends_SteamFriends011_SendClanChatMessage(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends011_GetClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, int32_t iMessage, void *prgchText, int32_t cchTextMax, uint32_t *_e, CSteamID *_f) +int32_t __thiscall winISteamFriends_SteamFriends011_GetClanChatMessage(struct w_iface *_this, CSteamID steamIDClanChat, int32_t iMessage, void *prgchText, int32_t cchTextMax, uint32_t *_e, CSteamID *_f) { struct ISteamFriends_SteamFriends011_GetClanChatMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .iMessage = iMessage, .prgchText = prgchText, @@ -5417,11 +5417,11 @@ int32_t __thiscall winISteamFriends_SteamFriends011_GetClanChatMessage(struct w_ return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends011_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) +int8_t __thiscall winISteamFriends_SteamFriends011_IsClanChatAdmin(struct w_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { struct ISteamFriends_SteamFriends011_IsClanChatAdmin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .steamIDUser = steamIDUser, }; @@ -5430,11 +5430,11 @@ int8_t __thiscall winISteamFriends_SteamFriends011_IsClanChatAdmin(struct w_stea return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -5442,11 +5442,11 @@ int8_t __thiscall winISteamFriends_SteamFriends011_IsClanChatWindowOpenInSteam(s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends011_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends011_OpenClanChatWindowInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends011_OpenClanChatWindowInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -5454,11 +5454,11 @@ int8_t __thiscall winISteamFriends_SteamFriends011_OpenClanChatWindowInSteam(str return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends011_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends011_CloseClanChatWindowInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends011_CloseClanChatWindowInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -5466,11 +5466,11 @@ int8_t __thiscall winISteamFriends_SteamFriends011_CloseClanChatWindowInSteam(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends011_SetListenForFriendsMessages(struct w_steam_iface *_this, int8_t bInterceptEnabled) +int8_t __thiscall winISteamFriends_SteamFriends011_SetListenForFriendsMessages(struct w_iface *_this, int8_t bInterceptEnabled) { struct ISteamFriends_SteamFriends011_SetListenForFriendsMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bInterceptEnabled = bInterceptEnabled, }; TRACE("%p\n", _this); @@ -5478,11 +5478,11 @@ int8_t __thiscall winISteamFriends_SteamFriends011_SetListenForFriendsMessages(s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends011_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) +int8_t __thiscall winISteamFriends_SteamFriends011_ReplyToFriendMessage(struct w_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { struct ISteamFriends_SteamFriends011_ReplyToFriendMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchMsgToSend = pchMsgToSend, }; @@ -5492,11 +5492,11 @@ int8_t __thiscall winISteamFriends_SteamFriends011_ReplyToFriendMessage(struct w return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iMessageID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendMessage(struct w_iface *_this, CSteamID steamIDFriend, int32_t iMessageID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamFriends_SteamFriends011_GetFriendMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iMessageID = iMessageID, .pvData = pvData, @@ -5508,11 +5508,11 @@ int32_t __thiscall winISteamFriends_SteamFriends011_GetFriendMessage(struct w_st return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends011_GetFollowerCount(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamFriends_SteamFriends011_GetFollowerCount(struct w_iface *_this, CSteamID steamID) { struct ISteamFriends_SteamFriends011_GetFollowerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -5520,11 +5520,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends011_GetFollowerCount(struct w_s return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends011_IsFollowing(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamFriends_SteamFriends011_IsFollowing(struct w_iface *_this, CSteamID steamID) { struct ISteamFriends_SteamFriends011_IsFollowing_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -5532,11 +5532,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends011_IsFollowing(struct w_steam_ return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends011_EnumerateFollowingList(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamFriends_SteamFriends011_EnumerateFollowingList(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamFriends_SteamFriends011_EnumerateFollowingList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -5616,9 +5616,9 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends011_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamFriends_SteamFriends011(void *u_iface) +struct w_iface *create_winISteamFriends_SteamFriends011( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamFriends011"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends011"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamFriends_SteamFriends011_vtable, 63, "SteamFriends011"); r->u_iface = u_iface; @@ -5689,22 +5689,22 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends012_GetFollowerCount, 12) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends012_IsFollowing, 12) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends012_EnumerateFollowingList, 8) -const char * __thiscall winISteamFriends_SteamFriends012_GetPersonaName(struct w_steam_iface *_this) +const char * __thiscall winISteamFriends_SteamFriends012_GetPersonaName(struct w_iface *_this) { struct ISteamFriends_SteamFriends012_GetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetPersonaName, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends012_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) +uint64_t __thiscall winISteamFriends_SteamFriends012_SetPersonaName(struct w_iface *_this, const char *pchPersonaName) { struct ISteamFriends_SteamFriends012_SetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); @@ -5713,22 +5713,22 @@ uint64_t __thiscall winISteamFriends_SteamFriends012_SetPersonaName(struct w_ste return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends012_GetPersonaState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends012_GetPersonaState(struct w_iface *_this) { struct ISteamFriends_SteamFriends012_GetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetPersonaState, ¶ms ); return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) +int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendCount(struct w_iface *_this, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends012_GetFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); @@ -5736,11 +5736,11 @@ int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendCount(struct w_stea return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends012_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) +CSteamID * __thiscall winISteamFriends_SteamFriends012_GetFriendByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends012_GetFriendByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iFriend = iFriend, .iFriendFlags = iFriendFlags, @@ -5750,11 +5750,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends012_GetFriendByIndex(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends012_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends012_GetFriendRelationship(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends012_GetFriendRelationship_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -5762,11 +5762,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends012_GetFriendRelationship(struc return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends012_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends012_GetFriendPersonaState(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends012_GetFriendPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -5774,11 +5774,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends012_GetFriendPersonaState(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends012_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) +const char * __thiscall winISteamFriends_SteamFriends012_GetFriendPersonaName(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends012_GetFriendPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -5786,11 +5786,11 @@ const char * __thiscall winISteamFriends_SteamFriends012_GetFriendPersonaName(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends012_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends012_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends012_GetFriendGamePlayed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; @@ -5799,11 +5799,11 @@ int8_t __thiscall winISteamFriends_SteamFriends012_GetFriendGamePlayed(struct w_ return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends012_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) +const char * __thiscall winISteamFriends_SteamFriends012_GetFriendPersonaNameHistory(struct w_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { struct ISteamFriends_SteamFriends012_GetFriendPersonaNameHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; @@ -5812,11 +5812,11 @@ const char * __thiscall winISteamFriends_SteamFriends012_GetFriendPersonaNameHis return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends012_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends012_HasFriend(struct w_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends012_HasFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; @@ -5825,22 +5825,22 @@ int8_t __thiscall winISteamFriends_SteamFriends012_HasFriend(struct w_steam_ifac return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends012_GetClanCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends012_GetClanCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends012_GetClanCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetClanCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends012_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) +CSteamID * __thiscall winISteamFriends_SteamFriends012_GetClanByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iClan) { struct ISteamFriends_SteamFriends012_GetClanByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iClan = iClan, }; @@ -5849,11 +5849,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends012_GetClanByIndex(struct w_s return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends012_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends012_GetClanName(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends012_GetClanName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -5861,11 +5861,11 @@ const char * __thiscall winISteamFriends_SteamFriends012_GetClanName(struct w_st return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends012_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends012_GetClanTag(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends012_GetClanTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -5873,11 +5873,11 @@ const char * __thiscall winISteamFriends_SteamFriends012_GetClanTag(struct w_ste return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends012_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) +int8_t __thiscall winISteamFriends_SteamFriends012_GetClanActivityCounts(struct w_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { struct ISteamFriends_SteamFriends012_GetClanActivityCounts_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, .pnOnline = pnOnline, .pnInGame = pnInGame, @@ -5888,11 +5888,11 @@ int8_t __thiscall winISteamFriends_SteamFriends012_GetClanActivityCounts(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends012_DownloadClanActivityCounts(struct w_steam_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) +uint64_t __thiscall winISteamFriends_SteamFriends012_DownloadClanActivityCounts(struct w_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) { struct ISteamFriends_SteamFriends012_DownloadClanActivityCounts_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .psteamIDClans = psteamIDClans, .cClansToRequest = cClansToRequest, }; @@ -5901,11 +5901,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends012_DownloadClanActivityCounts( return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) +int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendCountFromSource(struct w_iface *_this, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends012_GetFriendCountFromSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); @@ -5913,11 +5913,11 @@ int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendCountFromSource(str return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends012_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends012_GetFriendFromSourceByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { struct ISteamFriends_SteamFriends012_GetFriendFromSourceByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDSource = steamIDSource, .iFriend = iFriend, @@ -5927,11 +5927,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends012_GetFriendFromSourceByInde return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends012_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends012_IsUserInSource(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends012_IsUserInSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; @@ -5940,11 +5940,11 @@ int8_t __thiscall winISteamFriends_SteamFriends012_IsUserInSource(struct w_steam return params._ret; } -void __thiscall winISteamFriends_SteamFriends012_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) +void __thiscall winISteamFriends_SteamFriends012_SetInGameVoiceSpeaking(struct w_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends012_SetInGameVoiceSpeaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; @@ -5952,11 +5952,11 @@ void __thiscall winISteamFriends_SteamFriends012_SetInGameVoiceSpeaking(struct w STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_SetInGameVoiceSpeaking, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends012_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) +void __thiscall winISteamFriends_SteamFriends012_ActivateGameOverlay(struct w_iface *_this, const char *pchDialog) { struct ISteamFriends_SteamFriends012_ActivateGameOverlay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); @@ -5964,11 +5964,11 @@ void __thiscall winISteamFriends_SteamFriends012_ActivateGameOverlay(struct w_st STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_ActivateGameOverlay, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends012_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) +void __thiscall winISteamFriends_SteamFriends012_ActivateGameOverlayToUser(struct w_iface *_this, const char *pchDialog, CSteamID steamID) { struct ISteamFriends_SteamFriends012_ActivateGameOverlayToUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; @@ -5977,11 +5977,11 @@ void __thiscall winISteamFriends_SteamFriends012_ActivateGameOverlayToUser(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_ActivateGameOverlayToUser, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) +void __thiscall winISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage(struct w_iface *_this, const char *pchURL) { struct ISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); @@ -5989,44 +5989,44 @@ void __thiscall winISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage(st STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_ActivateGameOverlayToWebPage, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends012_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamFriends_SteamFriends012_ActivateGameOverlayToStore(struct w_iface *_this, uint32_t nAppID) { struct ISteamFriends_SteamFriends012_ActivateGameOverlayToStore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_ActivateGameOverlayToStore, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends012_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) +void __thiscall winISteamFriends_SteamFriends012_SetPlayedWith(struct w_iface *_this, CSteamID steamIDUserPlayedWith) { struct ISteamFriends_SteamFriends012_SetPlayedWith_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_SetPlayedWith, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_ActivateGameOverlayInviteDialog, ¶ms ); } -int32_t __thiscall winISteamFriends_SteamFriends012_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends012_GetSmallFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends012_GetSmallFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -6034,11 +6034,11 @@ int32_t __thiscall winISteamFriends_SteamFriends012_GetSmallFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends012_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends012_GetMediumFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends012_GetMediumFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -6046,11 +6046,11 @@ int32_t __thiscall winISteamFriends_SteamFriends012_GetMediumFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends012_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends012_GetLargeFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends012_GetLargeFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -6058,11 +6058,11 @@ int32_t __thiscall winISteamFriends_SteamFriends012_GetLargeFriendAvatar(struct return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends012_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends012_RequestUserInformation(struct w_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends012_RequestUserInformation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; @@ -6071,11 +6071,11 @@ int8_t __thiscall winISteamFriends_SteamFriends012_RequestUserInformation(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends012_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamFriends_SteamFriends012_RequestClanOfficerList(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends012_RequestClanOfficerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -6083,11 +6083,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends012_RequestClanOfficerList(stru return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends012_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) +CSteamID * __thiscall winISteamFriends_SteamFriends012_GetClanOwner(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends012_GetClanOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; @@ -6096,11 +6096,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends012_GetClanOwner(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends012_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) +int32_t __thiscall winISteamFriends_SteamFriends012_GetClanOfficerCount(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends012_GetClanOfficerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -6108,11 +6108,11 @@ int32_t __thiscall winISteamFriends_SteamFriends012_GetClanOfficerCount(struct w return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends012_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) +CSteamID * __thiscall winISteamFriends_SteamFriends012_GetClanOfficerByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { struct ISteamFriends_SteamFriends012_GetClanOfficerByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, .iOfficer = iOfficer, @@ -6122,22 +6122,22 @@ CSteamID * __thiscall winISteamFriends_SteamFriends012_GetClanOfficerByIndex(str return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends012_GetUserRestrictions(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends012_GetUserRestrictions(struct w_iface *_this) { struct ISteamFriends_SteamFriends012_GetUserRestrictions_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetUserRestrictions, ¶ms ); return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends012_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamFriends_SteamFriends012_SetRichPresence(struct w_iface *_this, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends012_SetRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; @@ -6148,21 +6148,21 @@ int8_t __thiscall winISteamFriends_SteamFriends012_SetRichPresence(struct w_stea return params._ret; } -void __thiscall winISteamFriends_SteamFriends012_ClearRichPresence(struct w_steam_iface *_this) +void __thiscall winISteamFriends_SteamFriends012_ClearRichPresence(struct w_iface *_this) { struct ISteamFriends_SteamFriends012_ClearRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_ClearRichPresence, ¶ms ); } -const char * __thiscall winISteamFriends_SteamFriends012_GetFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) +const char * __thiscall winISteamFriends_SteamFriends012_GetFriendRichPresence(struct w_iface *_this, CSteamID steamIDFriend, const char *pchKey) { struct ISteamFriends_SteamFriends012_GetFriendRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; @@ -6172,11 +6172,11 @@ const char * __thiscall winISteamFriends_SteamFriends012_GetFriendRichPresence(s return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -6184,11 +6184,11 @@ int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendRichPresenceKeyCoun return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iKey) +const char * __thiscall winISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex(struct w_iface *_this, CSteamID steamIDFriend, int32_t iKey) { struct ISteamFriends_SteamFriends012_GetFriendRichPresenceKeyByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iKey = iKey, }; @@ -6197,22 +6197,22 @@ const char * __thiscall winISteamFriends_SteamFriends012_GetFriendRichPresenceKe return params._ret; } -void __thiscall winISteamFriends_SteamFriends012_RequestFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend) +void __thiscall winISteamFriends_SteamFriends012_RequestFriendRichPresence(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends012_RequestFriendRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_RequestFriendRichPresence, ¶ms ); } -int8_t __thiscall winISteamFriends_SteamFriends012_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) +int8_t __thiscall winISteamFriends_SteamFriends012_InviteUserToGame(struct w_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { struct ISteamFriends_SteamFriends012_InviteUserToGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchConnectString = pchConnectString, }; @@ -6222,22 +6222,22 @@ int8_t __thiscall winISteamFriends_SteamFriends012_InviteUserToGame(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends012_GetCoplayFriendCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends012_GetCoplayFriendCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends012_GetCoplayFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends012_GetCoplayFriendCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends012_GetCoplayFriend(struct w_steam_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends012_GetCoplayFriend(struct w_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) { struct ISteamFriends_SteamFriends012_GetCoplayFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iCoplayFriend = iCoplayFriend, }; @@ -6246,11 +6246,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends012_GetCoplayFriend(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendCoplayTime(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendCoplayTime(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends012_GetFriendCoplayTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -6258,11 +6258,11 @@ int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendCoplayTime(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends012_GetFriendCoplayGame(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends012_GetFriendCoplayGame(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends012_GetFriendCoplayGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -6270,11 +6270,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends012_GetFriendCoplayGame(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends012_JoinClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamFriends_SteamFriends012_JoinClanChatRoom(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends012_JoinClanChatRoom_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -6282,11 +6282,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends012_JoinClanChatRoom(struct w_s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends012_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends012_LeaveClanChatRoom(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends012_LeaveClanChatRoom_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -6294,11 +6294,11 @@ int8_t __thiscall winISteamFriends_SteamFriends012_LeaveClanChatRoom(struct w_st return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends012_GetClanChatMemberCount(struct w_steam_iface *_this, CSteamID steamIDClan) +int32_t __thiscall winISteamFriends_SteamFriends012_GetClanChatMemberCount(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends012_GetClanChatMemberCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -6306,11 +6306,11 @@ int32_t __thiscall winISteamFriends_SteamFriends012_GetClanChatMemberCount(struc return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends012_GetChatMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) +CSteamID * __thiscall winISteamFriends_SteamFriends012_GetChatMemberByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) { struct ISteamFriends_SteamFriends012_GetChatMemberByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, .iUser = iUser, @@ -6320,11 +6320,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends012_GetChatMemberByIndex(stru return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends012_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) +int8_t __thiscall winISteamFriends_SteamFriends012_SendClanChatMessage(struct w_iface *_this, CSteamID steamIDClanChat, const char *pchText) { struct ISteamFriends_SteamFriends012_SendClanChatMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .pchText = pchText, }; @@ -6334,11 +6334,11 @@ int8_t __thiscall winISteamFriends_SteamFriends012_SendClanChatMessage(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends012_GetClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, int32_t iMessage, void *prgchText, int32_t cchTextMax, uint32_t *_e, CSteamID *_f) +int32_t __thiscall winISteamFriends_SteamFriends012_GetClanChatMessage(struct w_iface *_this, CSteamID steamIDClanChat, int32_t iMessage, void *prgchText, int32_t cchTextMax, uint32_t *_e, CSteamID *_f) { struct ISteamFriends_SteamFriends012_GetClanChatMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .iMessage = iMessage, .prgchText = prgchText, @@ -6351,11 +6351,11 @@ int32_t __thiscall winISteamFriends_SteamFriends012_GetClanChatMessage(struct w_ return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends012_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) +int8_t __thiscall winISteamFriends_SteamFriends012_IsClanChatAdmin(struct w_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { struct ISteamFriends_SteamFriends012_IsClanChatAdmin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .steamIDUser = steamIDUser, }; @@ -6364,11 +6364,11 @@ int8_t __thiscall winISteamFriends_SteamFriends012_IsClanChatAdmin(struct w_stea return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -6376,11 +6376,11 @@ int8_t __thiscall winISteamFriends_SteamFriends012_IsClanChatWindowOpenInSteam(s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends012_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends012_OpenClanChatWindowInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends012_OpenClanChatWindowInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -6388,11 +6388,11 @@ int8_t __thiscall winISteamFriends_SteamFriends012_OpenClanChatWindowInSteam(str return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends012_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends012_CloseClanChatWindowInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends012_CloseClanChatWindowInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -6400,11 +6400,11 @@ int8_t __thiscall winISteamFriends_SteamFriends012_CloseClanChatWindowInSteam(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends012_SetListenForFriendsMessages(struct w_steam_iface *_this, int8_t bInterceptEnabled) +int8_t __thiscall winISteamFriends_SteamFriends012_SetListenForFriendsMessages(struct w_iface *_this, int8_t bInterceptEnabled) { struct ISteamFriends_SteamFriends012_SetListenForFriendsMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bInterceptEnabled = bInterceptEnabled, }; TRACE("%p\n", _this); @@ -6412,11 +6412,11 @@ int8_t __thiscall winISteamFriends_SteamFriends012_SetListenForFriendsMessages(s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends012_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) +int8_t __thiscall winISteamFriends_SteamFriends012_ReplyToFriendMessage(struct w_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { struct ISteamFriends_SteamFriends012_ReplyToFriendMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchMsgToSend = pchMsgToSend, }; @@ -6426,11 +6426,11 @@ int8_t __thiscall winISteamFriends_SteamFriends012_ReplyToFriendMessage(struct w return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iMessageID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendMessage(struct w_iface *_this, CSteamID steamIDFriend, int32_t iMessageID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamFriends_SteamFriends012_GetFriendMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iMessageID = iMessageID, .pvData = pvData, @@ -6442,11 +6442,11 @@ int32_t __thiscall winISteamFriends_SteamFriends012_GetFriendMessage(struct w_st return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends012_GetFollowerCount(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamFriends_SteamFriends012_GetFollowerCount(struct w_iface *_this, CSteamID steamID) { struct ISteamFriends_SteamFriends012_GetFollowerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -6454,11 +6454,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends012_GetFollowerCount(struct w_s return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends012_IsFollowing(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamFriends_SteamFriends012_IsFollowing(struct w_iface *_this, CSteamID steamID) { struct ISteamFriends_SteamFriends012_IsFollowing_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -6466,11 +6466,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends012_IsFollowing(struct w_steam_ return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends012_EnumerateFollowingList(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamFriends_SteamFriends012_EnumerateFollowingList(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamFriends_SteamFriends012_EnumerateFollowingList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -6550,9 +6550,9 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends012_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamFriends_SteamFriends012(void *u_iface) +struct w_iface *create_winISteamFriends_SteamFriends012( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamFriends012"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends012"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamFriends_SteamFriends012_vtable, 63, "SteamFriends012"); r->u_iface = u_iface; @@ -6623,22 +6623,22 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends013_GetFollowerCount, 12) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends013_IsFollowing, 12) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends013_EnumerateFollowingList, 8) -const char * __thiscall winISteamFriends_SteamFriends013_GetPersonaName(struct w_steam_iface *_this) +const char * __thiscall winISteamFriends_SteamFriends013_GetPersonaName(struct w_iface *_this) { struct ISteamFriends_SteamFriends013_GetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetPersonaName, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends013_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) +uint64_t __thiscall winISteamFriends_SteamFriends013_SetPersonaName(struct w_iface *_this, const char *pchPersonaName) { struct ISteamFriends_SteamFriends013_SetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); @@ -6647,22 +6647,22 @@ uint64_t __thiscall winISteamFriends_SteamFriends013_SetPersonaName(struct w_ste return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends013_GetPersonaState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends013_GetPersonaState(struct w_iface *_this) { struct ISteamFriends_SteamFriends013_GetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetPersonaState, ¶ms ); return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) +int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendCount(struct w_iface *_this, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends013_GetFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); @@ -6670,11 +6670,11 @@ int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendCount(struct w_stea return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends013_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) +CSteamID * __thiscall winISteamFriends_SteamFriends013_GetFriendByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends013_GetFriendByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iFriend = iFriend, .iFriendFlags = iFriendFlags, @@ -6684,11 +6684,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends013_GetFriendByIndex(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends013_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends013_GetFriendRelationship(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends013_GetFriendRelationship_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -6696,11 +6696,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends013_GetFriendRelationship(struc return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends013_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends013_GetFriendPersonaState(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends013_GetFriendPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -6708,11 +6708,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends013_GetFriendPersonaState(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends013_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) +const char * __thiscall winISteamFriends_SteamFriends013_GetFriendPersonaName(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends013_GetFriendPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -6720,11 +6720,11 @@ const char * __thiscall winISteamFriends_SteamFriends013_GetFriendPersonaName(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends013_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends013_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends013_GetFriendGamePlayed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; @@ -6733,11 +6733,11 @@ int8_t __thiscall winISteamFriends_SteamFriends013_GetFriendGamePlayed(struct w_ return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends013_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) +const char * __thiscall winISteamFriends_SteamFriends013_GetFriendPersonaNameHistory(struct w_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { struct ISteamFriends_SteamFriends013_GetFriendPersonaNameHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; @@ -6746,11 +6746,11 @@ const char * __thiscall winISteamFriends_SteamFriends013_GetFriendPersonaNameHis return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends013_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends013_HasFriend(struct w_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends013_HasFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; @@ -6759,22 +6759,22 @@ int8_t __thiscall winISteamFriends_SteamFriends013_HasFriend(struct w_steam_ifac return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends013_GetClanCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends013_GetClanCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends013_GetClanCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetClanCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends013_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) +CSteamID * __thiscall winISteamFriends_SteamFriends013_GetClanByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iClan) { struct ISteamFriends_SteamFriends013_GetClanByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iClan = iClan, }; @@ -6783,11 +6783,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends013_GetClanByIndex(struct w_s return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends013_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends013_GetClanName(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends013_GetClanName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -6795,11 +6795,11 @@ const char * __thiscall winISteamFriends_SteamFriends013_GetClanName(struct w_st return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends013_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends013_GetClanTag(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends013_GetClanTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -6807,11 +6807,11 @@ const char * __thiscall winISteamFriends_SteamFriends013_GetClanTag(struct w_ste return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends013_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) +int8_t __thiscall winISteamFriends_SteamFriends013_GetClanActivityCounts(struct w_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { struct ISteamFriends_SteamFriends013_GetClanActivityCounts_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, .pnOnline = pnOnline, .pnInGame = pnInGame, @@ -6822,11 +6822,11 @@ int8_t __thiscall winISteamFriends_SteamFriends013_GetClanActivityCounts(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends013_DownloadClanActivityCounts(struct w_steam_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) +uint64_t __thiscall winISteamFriends_SteamFriends013_DownloadClanActivityCounts(struct w_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) { struct ISteamFriends_SteamFriends013_DownloadClanActivityCounts_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .psteamIDClans = psteamIDClans, .cClansToRequest = cClansToRequest, }; @@ -6835,11 +6835,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends013_DownloadClanActivityCounts( return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) +int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendCountFromSource(struct w_iface *_this, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends013_GetFriendCountFromSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); @@ -6847,11 +6847,11 @@ int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendCountFromSource(str return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends013_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends013_GetFriendFromSourceByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { struct ISteamFriends_SteamFriends013_GetFriendFromSourceByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDSource = steamIDSource, .iFriend = iFriend, @@ -6861,11 +6861,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends013_GetFriendFromSourceByInde return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends013_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends013_IsUserInSource(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends013_IsUserInSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; @@ -6874,11 +6874,11 @@ int8_t __thiscall winISteamFriends_SteamFriends013_IsUserInSource(struct w_steam return params._ret; } -void __thiscall winISteamFriends_SteamFriends013_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) +void __thiscall winISteamFriends_SteamFriends013_SetInGameVoiceSpeaking(struct w_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends013_SetInGameVoiceSpeaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; @@ -6886,11 +6886,11 @@ void __thiscall winISteamFriends_SteamFriends013_SetInGameVoiceSpeaking(struct w STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_SetInGameVoiceSpeaking, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) +void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlay(struct w_iface *_this, const char *pchDialog) { struct ISteamFriends_SteamFriends013_ActivateGameOverlay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); @@ -6898,11 +6898,11 @@ void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlay(struct w_st STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_ActivateGameOverlay, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) +void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlayToUser(struct w_iface *_this, const char *pchDialog, CSteamID steamID) { struct ISteamFriends_SteamFriends013_ActivateGameOverlayToUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; @@ -6911,11 +6911,11 @@ void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlayToUser(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_ActivateGameOverlayToUser, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) +void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage(struct w_iface *_this, const char *pchURL) { struct ISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); @@ -6923,11 +6923,11 @@ void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage(st STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_ActivateGameOverlayToWebPage, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID, uint32_t eFlag) +void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlayToStore(struct w_iface *_this, uint32_t nAppID, uint32_t eFlag) { struct ISteamFriends_SteamFriends013_ActivateGameOverlayToStore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .eFlag = eFlag, }; @@ -6935,33 +6935,33 @@ void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlayToStore(stru STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_ActivateGameOverlayToStore, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends013_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) +void __thiscall winISteamFriends_SteamFriends013_SetPlayedWith(struct w_iface *_this, CSteamID steamIDUserPlayedWith) { struct ISteamFriends_SteamFriends013_SetPlayedWith_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_SetPlayedWith, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_ActivateGameOverlayInviteDialog, ¶ms ); } -int32_t __thiscall winISteamFriends_SteamFriends013_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends013_GetSmallFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends013_GetSmallFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -6969,11 +6969,11 @@ int32_t __thiscall winISteamFriends_SteamFriends013_GetSmallFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends013_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends013_GetMediumFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends013_GetMediumFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -6981,11 +6981,11 @@ int32_t __thiscall winISteamFriends_SteamFriends013_GetMediumFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends013_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends013_GetLargeFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends013_GetLargeFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -6993,11 +6993,11 @@ int32_t __thiscall winISteamFriends_SteamFriends013_GetLargeFriendAvatar(struct return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends013_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends013_RequestUserInformation(struct w_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends013_RequestUserInformation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; @@ -7006,11 +7006,11 @@ int8_t __thiscall winISteamFriends_SteamFriends013_RequestUserInformation(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends013_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamFriends_SteamFriends013_RequestClanOfficerList(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends013_RequestClanOfficerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -7018,11 +7018,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends013_RequestClanOfficerList(stru return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends013_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) +CSteamID * __thiscall winISteamFriends_SteamFriends013_GetClanOwner(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends013_GetClanOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; @@ -7031,11 +7031,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends013_GetClanOwner(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends013_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) +int32_t __thiscall winISteamFriends_SteamFriends013_GetClanOfficerCount(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends013_GetClanOfficerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -7043,11 +7043,11 @@ int32_t __thiscall winISteamFriends_SteamFriends013_GetClanOfficerCount(struct w return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends013_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) +CSteamID * __thiscall winISteamFriends_SteamFriends013_GetClanOfficerByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { struct ISteamFriends_SteamFriends013_GetClanOfficerByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, .iOfficer = iOfficer, @@ -7057,22 +7057,22 @@ CSteamID * __thiscall winISteamFriends_SteamFriends013_GetClanOfficerByIndex(str return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends013_GetUserRestrictions(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends013_GetUserRestrictions(struct w_iface *_this) { struct ISteamFriends_SteamFriends013_GetUserRestrictions_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetUserRestrictions, ¶ms ); return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends013_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamFriends_SteamFriends013_SetRichPresence(struct w_iface *_this, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends013_SetRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; @@ -7083,21 +7083,21 @@ int8_t __thiscall winISteamFriends_SteamFriends013_SetRichPresence(struct w_stea return params._ret; } -void __thiscall winISteamFriends_SteamFriends013_ClearRichPresence(struct w_steam_iface *_this) +void __thiscall winISteamFriends_SteamFriends013_ClearRichPresence(struct w_iface *_this) { struct ISteamFriends_SteamFriends013_ClearRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_ClearRichPresence, ¶ms ); } -const char * __thiscall winISteamFriends_SteamFriends013_GetFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) +const char * __thiscall winISteamFriends_SteamFriends013_GetFriendRichPresence(struct w_iface *_this, CSteamID steamIDFriend, const char *pchKey) { struct ISteamFriends_SteamFriends013_GetFriendRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; @@ -7107,11 +7107,11 @@ const char * __thiscall winISteamFriends_SteamFriends013_GetFriendRichPresence(s return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -7119,11 +7119,11 @@ int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendRichPresenceKeyCoun return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iKey) +const char * __thiscall winISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex(struct w_iface *_this, CSteamID steamIDFriend, int32_t iKey) { struct ISteamFriends_SteamFriends013_GetFriendRichPresenceKeyByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iKey = iKey, }; @@ -7132,22 +7132,22 @@ const char * __thiscall winISteamFriends_SteamFriends013_GetFriendRichPresenceKe return params._ret; } -void __thiscall winISteamFriends_SteamFriends013_RequestFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend) +void __thiscall winISteamFriends_SteamFriends013_RequestFriendRichPresence(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends013_RequestFriendRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_RequestFriendRichPresence, ¶ms ); } -int8_t __thiscall winISteamFriends_SteamFriends013_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) +int8_t __thiscall winISteamFriends_SteamFriends013_InviteUserToGame(struct w_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { struct ISteamFriends_SteamFriends013_InviteUserToGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchConnectString = pchConnectString, }; @@ -7157,22 +7157,22 @@ int8_t __thiscall winISteamFriends_SteamFriends013_InviteUserToGame(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends013_GetCoplayFriendCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends013_GetCoplayFriendCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends013_GetCoplayFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends013_GetCoplayFriendCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends013_GetCoplayFriend(struct w_steam_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends013_GetCoplayFriend(struct w_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) { struct ISteamFriends_SteamFriends013_GetCoplayFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iCoplayFriend = iCoplayFriend, }; @@ -7181,11 +7181,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends013_GetCoplayFriend(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendCoplayTime(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendCoplayTime(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends013_GetFriendCoplayTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -7193,11 +7193,11 @@ int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendCoplayTime(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends013_GetFriendCoplayGame(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends013_GetFriendCoplayGame(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends013_GetFriendCoplayGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -7205,11 +7205,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends013_GetFriendCoplayGame(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends013_JoinClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamFriends_SteamFriends013_JoinClanChatRoom(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends013_JoinClanChatRoom_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -7217,11 +7217,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends013_JoinClanChatRoom(struct w_s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends013_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends013_LeaveClanChatRoom(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends013_LeaveClanChatRoom_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -7229,11 +7229,11 @@ int8_t __thiscall winISteamFriends_SteamFriends013_LeaveClanChatRoom(struct w_st return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends013_GetClanChatMemberCount(struct w_steam_iface *_this, CSteamID steamIDClan) +int32_t __thiscall winISteamFriends_SteamFriends013_GetClanChatMemberCount(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends013_GetClanChatMemberCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -7241,11 +7241,11 @@ int32_t __thiscall winISteamFriends_SteamFriends013_GetClanChatMemberCount(struc return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends013_GetChatMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) +CSteamID * __thiscall winISteamFriends_SteamFriends013_GetChatMemberByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) { struct ISteamFriends_SteamFriends013_GetChatMemberByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, .iUser = iUser, @@ -7255,11 +7255,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends013_GetChatMemberByIndex(stru return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends013_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) +int8_t __thiscall winISteamFriends_SteamFriends013_SendClanChatMessage(struct w_iface *_this, CSteamID steamIDClanChat, const char *pchText) { struct ISteamFriends_SteamFriends013_SendClanChatMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .pchText = pchText, }; @@ -7269,11 +7269,11 @@ int8_t __thiscall winISteamFriends_SteamFriends013_SendClanChatMessage(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends013_GetClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, int32_t iMessage, void *prgchText, int32_t cchTextMax, uint32_t *_e, CSteamID *_f) +int32_t __thiscall winISteamFriends_SteamFriends013_GetClanChatMessage(struct w_iface *_this, CSteamID steamIDClanChat, int32_t iMessage, void *prgchText, int32_t cchTextMax, uint32_t *_e, CSteamID *_f) { struct ISteamFriends_SteamFriends013_GetClanChatMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .iMessage = iMessage, .prgchText = prgchText, @@ -7286,11 +7286,11 @@ int32_t __thiscall winISteamFriends_SteamFriends013_GetClanChatMessage(struct w_ return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends013_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) +int8_t __thiscall winISteamFriends_SteamFriends013_IsClanChatAdmin(struct w_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { struct ISteamFriends_SteamFriends013_IsClanChatAdmin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .steamIDUser = steamIDUser, }; @@ -7299,11 +7299,11 @@ int8_t __thiscall winISteamFriends_SteamFriends013_IsClanChatAdmin(struct w_stea return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -7311,11 +7311,11 @@ int8_t __thiscall winISteamFriends_SteamFriends013_IsClanChatWindowOpenInSteam(s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends013_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends013_OpenClanChatWindowInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends013_OpenClanChatWindowInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -7323,11 +7323,11 @@ int8_t __thiscall winISteamFriends_SteamFriends013_OpenClanChatWindowInSteam(str return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends013_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends013_CloseClanChatWindowInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends013_CloseClanChatWindowInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -7335,11 +7335,11 @@ int8_t __thiscall winISteamFriends_SteamFriends013_CloseClanChatWindowInSteam(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends013_SetListenForFriendsMessages(struct w_steam_iface *_this, int8_t bInterceptEnabled) +int8_t __thiscall winISteamFriends_SteamFriends013_SetListenForFriendsMessages(struct w_iface *_this, int8_t bInterceptEnabled) { struct ISteamFriends_SteamFriends013_SetListenForFriendsMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bInterceptEnabled = bInterceptEnabled, }; TRACE("%p\n", _this); @@ -7347,11 +7347,11 @@ int8_t __thiscall winISteamFriends_SteamFriends013_SetListenForFriendsMessages(s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends013_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) +int8_t __thiscall winISteamFriends_SteamFriends013_ReplyToFriendMessage(struct w_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { struct ISteamFriends_SteamFriends013_ReplyToFriendMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchMsgToSend = pchMsgToSend, }; @@ -7361,11 +7361,11 @@ int8_t __thiscall winISteamFriends_SteamFriends013_ReplyToFriendMessage(struct w return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iMessageID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendMessage(struct w_iface *_this, CSteamID steamIDFriend, int32_t iMessageID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamFriends_SteamFriends013_GetFriendMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iMessageID = iMessageID, .pvData = pvData, @@ -7377,11 +7377,11 @@ int32_t __thiscall winISteamFriends_SteamFriends013_GetFriendMessage(struct w_st return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends013_GetFollowerCount(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamFriends_SteamFriends013_GetFollowerCount(struct w_iface *_this, CSteamID steamID) { struct ISteamFriends_SteamFriends013_GetFollowerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -7389,11 +7389,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends013_GetFollowerCount(struct w_s return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends013_IsFollowing(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamFriends_SteamFriends013_IsFollowing(struct w_iface *_this, CSteamID steamID) { struct ISteamFriends_SteamFriends013_IsFollowing_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -7401,11 +7401,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends013_IsFollowing(struct w_steam_ return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends013_EnumerateFollowingList(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamFriends_SteamFriends013_EnumerateFollowingList(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamFriends_SteamFriends013_EnumerateFollowingList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -7485,9 +7485,9 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends013_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamFriends_SteamFriends013(void *u_iface) +struct w_iface *create_winISteamFriends_SteamFriends013( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamFriends013"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends013"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamFriends_SteamFriends013_vtable, 63, "SteamFriends013"); r->u_iface = u_iface; @@ -7559,22 +7559,22 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends014_GetFollowerCount, 12) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends014_IsFollowing, 12) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends014_EnumerateFollowingList, 8) -const char * __thiscall winISteamFriends_SteamFriends014_GetPersonaName(struct w_steam_iface *_this) +const char * __thiscall winISteamFriends_SteamFriends014_GetPersonaName(struct w_iface *_this) { struct ISteamFriends_SteamFriends014_GetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetPersonaName, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends014_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) +uint64_t __thiscall winISteamFriends_SteamFriends014_SetPersonaName(struct w_iface *_this, const char *pchPersonaName) { struct ISteamFriends_SteamFriends014_SetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); @@ -7583,22 +7583,22 @@ uint64_t __thiscall winISteamFriends_SteamFriends014_SetPersonaName(struct w_ste return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends014_GetPersonaState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends014_GetPersonaState(struct w_iface *_this) { struct ISteamFriends_SteamFriends014_GetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetPersonaState, ¶ms ); return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) +int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendCount(struct w_iface *_this, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends014_GetFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); @@ -7606,11 +7606,11 @@ int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendCount(struct w_stea return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends014_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) +CSteamID * __thiscall winISteamFriends_SteamFriends014_GetFriendByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends014_GetFriendByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iFriend = iFriend, .iFriendFlags = iFriendFlags, @@ -7620,11 +7620,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends014_GetFriendByIndex(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends014_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends014_GetFriendRelationship(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends014_GetFriendRelationship_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -7632,11 +7632,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends014_GetFriendRelationship(struc return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends014_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends014_GetFriendPersonaState(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends014_GetFriendPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -7644,11 +7644,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends014_GetFriendPersonaState(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends014_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) +const char * __thiscall winISteamFriends_SteamFriends014_GetFriendPersonaName(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends014_GetFriendPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -7656,11 +7656,11 @@ const char * __thiscall winISteamFriends_SteamFriends014_GetFriendPersonaName(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends014_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends014_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends014_GetFriendGamePlayed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; @@ -7669,11 +7669,11 @@ int8_t __thiscall winISteamFriends_SteamFriends014_GetFriendGamePlayed(struct w_ return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends014_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) +const char * __thiscall winISteamFriends_SteamFriends014_GetFriendPersonaNameHistory(struct w_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { struct ISteamFriends_SteamFriends014_GetFriendPersonaNameHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; @@ -7682,11 +7682,11 @@ const char * __thiscall winISteamFriends_SteamFriends014_GetFriendPersonaNameHis return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends014_GetPlayerNickname(struct w_steam_iface *_this, CSteamID steamIDPlayer) +const char * __thiscall winISteamFriends_SteamFriends014_GetPlayerNickname(struct w_iface *_this, CSteamID steamIDPlayer) { struct ISteamFriends_SteamFriends014_GetPlayerNickname_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDPlayer = steamIDPlayer, }; TRACE("%p\n", _this); @@ -7694,11 +7694,11 @@ const char * __thiscall winISteamFriends_SteamFriends014_GetPlayerNickname(struc return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends014_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends014_HasFriend(struct w_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends014_HasFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; @@ -7707,22 +7707,22 @@ int8_t __thiscall winISteamFriends_SteamFriends014_HasFriend(struct w_steam_ifac return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends014_GetClanCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends014_GetClanCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends014_GetClanCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetClanCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends014_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) +CSteamID * __thiscall winISteamFriends_SteamFriends014_GetClanByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iClan) { struct ISteamFriends_SteamFriends014_GetClanByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iClan = iClan, }; @@ -7731,11 +7731,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends014_GetClanByIndex(struct w_s return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends014_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends014_GetClanName(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends014_GetClanName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -7743,11 +7743,11 @@ const char * __thiscall winISteamFriends_SteamFriends014_GetClanName(struct w_st return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends014_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends014_GetClanTag(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends014_GetClanTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -7755,11 +7755,11 @@ const char * __thiscall winISteamFriends_SteamFriends014_GetClanTag(struct w_ste return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends014_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) +int8_t __thiscall winISteamFriends_SteamFriends014_GetClanActivityCounts(struct w_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { struct ISteamFriends_SteamFriends014_GetClanActivityCounts_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, .pnOnline = pnOnline, .pnInGame = pnInGame, @@ -7770,11 +7770,11 @@ int8_t __thiscall winISteamFriends_SteamFriends014_GetClanActivityCounts(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends014_DownloadClanActivityCounts(struct w_steam_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) +uint64_t __thiscall winISteamFriends_SteamFriends014_DownloadClanActivityCounts(struct w_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) { struct ISteamFriends_SteamFriends014_DownloadClanActivityCounts_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .psteamIDClans = psteamIDClans, .cClansToRequest = cClansToRequest, }; @@ -7783,11 +7783,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends014_DownloadClanActivityCounts( return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) +int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendCountFromSource(struct w_iface *_this, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends014_GetFriendCountFromSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); @@ -7795,11 +7795,11 @@ int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendCountFromSource(str return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends014_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends014_GetFriendFromSourceByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { struct ISteamFriends_SteamFriends014_GetFriendFromSourceByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDSource = steamIDSource, .iFriend = iFriend, @@ -7809,11 +7809,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends014_GetFriendFromSourceByInde return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends014_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends014_IsUserInSource(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends014_IsUserInSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; @@ -7822,11 +7822,11 @@ int8_t __thiscall winISteamFriends_SteamFriends014_IsUserInSource(struct w_steam return params._ret; } -void __thiscall winISteamFriends_SteamFriends014_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) +void __thiscall winISteamFriends_SteamFriends014_SetInGameVoiceSpeaking(struct w_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends014_SetInGameVoiceSpeaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; @@ -7834,11 +7834,11 @@ void __thiscall winISteamFriends_SteamFriends014_SetInGameVoiceSpeaking(struct w STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_SetInGameVoiceSpeaking, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) +void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlay(struct w_iface *_this, const char *pchDialog) { struct ISteamFriends_SteamFriends014_ActivateGameOverlay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); @@ -7846,11 +7846,11 @@ void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlay(struct w_st STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_ActivateGameOverlay, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) +void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlayToUser(struct w_iface *_this, const char *pchDialog, CSteamID steamID) { struct ISteamFriends_SteamFriends014_ActivateGameOverlayToUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; @@ -7859,11 +7859,11 @@ void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlayToUser(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_ActivateGameOverlayToUser, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) +void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage(struct w_iface *_this, const char *pchURL) { struct ISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); @@ -7871,11 +7871,11 @@ void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage(st STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_ActivateGameOverlayToWebPage, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID, uint32_t eFlag) +void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlayToStore(struct w_iface *_this, uint32_t nAppID, uint32_t eFlag) { struct ISteamFriends_SteamFriends014_ActivateGameOverlayToStore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .eFlag = eFlag, }; @@ -7883,33 +7883,33 @@ void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlayToStore(stru STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_ActivateGameOverlayToStore, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends014_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) +void __thiscall winISteamFriends_SteamFriends014_SetPlayedWith(struct w_iface *_this, CSteamID steamIDUserPlayedWith) { struct ISteamFriends_SteamFriends014_SetPlayedWith_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_SetPlayedWith, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_ActivateGameOverlayInviteDialog, ¶ms ); } -int32_t __thiscall winISteamFriends_SteamFriends014_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends014_GetSmallFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends014_GetSmallFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -7917,11 +7917,11 @@ int32_t __thiscall winISteamFriends_SteamFriends014_GetSmallFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends014_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends014_GetMediumFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends014_GetMediumFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -7929,11 +7929,11 @@ int32_t __thiscall winISteamFriends_SteamFriends014_GetMediumFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends014_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends014_GetLargeFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends014_GetLargeFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -7941,11 +7941,11 @@ int32_t __thiscall winISteamFriends_SteamFriends014_GetLargeFriendAvatar(struct return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends014_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends014_RequestUserInformation(struct w_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends014_RequestUserInformation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; @@ -7954,11 +7954,11 @@ int8_t __thiscall winISteamFriends_SteamFriends014_RequestUserInformation(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends014_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamFriends_SteamFriends014_RequestClanOfficerList(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends014_RequestClanOfficerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -7966,11 +7966,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends014_RequestClanOfficerList(stru return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends014_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) +CSteamID * __thiscall winISteamFriends_SteamFriends014_GetClanOwner(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends014_GetClanOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; @@ -7979,11 +7979,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends014_GetClanOwner(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends014_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) +int32_t __thiscall winISteamFriends_SteamFriends014_GetClanOfficerCount(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends014_GetClanOfficerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -7991,11 +7991,11 @@ int32_t __thiscall winISteamFriends_SteamFriends014_GetClanOfficerCount(struct w return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends014_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) +CSteamID * __thiscall winISteamFriends_SteamFriends014_GetClanOfficerByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { struct ISteamFriends_SteamFriends014_GetClanOfficerByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, .iOfficer = iOfficer, @@ -8005,22 +8005,22 @@ CSteamID * __thiscall winISteamFriends_SteamFriends014_GetClanOfficerByIndex(str return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends014_GetUserRestrictions(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends014_GetUserRestrictions(struct w_iface *_this) { struct ISteamFriends_SteamFriends014_GetUserRestrictions_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetUserRestrictions, ¶ms ); return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends014_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamFriends_SteamFriends014_SetRichPresence(struct w_iface *_this, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends014_SetRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; @@ -8031,21 +8031,21 @@ int8_t __thiscall winISteamFriends_SteamFriends014_SetRichPresence(struct w_stea return params._ret; } -void __thiscall winISteamFriends_SteamFriends014_ClearRichPresence(struct w_steam_iface *_this) +void __thiscall winISteamFriends_SteamFriends014_ClearRichPresence(struct w_iface *_this) { struct ISteamFriends_SteamFriends014_ClearRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_ClearRichPresence, ¶ms ); } -const char * __thiscall winISteamFriends_SteamFriends014_GetFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) +const char * __thiscall winISteamFriends_SteamFriends014_GetFriendRichPresence(struct w_iface *_this, CSteamID steamIDFriend, const char *pchKey) { struct ISteamFriends_SteamFriends014_GetFriendRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; @@ -8055,11 +8055,11 @@ const char * __thiscall winISteamFriends_SteamFriends014_GetFriendRichPresence(s return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -8067,11 +8067,11 @@ int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendRichPresenceKeyCoun return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iKey) +const char * __thiscall winISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex(struct w_iface *_this, CSteamID steamIDFriend, int32_t iKey) { struct ISteamFriends_SteamFriends014_GetFriendRichPresenceKeyByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iKey = iKey, }; @@ -8080,22 +8080,22 @@ const char * __thiscall winISteamFriends_SteamFriends014_GetFriendRichPresenceKe return params._ret; } -void __thiscall winISteamFriends_SteamFriends014_RequestFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend) +void __thiscall winISteamFriends_SteamFriends014_RequestFriendRichPresence(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends014_RequestFriendRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_RequestFriendRichPresence, ¶ms ); } -int8_t __thiscall winISteamFriends_SteamFriends014_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) +int8_t __thiscall winISteamFriends_SteamFriends014_InviteUserToGame(struct w_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { struct ISteamFriends_SteamFriends014_InviteUserToGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchConnectString = pchConnectString, }; @@ -8105,22 +8105,22 @@ int8_t __thiscall winISteamFriends_SteamFriends014_InviteUserToGame(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends014_GetCoplayFriendCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends014_GetCoplayFriendCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends014_GetCoplayFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends014_GetCoplayFriendCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends014_GetCoplayFriend(struct w_steam_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends014_GetCoplayFriend(struct w_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) { struct ISteamFriends_SteamFriends014_GetCoplayFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iCoplayFriend = iCoplayFriend, }; @@ -8129,11 +8129,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends014_GetCoplayFriend(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendCoplayTime(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendCoplayTime(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends014_GetFriendCoplayTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -8141,11 +8141,11 @@ int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendCoplayTime(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends014_GetFriendCoplayGame(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends014_GetFriendCoplayGame(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends014_GetFriendCoplayGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -8153,11 +8153,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends014_GetFriendCoplayGame(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends014_JoinClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamFriends_SteamFriends014_JoinClanChatRoom(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends014_JoinClanChatRoom_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -8165,11 +8165,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends014_JoinClanChatRoom(struct w_s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends014_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends014_LeaveClanChatRoom(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends014_LeaveClanChatRoom_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -8177,11 +8177,11 @@ int8_t __thiscall winISteamFriends_SteamFriends014_LeaveClanChatRoom(struct w_st return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends014_GetClanChatMemberCount(struct w_steam_iface *_this, CSteamID steamIDClan) +int32_t __thiscall winISteamFriends_SteamFriends014_GetClanChatMemberCount(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends014_GetClanChatMemberCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -8189,11 +8189,11 @@ int32_t __thiscall winISteamFriends_SteamFriends014_GetClanChatMemberCount(struc return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends014_GetChatMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) +CSteamID * __thiscall winISteamFriends_SteamFriends014_GetChatMemberByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) { struct ISteamFriends_SteamFriends014_GetChatMemberByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, .iUser = iUser, @@ -8203,11 +8203,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends014_GetChatMemberByIndex(stru return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends014_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) +int8_t __thiscall winISteamFriends_SteamFriends014_SendClanChatMessage(struct w_iface *_this, CSteamID steamIDClanChat, const char *pchText) { struct ISteamFriends_SteamFriends014_SendClanChatMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .pchText = pchText, }; @@ -8217,11 +8217,11 @@ int8_t __thiscall winISteamFriends_SteamFriends014_SendClanChatMessage(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends014_GetClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, int32_t iMessage, void *prgchText, int32_t cchTextMax, uint32_t *peChatEntryType, CSteamID *psteamidChatter) +int32_t __thiscall winISteamFriends_SteamFriends014_GetClanChatMessage(struct w_iface *_this, CSteamID steamIDClanChat, int32_t iMessage, void *prgchText, int32_t cchTextMax, uint32_t *peChatEntryType, CSteamID *psteamidChatter) { struct ISteamFriends_SteamFriends014_GetClanChatMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .iMessage = iMessage, .prgchText = prgchText, @@ -8234,11 +8234,11 @@ int32_t __thiscall winISteamFriends_SteamFriends014_GetClanChatMessage(struct w_ return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends014_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) +int8_t __thiscall winISteamFriends_SteamFriends014_IsClanChatAdmin(struct w_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { struct ISteamFriends_SteamFriends014_IsClanChatAdmin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .steamIDUser = steamIDUser, }; @@ -8247,11 +8247,11 @@ int8_t __thiscall winISteamFriends_SteamFriends014_IsClanChatAdmin(struct w_stea return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -8259,11 +8259,11 @@ int8_t __thiscall winISteamFriends_SteamFriends014_IsClanChatWindowOpenInSteam(s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends014_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends014_OpenClanChatWindowInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends014_OpenClanChatWindowInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -8271,11 +8271,11 @@ int8_t __thiscall winISteamFriends_SteamFriends014_OpenClanChatWindowInSteam(str return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends014_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends014_CloseClanChatWindowInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends014_CloseClanChatWindowInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -8283,11 +8283,11 @@ int8_t __thiscall winISteamFriends_SteamFriends014_CloseClanChatWindowInSteam(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends014_SetListenForFriendsMessages(struct w_steam_iface *_this, int8_t bInterceptEnabled) +int8_t __thiscall winISteamFriends_SteamFriends014_SetListenForFriendsMessages(struct w_iface *_this, int8_t bInterceptEnabled) { struct ISteamFriends_SteamFriends014_SetListenForFriendsMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bInterceptEnabled = bInterceptEnabled, }; TRACE("%p\n", _this); @@ -8295,11 +8295,11 @@ int8_t __thiscall winISteamFriends_SteamFriends014_SetListenForFriendsMessages(s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends014_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) +int8_t __thiscall winISteamFriends_SteamFriends014_ReplyToFriendMessage(struct w_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { struct ISteamFriends_SteamFriends014_ReplyToFriendMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchMsgToSend = pchMsgToSend, }; @@ -8309,11 +8309,11 @@ int8_t __thiscall winISteamFriends_SteamFriends014_ReplyToFriendMessage(struct w return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iMessageID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendMessage(struct w_iface *_this, CSteamID steamIDFriend, int32_t iMessageID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamFriends_SteamFriends014_GetFriendMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iMessageID = iMessageID, .pvData = pvData, @@ -8325,11 +8325,11 @@ int32_t __thiscall winISteamFriends_SteamFriends014_GetFriendMessage(struct w_st return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends014_GetFollowerCount(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamFriends_SteamFriends014_GetFollowerCount(struct w_iface *_this, CSteamID steamID) { struct ISteamFriends_SteamFriends014_GetFollowerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -8337,11 +8337,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends014_GetFollowerCount(struct w_s return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends014_IsFollowing(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamFriends_SteamFriends014_IsFollowing(struct w_iface *_this, CSteamID steamID) { struct ISteamFriends_SteamFriends014_IsFollowing_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -8349,11 +8349,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends014_IsFollowing(struct w_steam_ return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends014_EnumerateFollowingList(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamFriends_SteamFriends014_EnumerateFollowingList(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamFriends_SteamFriends014_EnumerateFollowingList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -8434,9 +8434,9 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends014_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamFriends_SteamFriends014(void *u_iface) +struct w_iface *create_winISteamFriends_SteamFriends014( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamFriends014"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends014"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamFriends_SteamFriends014_vtable, 64, "SteamFriends014"); r->u_iface = u_iface; @@ -8516,22 +8516,22 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends015_EnumerateFollowingList, DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends015_IsClanPublic, 12) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends015_IsClanOfficialGameGroup, 12) -const char * __thiscall winISteamFriends_SteamFriends015_GetPersonaName(struct w_steam_iface *_this) +const char * __thiscall winISteamFriends_SteamFriends015_GetPersonaName(struct w_iface *_this) { struct ISteamFriends_SteamFriends015_GetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetPersonaName, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends015_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) +uint64_t __thiscall winISteamFriends_SteamFriends015_SetPersonaName(struct w_iface *_this, const char *pchPersonaName) { struct ISteamFriends_SteamFriends015_SetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); @@ -8540,22 +8540,22 @@ uint64_t __thiscall winISteamFriends_SteamFriends015_SetPersonaName(struct w_ste return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends015_GetPersonaState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends015_GetPersonaState(struct w_iface *_this) { struct ISteamFriends_SteamFriends015_GetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetPersonaState, ¶ms ); return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) +int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendCount(struct w_iface *_this, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends015_GetFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); @@ -8563,11 +8563,11 @@ int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendCount(struct w_stea return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends015_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) +CSteamID * __thiscall winISteamFriends_SteamFriends015_GetFriendByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends015_GetFriendByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iFriend = iFriend, .iFriendFlags = iFriendFlags, @@ -8577,11 +8577,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends015_GetFriendByIndex(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends015_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends015_GetFriendRelationship(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends015_GetFriendRelationship_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -8589,11 +8589,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends015_GetFriendRelationship(struc return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends015_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends015_GetFriendPersonaState(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends015_GetFriendPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -8601,11 +8601,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends015_GetFriendPersonaState(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends015_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) +const char * __thiscall winISteamFriends_SteamFriends015_GetFriendPersonaName(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends015_GetFriendPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -8613,11 +8613,11 @@ const char * __thiscall winISteamFriends_SteamFriends015_GetFriendPersonaName(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends015_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends015_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends015_GetFriendGamePlayed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; @@ -8626,11 +8626,11 @@ int8_t __thiscall winISteamFriends_SteamFriends015_GetFriendGamePlayed(struct w_ return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends015_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) +const char * __thiscall winISteamFriends_SteamFriends015_GetFriendPersonaNameHistory(struct w_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { struct ISteamFriends_SteamFriends015_GetFriendPersonaNameHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; @@ -8639,11 +8639,11 @@ const char * __thiscall winISteamFriends_SteamFriends015_GetFriendPersonaNameHis return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendSteamLevel(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendSteamLevel(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends015_GetFriendSteamLevel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -8651,11 +8651,11 @@ int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendSteamLevel(struct w return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends015_GetPlayerNickname(struct w_steam_iface *_this, CSteamID steamIDPlayer) +const char * __thiscall winISteamFriends_SteamFriends015_GetPlayerNickname(struct w_iface *_this, CSteamID steamIDPlayer) { struct ISteamFriends_SteamFriends015_GetPlayerNickname_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDPlayer = steamIDPlayer, }; TRACE("%p\n", _this); @@ -8663,22 +8663,22 @@ const char * __thiscall winISteamFriends_SteamFriends015_GetPlayerNickname(struc return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends015_GetFriendsGroupCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendsGroupCount, ¶ms ); return params._ret; } -int16_t __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex(struct w_steam_iface *_this, int32_t iFG) +int16_t __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex(struct w_iface *_this, int32_t iFG) { struct ISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFG = iFG, }; TRACE("%p\n", _this); @@ -8686,11 +8686,11 @@ int16_t __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupIDByIndex(str return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupName(struct w_steam_iface *_this, int16_t friendsGroupID) +const char * __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupName(struct w_iface *_this, int16_t friendsGroupID) { struct ISteamFriends_SteamFriends015_GetFriendsGroupName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .friendsGroupID = friendsGroupID, }; TRACE("%p\n", _this); @@ -8698,11 +8698,11 @@ const char * __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupName(str return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupMembersCount(struct w_steam_iface *_this, int16_t friendsGroupID) +int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupMembersCount(struct w_iface *_this, int16_t friendsGroupID) { struct ISteamFriends_SteamFriends015_GetFriendsGroupMembersCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .friendsGroupID = friendsGroupID, }; TRACE("%p\n", _this); @@ -8710,11 +8710,11 @@ int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupMembersCount( return params._ret; } -void __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupMembersList(struct w_steam_iface *_this, int16_t friendsGroupID, CSteamID *pOutSteamIDMembers, int32_t nMembersCount) +void __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupMembersList(struct w_iface *_this, int16_t friendsGroupID, CSteamID *pOutSteamIDMembers, int32_t nMembersCount) { struct ISteamFriends_SteamFriends015_GetFriendsGroupMembersList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .friendsGroupID = friendsGroupID, .pOutSteamIDMembers = pOutSteamIDMembers, .nMembersCount = nMembersCount, @@ -8723,11 +8723,11 @@ void __thiscall winISteamFriends_SteamFriends015_GetFriendsGroupMembersList(stru STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetFriendsGroupMembersList, ¶ms ); } -int8_t __thiscall winISteamFriends_SteamFriends015_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends015_HasFriend(struct w_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends015_HasFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; @@ -8736,22 +8736,22 @@ int8_t __thiscall winISteamFriends_SteamFriends015_HasFriend(struct w_steam_ifac return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends015_GetClanCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends015_GetClanCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends015_GetClanCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetClanCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends015_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) +CSteamID * __thiscall winISteamFriends_SteamFriends015_GetClanByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iClan) { struct ISteamFriends_SteamFriends015_GetClanByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iClan = iClan, }; @@ -8760,11 +8760,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends015_GetClanByIndex(struct w_s return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends015_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends015_GetClanName(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends015_GetClanName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -8772,11 +8772,11 @@ const char * __thiscall winISteamFriends_SteamFriends015_GetClanName(struct w_st return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends015_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends015_GetClanTag(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends015_GetClanTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -8784,11 +8784,11 @@ const char * __thiscall winISteamFriends_SteamFriends015_GetClanTag(struct w_ste return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends015_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) +int8_t __thiscall winISteamFriends_SteamFriends015_GetClanActivityCounts(struct w_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { struct ISteamFriends_SteamFriends015_GetClanActivityCounts_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, .pnOnline = pnOnline, .pnInGame = pnInGame, @@ -8799,11 +8799,11 @@ int8_t __thiscall winISteamFriends_SteamFriends015_GetClanActivityCounts(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends015_DownloadClanActivityCounts(struct w_steam_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) +uint64_t __thiscall winISteamFriends_SteamFriends015_DownloadClanActivityCounts(struct w_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) { struct ISteamFriends_SteamFriends015_DownloadClanActivityCounts_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .psteamIDClans = psteamIDClans, .cClansToRequest = cClansToRequest, }; @@ -8812,11 +8812,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends015_DownloadClanActivityCounts( return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) +int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendCountFromSource(struct w_iface *_this, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends015_GetFriendCountFromSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); @@ -8824,11 +8824,11 @@ int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendCountFromSource(str return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends015_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends015_GetFriendFromSourceByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { struct ISteamFriends_SteamFriends015_GetFriendFromSourceByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDSource = steamIDSource, .iFriend = iFriend, @@ -8838,11 +8838,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends015_GetFriendFromSourceByInde return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends015_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends015_IsUserInSource(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends015_IsUserInSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; @@ -8851,11 +8851,11 @@ int8_t __thiscall winISteamFriends_SteamFriends015_IsUserInSource(struct w_steam return params._ret; } -void __thiscall winISteamFriends_SteamFriends015_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) +void __thiscall winISteamFriends_SteamFriends015_SetInGameVoiceSpeaking(struct w_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends015_SetInGameVoiceSpeaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; @@ -8863,11 +8863,11 @@ void __thiscall winISteamFriends_SteamFriends015_SetInGameVoiceSpeaking(struct w STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_SetInGameVoiceSpeaking, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) +void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlay(struct w_iface *_this, const char *pchDialog) { struct ISteamFriends_SteamFriends015_ActivateGameOverlay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); @@ -8875,11 +8875,11 @@ void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlay(struct w_st STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_ActivateGameOverlay, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) +void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlayToUser(struct w_iface *_this, const char *pchDialog, CSteamID steamID) { struct ISteamFriends_SteamFriends015_ActivateGameOverlayToUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; @@ -8888,11 +8888,11 @@ void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlayToUser(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_ActivateGameOverlayToUser, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL) +void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage(struct w_iface *_this, const char *pchURL) { struct ISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchURL = pchURL, }; TRACE("%p\n", _this); @@ -8900,11 +8900,11 @@ void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage(st STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_ActivateGameOverlayToWebPage, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID, uint32_t eFlag) +void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlayToStore(struct w_iface *_this, uint32_t nAppID, uint32_t eFlag) { struct ISteamFriends_SteamFriends015_ActivateGameOverlayToStore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .eFlag = eFlag, }; @@ -8912,33 +8912,33 @@ void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlayToStore(stru STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_ActivateGameOverlayToStore, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends015_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) +void __thiscall winISteamFriends_SteamFriends015_SetPlayedWith(struct w_iface *_this, CSteamID steamIDUserPlayedWith) { struct ISteamFriends_SteamFriends015_SetPlayedWith_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_SetPlayedWith, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_ActivateGameOverlayInviteDialog, ¶ms ); } -int32_t __thiscall winISteamFriends_SteamFriends015_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends015_GetSmallFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends015_GetSmallFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -8946,11 +8946,11 @@ int32_t __thiscall winISteamFriends_SteamFriends015_GetSmallFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends015_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends015_GetMediumFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends015_GetMediumFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -8958,11 +8958,11 @@ int32_t __thiscall winISteamFriends_SteamFriends015_GetMediumFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends015_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends015_GetLargeFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends015_GetLargeFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -8970,11 +8970,11 @@ int32_t __thiscall winISteamFriends_SteamFriends015_GetLargeFriendAvatar(struct return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends015_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends015_RequestUserInformation(struct w_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends015_RequestUserInformation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; @@ -8983,11 +8983,11 @@ int8_t __thiscall winISteamFriends_SteamFriends015_RequestUserInformation(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends015_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamFriends_SteamFriends015_RequestClanOfficerList(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends015_RequestClanOfficerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -8995,11 +8995,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends015_RequestClanOfficerList(stru return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends015_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) +CSteamID * __thiscall winISteamFriends_SteamFriends015_GetClanOwner(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends015_GetClanOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; @@ -9008,11 +9008,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends015_GetClanOwner(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends015_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) +int32_t __thiscall winISteamFriends_SteamFriends015_GetClanOfficerCount(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends015_GetClanOfficerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -9020,11 +9020,11 @@ int32_t __thiscall winISteamFriends_SteamFriends015_GetClanOfficerCount(struct w return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends015_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) +CSteamID * __thiscall winISteamFriends_SteamFriends015_GetClanOfficerByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { struct ISteamFriends_SteamFriends015_GetClanOfficerByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, .iOfficer = iOfficer, @@ -9034,22 +9034,22 @@ CSteamID * __thiscall winISteamFriends_SteamFriends015_GetClanOfficerByIndex(str return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends015_GetUserRestrictions(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends015_GetUserRestrictions(struct w_iface *_this) { struct ISteamFriends_SteamFriends015_GetUserRestrictions_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetUserRestrictions, ¶ms ); return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends015_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamFriends_SteamFriends015_SetRichPresence(struct w_iface *_this, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends015_SetRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; @@ -9060,21 +9060,21 @@ int8_t __thiscall winISteamFriends_SteamFriends015_SetRichPresence(struct w_stea return params._ret; } -void __thiscall winISteamFriends_SteamFriends015_ClearRichPresence(struct w_steam_iface *_this) +void __thiscall winISteamFriends_SteamFriends015_ClearRichPresence(struct w_iface *_this) { struct ISteamFriends_SteamFriends015_ClearRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_ClearRichPresence, ¶ms ); } -const char * __thiscall winISteamFriends_SteamFriends015_GetFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) +const char * __thiscall winISteamFriends_SteamFriends015_GetFriendRichPresence(struct w_iface *_this, CSteamID steamIDFriend, const char *pchKey) { struct ISteamFriends_SteamFriends015_GetFriendRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; @@ -9084,11 +9084,11 @@ const char * __thiscall winISteamFriends_SteamFriends015_GetFriendRichPresence(s return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -9096,11 +9096,11 @@ int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendRichPresenceKeyCoun return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iKey) +const char * __thiscall winISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex(struct w_iface *_this, CSteamID steamIDFriend, int32_t iKey) { struct ISteamFriends_SteamFriends015_GetFriendRichPresenceKeyByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iKey = iKey, }; @@ -9109,22 +9109,22 @@ const char * __thiscall winISteamFriends_SteamFriends015_GetFriendRichPresenceKe return params._ret; } -void __thiscall winISteamFriends_SteamFriends015_RequestFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend) +void __thiscall winISteamFriends_SteamFriends015_RequestFriendRichPresence(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends015_RequestFriendRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_RequestFriendRichPresence, ¶ms ); } -int8_t __thiscall winISteamFriends_SteamFriends015_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) +int8_t __thiscall winISteamFriends_SteamFriends015_InviteUserToGame(struct w_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { struct ISteamFriends_SteamFriends015_InviteUserToGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchConnectString = pchConnectString, }; @@ -9134,22 +9134,22 @@ int8_t __thiscall winISteamFriends_SteamFriends015_InviteUserToGame(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends015_GetCoplayFriendCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends015_GetCoplayFriendCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends015_GetCoplayFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends015_GetCoplayFriendCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends015_GetCoplayFriend(struct w_steam_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends015_GetCoplayFriend(struct w_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) { struct ISteamFriends_SteamFriends015_GetCoplayFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iCoplayFriend = iCoplayFriend, }; @@ -9158,11 +9158,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends015_GetCoplayFriend(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendCoplayTime(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendCoplayTime(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends015_GetFriendCoplayTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -9170,11 +9170,11 @@ int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendCoplayTime(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends015_GetFriendCoplayGame(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends015_GetFriendCoplayGame(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends015_GetFriendCoplayGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -9182,11 +9182,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends015_GetFriendCoplayGame(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends015_JoinClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamFriends_SteamFriends015_JoinClanChatRoom(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends015_JoinClanChatRoom_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -9194,11 +9194,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends015_JoinClanChatRoom(struct w_s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends015_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends015_LeaveClanChatRoom(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends015_LeaveClanChatRoom_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -9206,11 +9206,11 @@ int8_t __thiscall winISteamFriends_SteamFriends015_LeaveClanChatRoom(struct w_st return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends015_GetClanChatMemberCount(struct w_steam_iface *_this, CSteamID steamIDClan) +int32_t __thiscall winISteamFriends_SteamFriends015_GetClanChatMemberCount(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends015_GetClanChatMemberCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -9218,11 +9218,11 @@ int32_t __thiscall winISteamFriends_SteamFriends015_GetClanChatMemberCount(struc return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends015_GetChatMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) +CSteamID * __thiscall winISteamFriends_SteamFriends015_GetChatMemberByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) { struct ISteamFriends_SteamFriends015_GetChatMemberByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, .iUser = iUser, @@ -9232,11 +9232,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends015_GetChatMemberByIndex(stru return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends015_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) +int8_t __thiscall winISteamFriends_SteamFriends015_SendClanChatMessage(struct w_iface *_this, CSteamID steamIDClanChat, const char *pchText) { struct ISteamFriends_SteamFriends015_SendClanChatMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .pchText = pchText, }; @@ -9246,11 +9246,11 @@ int8_t __thiscall winISteamFriends_SteamFriends015_SendClanChatMessage(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends015_GetClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, int32_t iMessage, void *prgchText, int32_t cchTextMax, uint32_t *peChatEntryType, CSteamID *psteamidChatter) +int32_t __thiscall winISteamFriends_SteamFriends015_GetClanChatMessage(struct w_iface *_this, CSteamID steamIDClanChat, int32_t iMessage, void *prgchText, int32_t cchTextMax, uint32_t *peChatEntryType, CSteamID *psteamidChatter) { struct ISteamFriends_SteamFriends015_GetClanChatMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .iMessage = iMessage, .prgchText = prgchText, @@ -9263,11 +9263,11 @@ int32_t __thiscall winISteamFriends_SteamFriends015_GetClanChatMessage(struct w_ return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends015_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) +int8_t __thiscall winISteamFriends_SteamFriends015_IsClanChatAdmin(struct w_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { struct ISteamFriends_SteamFriends015_IsClanChatAdmin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .steamIDUser = steamIDUser, }; @@ -9276,11 +9276,11 @@ int8_t __thiscall winISteamFriends_SteamFriends015_IsClanChatAdmin(struct w_stea return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -9288,11 +9288,11 @@ int8_t __thiscall winISteamFriends_SteamFriends015_IsClanChatWindowOpenInSteam(s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends015_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends015_OpenClanChatWindowInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends015_OpenClanChatWindowInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -9300,11 +9300,11 @@ int8_t __thiscall winISteamFriends_SteamFriends015_OpenClanChatWindowInSteam(str return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends015_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends015_CloseClanChatWindowInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends015_CloseClanChatWindowInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -9312,11 +9312,11 @@ int8_t __thiscall winISteamFriends_SteamFriends015_CloseClanChatWindowInSteam(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends015_SetListenForFriendsMessages(struct w_steam_iface *_this, int8_t bInterceptEnabled) +int8_t __thiscall winISteamFriends_SteamFriends015_SetListenForFriendsMessages(struct w_iface *_this, int8_t bInterceptEnabled) { struct ISteamFriends_SteamFriends015_SetListenForFriendsMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bInterceptEnabled = bInterceptEnabled, }; TRACE("%p\n", _this); @@ -9324,11 +9324,11 @@ int8_t __thiscall winISteamFriends_SteamFriends015_SetListenForFriendsMessages(s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends015_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) +int8_t __thiscall winISteamFriends_SteamFriends015_ReplyToFriendMessage(struct w_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { struct ISteamFriends_SteamFriends015_ReplyToFriendMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchMsgToSend = pchMsgToSend, }; @@ -9338,11 +9338,11 @@ int8_t __thiscall winISteamFriends_SteamFriends015_ReplyToFriendMessage(struct w return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iMessageID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendMessage(struct w_iface *_this, CSteamID steamIDFriend, int32_t iMessageID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamFriends_SteamFriends015_GetFriendMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iMessageID = iMessageID, .pvData = pvData, @@ -9354,11 +9354,11 @@ int32_t __thiscall winISteamFriends_SteamFriends015_GetFriendMessage(struct w_st return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends015_GetFollowerCount(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamFriends_SteamFriends015_GetFollowerCount(struct w_iface *_this, CSteamID steamID) { struct ISteamFriends_SteamFriends015_GetFollowerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -9366,11 +9366,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends015_GetFollowerCount(struct w_s return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends015_IsFollowing(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamFriends_SteamFriends015_IsFollowing(struct w_iface *_this, CSteamID steamID) { struct ISteamFriends_SteamFriends015_IsFollowing_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -9378,11 +9378,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends015_IsFollowing(struct w_steam_ return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends015_EnumerateFollowingList(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamFriends_SteamFriends015_EnumerateFollowingList(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamFriends_SteamFriends015_EnumerateFollowingList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -9390,11 +9390,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends015_EnumerateFollowingList(stru return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends015_IsClanPublic(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends015_IsClanPublic(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends015_IsClanPublic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -9402,11 +9402,11 @@ int8_t __thiscall winISteamFriends_SteamFriends015_IsClanPublic(struct w_steam_i return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends015_IsClanOfficialGameGroup(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends015_IsClanOfficialGameGroup(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends015_IsClanOfficialGameGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -9495,9 +9495,9 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends015_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamFriends_SteamFriends015(void *u_iface) +struct w_iface *create_winISteamFriends_SteamFriends015( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamFriends015"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends015"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamFriends_SteamFriends015_vtable, 72, "SteamFriends015"); r->u_iface = u_iface; @@ -9585,22 +9585,22 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends017_BHasEquippedProfileItem DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends017_GetProfileItemPropertyString, 20) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends017_GetProfileItemPropertyUint, 20) -const char * __thiscall winISteamFriends_SteamFriends017_GetPersonaName(struct w_steam_iface *_this) +const char * __thiscall winISteamFriends_SteamFriends017_GetPersonaName(struct w_iface *_this) { struct ISteamFriends_SteamFriends017_GetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetPersonaName, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends017_SetPersonaName(struct w_steam_iface *_this, const char *pchPersonaName) +uint64_t __thiscall winISteamFriends_SteamFriends017_SetPersonaName(struct w_iface *_this, const char *pchPersonaName) { struct ISteamFriends_SteamFriends017_SetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPersonaName = pchPersonaName, }; TRACE("%p\n", _this); @@ -9609,22 +9609,22 @@ uint64_t __thiscall winISteamFriends_SteamFriends017_SetPersonaName(struct w_ste return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends017_GetPersonaState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends017_GetPersonaState(struct w_iface *_this) { struct ISteamFriends_SteamFriends017_GetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetPersonaState, ¶ms ); return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) +int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendCount(struct w_iface *_this, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends017_GetFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); @@ -9632,11 +9632,11 @@ int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendCount(struct w_stea return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends017_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) +CSteamID * __thiscall winISteamFriends_SteamFriends017_GetFriendByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends017_GetFriendByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iFriend = iFriend, .iFriendFlags = iFriendFlags, @@ -9646,11 +9646,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends017_GetFriendByIndex(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends017_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends017_GetFriendRelationship(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends017_GetFriendRelationship_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -9658,11 +9658,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends017_GetFriendRelationship(struc return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends017_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends017_GetFriendPersonaState(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends017_GetFriendPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -9670,11 +9670,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends017_GetFriendPersonaState(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends017_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) +const char * __thiscall winISteamFriends_SteamFriends017_GetFriendPersonaName(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends017_GetFriendPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -9682,11 +9682,11 @@ const char * __thiscall winISteamFriends_SteamFriends017_GetFriendPersonaName(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends017_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends017_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends017_GetFriendGamePlayed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; @@ -9695,11 +9695,11 @@ int8_t __thiscall winISteamFriends_SteamFriends017_GetFriendGamePlayed(struct w_ return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends017_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) +const char * __thiscall winISteamFriends_SteamFriends017_GetFriendPersonaNameHistory(struct w_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { struct ISteamFriends_SteamFriends017_GetFriendPersonaNameHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; @@ -9708,11 +9708,11 @@ const char * __thiscall winISteamFriends_SteamFriends017_GetFriendPersonaNameHis return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendSteamLevel(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendSteamLevel(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends017_GetFriendSteamLevel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -9720,11 +9720,11 @@ int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendSteamLevel(struct w return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends017_GetPlayerNickname(struct w_steam_iface *_this, CSteamID steamIDPlayer) +const char * __thiscall winISteamFriends_SteamFriends017_GetPlayerNickname(struct w_iface *_this, CSteamID steamIDPlayer) { struct ISteamFriends_SteamFriends017_GetPlayerNickname_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDPlayer = steamIDPlayer, }; TRACE("%p\n", _this); @@ -9732,22 +9732,22 @@ const char * __thiscall winISteamFriends_SteamFriends017_GetPlayerNickname(struc return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends017_GetFriendsGroupCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendsGroupCount, ¶ms ); return params._ret; } -int16_t __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex(struct w_steam_iface *_this, int32_t iFG) +int16_t __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex(struct w_iface *_this, int32_t iFG) { struct ISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFG = iFG, }; TRACE("%p\n", _this); @@ -9755,11 +9755,11 @@ int16_t __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupIDByIndex(str return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupName(struct w_steam_iface *_this, int16_t friendsGroupID) +const char * __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupName(struct w_iface *_this, int16_t friendsGroupID) { struct ISteamFriends_SteamFriends017_GetFriendsGroupName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .friendsGroupID = friendsGroupID, }; TRACE("%p\n", _this); @@ -9767,11 +9767,11 @@ const char * __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupName(str return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupMembersCount(struct w_steam_iface *_this, int16_t friendsGroupID) +int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupMembersCount(struct w_iface *_this, int16_t friendsGroupID) { struct ISteamFriends_SteamFriends017_GetFriendsGroupMembersCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .friendsGroupID = friendsGroupID, }; TRACE("%p\n", _this); @@ -9779,11 +9779,11 @@ int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupMembersCount( return params._ret; } -void __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupMembersList(struct w_steam_iface *_this, int16_t friendsGroupID, CSteamID *pOutSteamIDMembers, int32_t nMembersCount) +void __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupMembersList(struct w_iface *_this, int16_t friendsGroupID, CSteamID *pOutSteamIDMembers, int32_t nMembersCount) { struct ISteamFriends_SteamFriends017_GetFriendsGroupMembersList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .friendsGroupID = friendsGroupID, .pOutSteamIDMembers = pOutSteamIDMembers, .nMembersCount = nMembersCount, @@ -9792,11 +9792,11 @@ void __thiscall winISteamFriends_SteamFriends017_GetFriendsGroupMembersList(stru STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetFriendsGroupMembersList, ¶ms ); } -int8_t __thiscall winISteamFriends_SteamFriends017_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends017_HasFriend(struct w_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends017_HasFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; @@ -9805,22 +9805,22 @@ int8_t __thiscall winISteamFriends_SteamFriends017_HasFriend(struct w_steam_ifac return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends017_GetClanCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends017_GetClanCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends017_GetClanCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetClanCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends017_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) +CSteamID * __thiscall winISteamFriends_SteamFriends017_GetClanByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iClan) { struct ISteamFriends_SteamFriends017_GetClanByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iClan = iClan, }; @@ -9829,11 +9829,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends017_GetClanByIndex(struct w_s return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends017_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends017_GetClanName(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends017_GetClanName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -9841,11 +9841,11 @@ const char * __thiscall winISteamFriends_SteamFriends017_GetClanName(struct w_st return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends017_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends017_GetClanTag(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends017_GetClanTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -9853,11 +9853,11 @@ const char * __thiscall winISteamFriends_SteamFriends017_GetClanTag(struct w_ste return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends017_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) +int8_t __thiscall winISteamFriends_SteamFriends017_GetClanActivityCounts(struct w_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { struct ISteamFriends_SteamFriends017_GetClanActivityCounts_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, .pnOnline = pnOnline, .pnInGame = pnInGame, @@ -9868,11 +9868,11 @@ int8_t __thiscall winISteamFriends_SteamFriends017_GetClanActivityCounts(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends017_DownloadClanActivityCounts(struct w_steam_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) +uint64_t __thiscall winISteamFriends_SteamFriends017_DownloadClanActivityCounts(struct w_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) { struct ISteamFriends_SteamFriends017_DownloadClanActivityCounts_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .psteamIDClans = psteamIDClans, .cClansToRequest = cClansToRequest, }; @@ -9881,11 +9881,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends017_DownloadClanActivityCounts( return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) +int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendCountFromSource(struct w_iface *_this, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends017_GetFriendCountFromSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); @@ -9893,11 +9893,11 @@ int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendCountFromSource(str return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends017_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends017_GetFriendFromSourceByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { struct ISteamFriends_SteamFriends017_GetFriendFromSourceByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDSource = steamIDSource, .iFriend = iFriend, @@ -9907,11 +9907,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends017_GetFriendFromSourceByInde return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends017_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends017_IsUserInSource(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends017_IsUserInSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; @@ -9920,11 +9920,11 @@ int8_t __thiscall winISteamFriends_SteamFriends017_IsUserInSource(struct w_steam return params._ret; } -void __thiscall winISteamFriends_SteamFriends017_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) +void __thiscall winISteamFriends_SteamFriends017_SetInGameVoiceSpeaking(struct w_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends017_SetInGameVoiceSpeaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; @@ -9932,11 +9932,11 @@ void __thiscall winISteamFriends_SteamFriends017_SetInGameVoiceSpeaking(struct w STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_SetInGameVoiceSpeaking, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) +void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlay(struct w_iface *_this, const char *pchDialog) { struct ISteamFriends_SteamFriends017_ActivateGameOverlay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); @@ -9944,11 +9944,11 @@ void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlay(struct w_st STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_ActivateGameOverlay, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) +void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayToUser(struct w_iface *_this, const char *pchDialog, CSteamID steamID) { struct ISteamFriends_SteamFriends017_ActivateGameOverlayToUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; @@ -9957,11 +9957,11 @@ void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayToUser(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_ActivateGameOverlayToUser, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL, uint32_t eMode) +void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage(struct w_iface *_this, const char *pchURL, uint32_t eMode) { struct ISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchURL = pchURL, .eMode = eMode, }; @@ -9970,11 +9970,11 @@ void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage(st STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_ActivateGameOverlayToWebPage, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID, uint32_t eFlag) +void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayToStore(struct w_iface *_this, uint32_t nAppID, uint32_t eFlag) { struct ISteamFriends_SteamFriends017_ActivateGameOverlayToStore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .eFlag = eFlag, }; @@ -9982,33 +9982,33 @@ void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayToStore(stru STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_ActivateGameOverlayToStore, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends017_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) +void __thiscall winISteamFriends_SteamFriends017_SetPlayedWith(struct w_iface *_this, CSteamID steamIDUserPlayedWith) { struct ISteamFriends_SteamFriends017_SetPlayedWith_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_SetPlayedWith, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog, ¶ms ); } -int32_t __thiscall winISteamFriends_SteamFriends017_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends017_GetSmallFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends017_GetSmallFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -10016,11 +10016,11 @@ int32_t __thiscall winISteamFriends_SteamFriends017_GetSmallFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends017_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends017_GetMediumFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends017_GetMediumFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -10028,11 +10028,11 @@ int32_t __thiscall winISteamFriends_SteamFriends017_GetMediumFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends017_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends017_GetLargeFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends017_GetLargeFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -10040,11 +10040,11 @@ int32_t __thiscall winISteamFriends_SteamFriends017_GetLargeFriendAvatar(struct return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends017_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends017_RequestUserInformation(struct w_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends017_RequestUserInformation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; @@ -10053,11 +10053,11 @@ int8_t __thiscall winISteamFriends_SteamFriends017_RequestUserInformation(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends017_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamFriends_SteamFriends017_RequestClanOfficerList(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends017_RequestClanOfficerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -10065,11 +10065,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends017_RequestClanOfficerList(stru return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends017_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) +CSteamID * __thiscall winISteamFriends_SteamFriends017_GetClanOwner(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends017_GetClanOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; @@ -10078,11 +10078,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends017_GetClanOwner(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends017_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) +int32_t __thiscall winISteamFriends_SteamFriends017_GetClanOfficerCount(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends017_GetClanOfficerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -10090,11 +10090,11 @@ int32_t __thiscall winISteamFriends_SteamFriends017_GetClanOfficerCount(struct w return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends017_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) +CSteamID * __thiscall winISteamFriends_SteamFriends017_GetClanOfficerByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { struct ISteamFriends_SteamFriends017_GetClanOfficerByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, .iOfficer = iOfficer, @@ -10104,22 +10104,22 @@ CSteamID * __thiscall winISteamFriends_SteamFriends017_GetClanOfficerByIndex(str return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends017_GetUserRestrictions(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends017_GetUserRestrictions(struct w_iface *_this) { struct ISteamFriends_SteamFriends017_GetUserRestrictions_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetUserRestrictions, ¶ms ); return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends017_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamFriends_SteamFriends017_SetRichPresence(struct w_iface *_this, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends017_SetRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; @@ -10130,21 +10130,21 @@ int8_t __thiscall winISteamFriends_SteamFriends017_SetRichPresence(struct w_stea return params._ret; } -void __thiscall winISteamFriends_SteamFriends017_ClearRichPresence(struct w_steam_iface *_this) +void __thiscall winISteamFriends_SteamFriends017_ClearRichPresence(struct w_iface *_this) { struct ISteamFriends_SteamFriends017_ClearRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_ClearRichPresence, ¶ms ); } -const char * __thiscall winISteamFriends_SteamFriends017_GetFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) +const char * __thiscall winISteamFriends_SteamFriends017_GetFriendRichPresence(struct w_iface *_this, CSteamID steamIDFriend, const char *pchKey) { struct ISteamFriends_SteamFriends017_GetFriendRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; @@ -10154,11 +10154,11 @@ const char * __thiscall winISteamFriends_SteamFriends017_GetFriendRichPresence(s return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -10166,11 +10166,11 @@ int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendRichPresenceKeyCoun return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iKey) +const char * __thiscall winISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex(struct w_iface *_this, CSteamID steamIDFriend, int32_t iKey) { struct ISteamFriends_SteamFriends017_GetFriendRichPresenceKeyByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iKey = iKey, }; @@ -10179,22 +10179,22 @@ const char * __thiscall winISteamFriends_SteamFriends017_GetFriendRichPresenceKe return params._ret; } -void __thiscall winISteamFriends_SteamFriends017_RequestFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend) +void __thiscall winISteamFriends_SteamFriends017_RequestFriendRichPresence(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends017_RequestFriendRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_RequestFriendRichPresence, ¶ms ); } -int8_t __thiscall winISteamFriends_SteamFriends017_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) +int8_t __thiscall winISteamFriends_SteamFriends017_InviteUserToGame(struct w_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { struct ISteamFriends_SteamFriends017_InviteUserToGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchConnectString = pchConnectString, }; @@ -10204,22 +10204,22 @@ int8_t __thiscall winISteamFriends_SteamFriends017_InviteUserToGame(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends017_GetCoplayFriendCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends017_GetCoplayFriendCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends017_GetCoplayFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetCoplayFriendCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends017_GetCoplayFriend(struct w_steam_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends017_GetCoplayFriend(struct w_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) { struct ISteamFriends_SteamFriends017_GetCoplayFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iCoplayFriend = iCoplayFriend, }; @@ -10228,11 +10228,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends017_GetCoplayFriend(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendCoplayTime(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendCoplayTime(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends017_GetFriendCoplayTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -10240,11 +10240,11 @@ int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendCoplayTime(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends017_GetFriendCoplayGame(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends017_GetFriendCoplayGame(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends017_GetFriendCoplayGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -10252,11 +10252,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends017_GetFriendCoplayGame(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends017_JoinClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamFriends_SteamFriends017_JoinClanChatRoom(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends017_JoinClanChatRoom_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -10264,11 +10264,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends017_JoinClanChatRoom(struct w_s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends017_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends017_LeaveClanChatRoom(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends017_LeaveClanChatRoom_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -10276,11 +10276,11 @@ int8_t __thiscall winISteamFriends_SteamFriends017_LeaveClanChatRoom(struct w_st return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends017_GetClanChatMemberCount(struct w_steam_iface *_this, CSteamID steamIDClan) +int32_t __thiscall winISteamFriends_SteamFriends017_GetClanChatMemberCount(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends017_GetClanChatMemberCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -10288,11 +10288,11 @@ int32_t __thiscall winISteamFriends_SteamFriends017_GetClanChatMemberCount(struc return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends017_GetChatMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) +CSteamID * __thiscall winISteamFriends_SteamFriends017_GetChatMemberByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) { struct ISteamFriends_SteamFriends017_GetChatMemberByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, .iUser = iUser, @@ -10302,11 +10302,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends017_GetChatMemberByIndex(stru return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends017_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) +int8_t __thiscall winISteamFriends_SteamFriends017_SendClanChatMessage(struct w_iface *_this, CSteamID steamIDClanChat, const char *pchText) { struct ISteamFriends_SteamFriends017_SendClanChatMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .pchText = pchText, }; @@ -10316,11 +10316,11 @@ int8_t __thiscall winISteamFriends_SteamFriends017_SendClanChatMessage(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends017_GetClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, int32_t iMessage, void *prgchText, int32_t cchTextMax, uint32_t *peChatEntryType, CSteamID *psteamidChatter) +int32_t __thiscall winISteamFriends_SteamFriends017_GetClanChatMessage(struct w_iface *_this, CSteamID steamIDClanChat, int32_t iMessage, void *prgchText, int32_t cchTextMax, uint32_t *peChatEntryType, CSteamID *psteamidChatter) { struct ISteamFriends_SteamFriends017_GetClanChatMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .iMessage = iMessage, .prgchText = prgchText, @@ -10333,11 +10333,11 @@ int32_t __thiscall winISteamFriends_SteamFriends017_GetClanChatMessage(struct w_ return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends017_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) +int8_t __thiscall winISteamFriends_SteamFriends017_IsClanChatAdmin(struct w_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { struct ISteamFriends_SteamFriends017_IsClanChatAdmin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .steamIDUser = steamIDUser, }; @@ -10346,11 +10346,11 @@ int8_t __thiscall winISteamFriends_SteamFriends017_IsClanChatAdmin(struct w_stea return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -10358,11 +10358,11 @@ int8_t __thiscall winISteamFriends_SteamFriends017_IsClanChatWindowOpenInSteam(s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends017_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends017_OpenClanChatWindowInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends017_OpenClanChatWindowInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -10370,11 +10370,11 @@ int8_t __thiscall winISteamFriends_SteamFriends017_OpenClanChatWindowInSteam(str return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends017_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends017_CloseClanChatWindowInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends017_CloseClanChatWindowInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -10382,11 +10382,11 @@ int8_t __thiscall winISteamFriends_SteamFriends017_CloseClanChatWindowInSteam(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends017_SetListenForFriendsMessages(struct w_steam_iface *_this, int8_t bInterceptEnabled) +int8_t __thiscall winISteamFriends_SteamFriends017_SetListenForFriendsMessages(struct w_iface *_this, int8_t bInterceptEnabled) { struct ISteamFriends_SteamFriends017_SetListenForFriendsMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bInterceptEnabled = bInterceptEnabled, }; TRACE("%p\n", _this); @@ -10394,11 +10394,11 @@ int8_t __thiscall winISteamFriends_SteamFriends017_SetListenForFriendsMessages(s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends017_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) +int8_t __thiscall winISteamFriends_SteamFriends017_ReplyToFriendMessage(struct w_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { struct ISteamFriends_SteamFriends017_ReplyToFriendMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchMsgToSend = pchMsgToSend, }; @@ -10408,11 +10408,11 @@ int8_t __thiscall winISteamFriends_SteamFriends017_ReplyToFriendMessage(struct w return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iMessageID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendMessage(struct w_iface *_this, CSteamID steamIDFriend, int32_t iMessageID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamFriends_SteamFriends017_GetFriendMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iMessageID = iMessageID, .pvData = pvData, @@ -10424,11 +10424,11 @@ int32_t __thiscall winISteamFriends_SteamFriends017_GetFriendMessage(struct w_st return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends017_GetFollowerCount(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamFriends_SteamFriends017_GetFollowerCount(struct w_iface *_this, CSteamID steamID) { struct ISteamFriends_SteamFriends017_GetFollowerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -10436,11 +10436,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends017_GetFollowerCount(struct w_s return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends017_IsFollowing(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamFriends_SteamFriends017_IsFollowing(struct w_iface *_this, CSteamID steamID) { struct ISteamFriends_SteamFriends017_IsFollowing_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -10448,11 +10448,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends017_IsFollowing(struct w_steam_ return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends017_EnumerateFollowingList(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamFriends_SteamFriends017_EnumerateFollowingList(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamFriends_SteamFriends017_EnumerateFollowingList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -10460,11 +10460,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends017_EnumerateFollowingList(stru return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends017_IsClanPublic(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends017_IsClanPublic(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends017_IsClanPublic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -10472,11 +10472,11 @@ int8_t __thiscall winISteamFriends_SteamFriends017_IsClanPublic(struct w_steam_i return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends017_IsClanOfficialGameGroup(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends017_IsClanOfficialGameGroup(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends017_IsClanOfficialGameGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -10484,33 +10484,33 @@ int8_t __thiscall winISteamFriends_SteamFriends017_IsClanOfficialGameGroup(struc return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages(struct w_iface *_this) { struct ISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_GetNumChatsWithUnreadPriorityMessages, ¶ms ); return params._ret; } -void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_ActivateGameOverlayRemotePlayTogetherInviteDialog, ¶ms ); } -int8_t __thiscall winISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser(struct w_steam_iface *_this, const char *pchProtocol) +int8_t __thiscall winISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser(struct w_iface *_this, const char *pchProtocol) { struct ISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrowser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchProtocol = pchProtocol, }; TRACE("%p\n", _this); @@ -10519,11 +10519,11 @@ int8_t __thiscall winISteamFriends_SteamFriends017_RegisterProtocolInOverlayBrow return params._ret; } -void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString(struct w_steam_iface *_this, const char *pchConnectString) +void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString(struct w_iface *_this, const char *pchConnectString) { struct ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchConnectString = pchConnectString, }; TRACE("%p\n", _this); @@ -10531,11 +10531,11 @@ void __thiscall winISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialog STEAMCLIENT_CALL( ISteamFriends_SteamFriends017_ActivateGameOverlayInviteDialogConnectString, ¶ms ); } -uint64_t __thiscall winISteamFriends_SteamFriends017_RequestEquippedProfileItems(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamFriends_SteamFriends017_RequestEquippedProfileItems(struct w_iface *_this, CSteamID steamID) { struct ISteamFriends_SteamFriends017_RequestEquippedProfileItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -10543,11 +10543,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends017_RequestEquippedProfileItems return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends017_BHasEquippedProfileItem(struct w_steam_iface *_this, CSteamID steamID, uint32_t itemType) +int8_t __thiscall winISteamFriends_SteamFriends017_BHasEquippedProfileItem(struct w_iface *_this, CSteamID steamID, uint32_t itemType) { struct ISteamFriends_SteamFriends017_BHasEquippedProfileItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .itemType = itemType, }; @@ -10556,11 +10556,11 @@ int8_t __thiscall winISteamFriends_SteamFriends017_BHasEquippedProfileItem(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends017_GetProfileItemPropertyString(struct w_steam_iface *_this, CSteamID steamID, uint32_t itemType, uint32_t prop) +const char * __thiscall winISteamFriends_SteamFriends017_GetProfileItemPropertyString(struct w_iface *_this, CSteamID steamID, uint32_t itemType, uint32_t prop) { struct ISteamFriends_SteamFriends017_GetProfileItemPropertyString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .itemType = itemType, .prop = prop, @@ -10570,11 +10570,11 @@ const char * __thiscall winISteamFriends_SteamFriends017_GetProfileItemPropertyS return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends017_GetProfileItemPropertyUint(struct w_steam_iface *_this, CSteamID steamID, uint32_t itemType, uint32_t prop) +uint32_t __thiscall winISteamFriends_SteamFriends017_GetProfileItemPropertyUint(struct w_iface *_this, CSteamID steamID, uint32_t itemType, uint32_t prop) { struct ISteamFriends_SteamFriends017_GetProfileItemPropertyUint_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .itemType = itemType, .prop = prop, @@ -10673,9 +10673,9 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends017_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamFriends_SteamFriends017(void *u_iface) +struct w_iface *create_winISteamFriends_SteamFriends017( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamFriends017"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends017"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamFriends_SteamFriends017_vtable, 80, "SteamFriends017"); r->u_iface = u_iface; @@ -10761,33 +10761,33 @@ DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends018_BHasEquippedProfileItem DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends018_GetProfileItemPropertyString, 20) DEFINE_THISCALL_WRAPPER(winISteamFriends_SteamFriends018_GetProfileItemPropertyUint, 20) -const char * __thiscall winISteamFriends_SteamFriends018_GetPersonaName(struct w_steam_iface *_this) +const char * __thiscall winISteamFriends_SteamFriends018_GetPersonaName(struct w_iface *_this) { struct ISteamFriends_SteamFriends018_GetPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_GetPersonaName, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends018_GetPersonaState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamFriends_SteamFriends018_GetPersonaState(struct w_iface *_this) { struct ISteamFriends_SteamFriends018_GetPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_GetPersonaState, ¶ms ); return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendCount(struct w_steam_iface *_this, int32_t iFriendFlags) +int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendCount(struct w_iface *_this, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends018_GetFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFriendFlags = iFriendFlags, }; TRACE("%p\n", _this); @@ -10795,11 +10795,11 @@ int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendCount(struct w_stea return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends018_GetFriendByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) +CSteamID * __thiscall winISteamFriends_SteamFriends018_GetFriendByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends018_GetFriendByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iFriend = iFriend, .iFriendFlags = iFriendFlags, @@ -10809,11 +10809,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends018_GetFriendByIndex(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends018_GetFriendRelationship(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends018_GetFriendRelationship(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends018_GetFriendRelationship_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -10821,11 +10821,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends018_GetFriendRelationship(struc return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends018_GetFriendPersonaState(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends018_GetFriendPersonaState(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends018_GetFriendPersonaState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -10833,11 +10833,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends018_GetFriendPersonaState(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends018_GetFriendPersonaName(struct w_steam_iface *_this, CSteamID steamIDFriend) +const char * __thiscall winISteamFriends_SteamFriends018_GetFriendPersonaName(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends018_GetFriendPersonaName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -10845,11 +10845,11 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetFriendPersonaName(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends018_GetFriendGamePlayed(struct w_steam_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) +int8_t __thiscall winISteamFriends_SteamFriends018_GetFriendGamePlayed(struct w_iface *_this, CSteamID steamIDFriend, FriendGameInfo_t *pFriendGameInfo) { struct ISteamFriends_SteamFriends018_GetFriendGamePlayed_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pFriendGameInfo = pFriendGameInfo, }; @@ -10858,11 +10858,11 @@ int8_t __thiscall winISteamFriends_SteamFriends018_GetFriendGamePlayed(struct w_ return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends018_GetFriendPersonaNameHistory(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) +const char * __thiscall winISteamFriends_SteamFriends018_GetFriendPersonaNameHistory(struct w_iface *_this, CSteamID steamIDFriend, int32_t iPersonaName) { struct ISteamFriends_SteamFriends018_GetFriendPersonaNameHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iPersonaName = iPersonaName, }; @@ -10871,11 +10871,11 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetFriendPersonaNameHis return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendSteamLevel(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendSteamLevel(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends018_GetFriendSteamLevel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -10883,11 +10883,11 @@ int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendSteamLevel(struct w return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends018_GetPlayerNickname(struct w_steam_iface *_this, CSteamID steamIDPlayer) +const char * __thiscall winISteamFriends_SteamFriends018_GetPlayerNickname(struct w_iface *_this, CSteamID steamIDPlayer) { struct ISteamFriends_SteamFriends018_GetPlayerNickname_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDPlayer = steamIDPlayer, }; TRACE("%p\n", _this); @@ -10895,22 +10895,22 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetPlayerNickname(struc return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendsGroupCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendsGroupCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends018_GetFriendsGroupCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_GetFriendsGroupCount, ¶ms ); return params._ret; } -int16_t __thiscall winISteamFriends_SteamFriends018_GetFriendsGroupIDByIndex(struct w_steam_iface *_this, int32_t iFG) +int16_t __thiscall winISteamFriends_SteamFriends018_GetFriendsGroupIDByIndex(struct w_iface *_this, int32_t iFG) { struct ISteamFriends_SteamFriends018_GetFriendsGroupIDByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFG = iFG, }; TRACE("%p\n", _this); @@ -10918,11 +10918,11 @@ int16_t __thiscall winISteamFriends_SteamFriends018_GetFriendsGroupIDByIndex(str return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends018_GetFriendsGroupName(struct w_steam_iface *_this, int16_t friendsGroupID) +const char * __thiscall winISteamFriends_SteamFriends018_GetFriendsGroupName(struct w_iface *_this, int16_t friendsGroupID) { struct ISteamFriends_SteamFriends018_GetFriendsGroupName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .friendsGroupID = friendsGroupID, }; TRACE("%p\n", _this); @@ -10930,11 +10930,11 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetFriendsGroupName(str return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendsGroupMembersCount(struct w_steam_iface *_this, int16_t friendsGroupID) +int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendsGroupMembersCount(struct w_iface *_this, int16_t friendsGroupID) { struct ISteamFriends_SteamFriends018_GetFriendsGroupMembersCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .friendsGroupID = friendsGroupID, }; TRACE("%p\n", _this); @@ -10942,11 +10942,11 @@ int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendsGroupMembersCount( return params._ret; } -void __thiscall winISteamFriends_SteamFriends018_GetFriendsGroupMembersList(struct w_steam_iface *_this, int16_t friendsGroupID, CSteamID *pOutSteamIDMembers, int32_t nMembersCount) +void __thiscall winISteamFriends_SteamFriends018_GetFriendsGroupMembersList(struct w_iface *_this, int16_t friendsGroupID, CSteamID *pOutSteamIDMembers, int32_t nMembersCount) { struct ISteamFriends_SteamFriends018_GetFriendsGroupMembersList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .friendsGroupID = friendsGroupID, .pOutSteamIDMembers = pOutSteamIDMembers, .nMembersCount = nMembersCount, @@ -10955,11 +10955,11 @@ void __thiscall winISteamFriends_SteamFriends018_GetFriendsGroupMembersList(stru STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_GetFriendsGroupMembersList, ¶ms ); } -int8_t __thiscall winISteamFriends_SteamFriends018_HasFriend(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) +int8_t __thiscall winISteamFriends_SteamFriends018_HasFriend(struct w_iface *_this, CSteamID steamIDFriend, int32_t iFriendFlags) { struct ISteamFriends_SteamFriends018_HasFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iFriendFlags = iFriendFlags, }; @@ -10968,22 +10968,22 @@ int8_t __thiscall winISteamFriends_SteamFriends018_HasFriend(struct w_steam_ifac return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends018_GetClanCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends018_GetClanCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends018_GetClanCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_GetClanCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends018_GetClanByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iClan) +CSteamID * __thiscall winISteamFriends_SteamFriends018_GetClanByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iClan) { struct ISteamFriends_SteamFriends018_GetClanByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iClan = iClan, }; @@ -10992,11 +10992,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends018_GetClanByIndex(struct w_s return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends018_GetClanName(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends018_GetClanName(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends018_GetClanName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -11004,11 +11004,11 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetClanName(struct w_st return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends018_GetClanTag(struct w_steam_iface *_this, CSteamID steamIDClan) +const char * __thiscall winISteamFriends_SteamFriends018_GetClanTag(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends018_GetClanTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -11016,11 +11016,11 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetClanTag(struct w_ste return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends018_GetClanActivityCounts(struct w_steam_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) +int8_t __thiscall winISteamFriends_SteamFriends018_GetClanActivityCounts(struct w_iface *_this, CSteamID steamIDClan, int32_t *pnOnline, int32_t *pnInGame, int32_t *pnChatting) { struct ISteamFriends_SteamFriends018_GetClanActivityCounts_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, .pnOnline = pnOnline, .pnInGame = pnInGame, @@ -11031,11 +11031,11 @@ int8_t __thiscall winISteamFriends_SteamFriends018_GetClanActivityCounts(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends018_DownloadClanActivityCounts(struct w_steam_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) +uint64_t __thiscall winISteamFriends_SteamFriends018_DownloadClanActivityCounts(struct w_iface *_this, CSteamID *psteamIDClans, int32_t cClansToRequest) { struct ISteamFriends_SteamFriends018_DownloadClanActivityCounts_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .psteamIDClans = psteamIDClans, .cClansToRequest = cClansToRequest, }; @@ -11044,11 +11044,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends018_DownloadClanActivityCounts( return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendCountFromSource(struct w_steam_iface *_this, CSteamID steamIDSource) +int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendCountFromSource(struct w_iface *_this, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends018_GetFriendCountFromSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDSource = steamIDSource, }; TRACE("%p\n", _this); @@ -11056,11 +11056,11 @@ int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendCountFromSource(str return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends018_GetFriendFromSourceByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends018_GetFriendFromSourceByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDSource, int32_t iFriend) { struct ISteamFriends_SteamFriends018_GetFriendFromSourceByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDSource = steamIDSource, .iFriend = iFriend, @@ -11070,11 +11070,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends018_GetFriendFromSourceByInde return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends018_IsUserInSource(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) +int8_t __thiscall winISteamFriends_SteamFriends018_IsUserInSource(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDSource) { struct ISteamFriends_SteamFriends018_IsUserInSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDSource = steamIDSource, }; @@ -11083,11 +11083,11 @@ int8_t __thiscall winISteamFriends_SteamFriends018_IsUserInSource(struct w_steam return params._ret; } -void __thiscall winISteamFriends_SteamFriends018_SetInGameVoiceSpeaking(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) +void __thiscall winISteamFriends_SteamFriends018_SetInGameVoiceSpeaking(struct w_iface *_this, CSteamID steamIDUser, int8_t bSpeaking) { struct ISteamFriends_SteamFriends018_SetInGameVoiceSpeaking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bSpeaking = bSpeaking, }; @@ -11095,11 +11095,11 @@ void __thiscall winISteamFriends_SteamFriends018_SetInGameVoiceSpeaking(struct w STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_SetInGameVoiceSpeaking, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlay(struct w_steam_iface *_this, const char *pchDialog) +void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlay(struct w_iface *_this, const char *pchDialog) { struct ISteamFriends_SteamFriends018_ActivateGameOverlay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, }; TRACE("%p\n", _this); @@ -11107,11 +11107,11 @@ void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlay(struct w_st STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_ActivateGameOverlay, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlayToUser(struct w_steam_iface *_this, const char *pchDialog, CSteamID steamID) +void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlayToUser(struct w_iface *_this, const char *pchDialog, CSteamID steamID) { struct ISteamFriends_SteamFriends018_ActivateGameOverlayToUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDialog = pchDialog, .steamID = steamID, }; @@ -11120,11 +11120,11 @@ void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlayToUser(struc STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_ActivateGameOverlayToUser, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlayToWebPage(struct w_steam_iface *_this, const char *pchURL, uint32_t eMode) +void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlayToWebPage(struct w_iface *_this, const char *pchURL, uint32_t eMode) { struct ISteamFriends_SteamFriends018_ActivateGameOverlayToWebPage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchURL = pchURL, .eMode = eMode, }; @@ -11133,11 +11133,11 @@ void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlayToWebPage(st STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_ActivateGameOverlayToWebPage, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlayToStore(struct w_steam_iface *_this, uint32_t nAppID, uint32_t eFlag) +void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlayToStore(struct w_iface *_this, uint32_t nAppID, uint32_t eFlag) { struct ISteamFriends_SteamFriends018_ActivateGameOverlayToStore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .eFlag = eFlag, }; @@ -11145,33 +11145,33 @@ void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlayToStore(stru STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_ActivateGameOverlayToStore, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends018_SetPlayedWith(struct w_steam_iface *_this, CSteamID steamIDUserPlayedWith) +void __thiscall winISteamFriends_SteamFriends018_SetPlayedWith(struct w_iface *_this, CSteamID steamIDUserPlayedWith) { struct ISteamFriends_SteamFriends018_SetPlayedWith_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUserPlayedWith = steamIDUserPlayedWith, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_SetPlayedWith, ¶ms ); } -void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialog(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialog_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialog, ¶ms ); } -int32_t __thiscall winISteamFriends_SteamFriends018_GetSmallFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends018_GetSmallFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends018_GetSmallFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -11179,11 +11179,11 @@ int32_t __thiscall winISteamFriends_SteamFriends018_GetSmallFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends018_GetMediumFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends018_GetMediumFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends018_GetMediumFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -11191,11 +11191,11 @@ int32_t __thiscall winISteamFriends_SteamFriends018_GetMediumFriendAvatar(struct return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends018_GetLargeFriendAvatar(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends018_GetLargeFriendAvatar(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends018_GetLargeFriendAvatar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -11203,11 +11203,11 @@ int32_t __thiscall winISteamFriends_SteamFriends018_GetLargeFriendAvatar(struct return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends018_RequestUserInformation(struct w_steam_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) +int8_t __thiscall winISteamFriends_SteamFriends018_RequestUserInformation(struct w_iface *_this, CSteamID steamIDUser, int8_t bRequireNameOnly) { struct ISteamFriends_SteamFriends018_RequestUserInformation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .bRequireNameOnly = bRequireNameOnly, }; @@ -11216,11 +11216,11 @@ int8_t __thiscall winISteamFriends_SteamFriends018_RequestUserInformation(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends018_RequestClanOfficerList(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamFriends_SteamFriends018_RequestClanOfficerList(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends018_RequestClanOfficerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -11228,11 +11228,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends018_RequestClanOfficerList(stru return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends018_GetClanOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan) +CSteamID * __thiscall winISteamFriends_SteamFriends018_GetClanOwner(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends018_GetClanOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, }; @@ -11241,11 +11241,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends018_GetClanOwner(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends018_GetClanOfficerCount(struct w_steam_iface *_this, CSteamID steamIDClan) +int32_t __thiscall winISteamFriends_SteamFriends018_GetClanOfficerCount(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends018_GetClanOfficerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -11253,11 +11253,11 @@ int32_t __thiscall winISteamFriends_SteamFriends018_GetClanOfficerCount(struct w return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends018_GetClanOfficerByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) +CSteamID * __thiscall winISteamFriends_SteamFriends018_GetClanOfficerByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iOfficer) { struct ISteamFriends_SteamFriends018_GetClanOfficerByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, .iOfficer = iOfficer, @@ -11267,11 +11267,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends018_GetClanOfficerByIndex(str return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends018_SetRichPresence(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamFriends_SteamFriends018_SetRichPresence(struct w_iface *_this, const char *pchKey, const char *pchValue) { struct ISteamFriends_SteamFriends018_SetRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; @@ -11282,21 +11282,21 @@ int8_t __thiscall winISteamFriends_SteamFriends018_SetRichPresence(struct w_stea return params._ret; } -void __thiscall winISteamFriends_SteamFriends018_ClearRichPresence(struct w_steam_iface *_this) +void __thiscall winISteamFriends_SteamFriends018_ClearRichPresence(struct w_iface *_this) { struct ISteamFriends_SteamFriends018_ClearRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_ClearRichPresence, ¶ms ); } -const char * __thiscall winISteamFriends_SteamFriends018_GetFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchKey) +const char * __thiscall winISteamFriends_SteamFriends018_GetFriendRichPresence(struct w_iface *_this, CSteamID steamIDFriend, const char *pchKey) { struct ISteamFriends_SteamFriends018_GetFriendRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchKey = pchKey, }; @@ -11306,11 +11306,11 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetFriendRichPresence(s return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendRichPresenceKeyCount(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendRichPresenceKeyCount(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -11318,11 +11318,11 @@ int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendRichPresenceKeyCoun return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends018_GetFriendRichPresenceKeyByIndex(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iKey) +const char * __thiscall winISteamFriends_SteamFriends018_GetFriendRichPresenceKeyByIndex(struct w_iface *_this, CSteamID steamIDFriend, int32_t iKey) { struct ISteamFriends_SteamFriends018_GetFriendRichPresenceKeyByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iKey = iKey, }; @@ -11331,22 +11331,22 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetFriendRichPresenceKe return params._ret; } -void __thiscall winISteamFriends_SteamFriends018_RequestFriendRichPresence(struct w_steam_iface *_this, CSteamID steamIDFriend) +void __thiscall winISteamFriends_SteamFriends018_RequestFriendRichPresence(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends018_RequestFriendRichPresence_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_RequestFriendRichPresence, ¶ms ); } -int8_t __thiscall winISteamFriends_SteamFriends018_InviteUserToGame(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) +int8_t __thiscall winISteamFriends_SteamFriends018_InviteUserToGame(struct w_iface *_this, CSteamID steamIDFriend, const char *pchConnectString) { struct ISteamFriends_SteamFriends018_InviteUserToGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchConnectString = pchConnectString, }; @@ -11356,22 +11356,22 @@ int8_t __thiscall winISteamFriends_SteamFriends018_InviteUserToGame(struct w_ste return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends018_GetCoplayFriendCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends018_GetCoplayFriendCount(struct w_iface *_this) { struct ISteamFriends_SteamFriends018_GetCoplayFriendCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_GetCoplayFriendCount, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends018_GetCoplayFriend(struct w_steam_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) +CSteamID * __thiscall winISteamFriends_SteamFriends018_GetCoplayFriend(struct w_iface *_this, CSteamID *_ret, int32_t iCoplayFriend) { struct ISteamFriends_SteamFriends018_GetCoplayFriend_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iCoplayFriend = iCoplayFriend, }; @@ -11380,11 +11380,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends018_GetCoplayFriend(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendCoplayTime(struct w_steam_iface *_this, CSteamID steamIDFriend) +int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendCoplayTime(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends018_GetFriendCoplayTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -11392,11 +11392,11 @@ int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendCoplayTime(struct w return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends018_GetFriendCoplayGame(struct w_steam_iface *_this, CSteamID steamIDFriend) +uint32_t __thiscall winISteamFriends_SteamFriends018_GetFriendCoplayGame(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamFriends_SteamFriends018_GetFriendCoplayGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -11404,11 +11404,11 @@ uint32_t __thiscall winISteamFriends_SteamFriends018_GetFriendCoplayGame(struct return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends018_JoinClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamFriends_SteamFriends018_JoinClanChatRoom(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends018_JoinClanChatRoom_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -11416,11 +11416,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends018_JoinClanChatRoom(struct w_s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends018_LeaveClanChatRoom(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends018_LeaveClanChatRoom(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends018_LeaveClanChatRoom_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -11428,11 +11428,11 @@ int8_t __thiscall winISteamFriends_SteamFriends018_LeaveClanChatRoom(struct w_st return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends018_GetClanChatMemberCount(struct w_steam_iface *_this, CSteamID steamIDClan) +int32_t __thiscall winISteamFriends_SteamFriends018_GetClanChatMemberCount(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends018_GetClanChatMemberCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -11440,11 +11440,11 @@ int32_t __thiscall winISteamFriends_SteamFriends018_GetClanChatMemberCount(struc return params._ret; } -CSteamID * __thiscall winISteamFriends_SteamFriends018_GetChatMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) +CSteamID * __thiscall winISteamFriends_SteamFriends018_GetChatMemberByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDClan, int32_t iUser) { struct ISteamFriends_SteamFriends018_GetChatMemberByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDClan = steamIDClan, .iUser = iUser, @@ -11454,11 +11454,11 @@ CSteamID * __thiscall winISteamFriends_SteamFriends018_GetChatMemberByIndex(stru return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends018_SendClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, const char *pchText) +int8_t __thiscall winISteamFriends_SteamFriends018_SendClanChatMessage(struct w_iface *_this, CSteamID steamIDClanChat, const char *pchText) { struct ISteamFriends_SteamFriends018_SendClanChatMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .pchText = pchText, }; @@ -11468,11 +11468,11 @@ int8_t __thiscall winISteamFriends_SteamFriends018_SendClanChatMessage(struct w_ return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends018_GetClanChatMessage(struct w_steam_iface *_this, CSteamID steamIDClanChat, int32_t iMessage, void *prgchText, int32_t cchTextMax, uint32_t *peChatEntryType, CSteamID *psteamidChatter) +int32_t __thiscall winISteamFriends_SteamFriends018_GetClanChatMessage(struct w_iface *_this, CSteamID steamIDClanChat, int32_t iMessage, void *prgchText, int32_t cchTextMax, uint32_t *peChatEntryType, CSteamID *psteamidChatter) { struct ISteamFriends_SteamFriends018_GetClanChatMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .iMessage = iMessage, .prgchText = prgchText, @@ -11485,11 +11485,11 @@ int32_t __thiscall winISteamFriends_SteamFriends018_GetClanChatMessage(struct w_ return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends018_IsClanChatAdmin(struct w_steam_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) +int8_t __thiscall winISteamFriends_SteamFriends018_IsClanChatAdmin(struct w_iface *_this, CSteamID steamIDClanChat, CSteamID steamIDUser) { struct ISteamFriends_SteamFriends018_IsClanChatAdmin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, .steamIDUser = steamIDUser, }; @@ -11498,11 +11498,11 @@ int8_t __thiscall winISteamFriends_SteamFriends018_IsClanChatAdmin(struct w_stea return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends018_IsClanChatWindowOpenInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends018_IsClanChatWindowOpenInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends018_IsClanChatWindowOpenInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -11510,11 +11510,11 @@ int8_t __thiscall winISteamFriends_SteamFriends018_IsClanChatWindowOpenInSteam(s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends018_OpenClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends018_OpenClanChatWindowInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends018_OpenClanChatWindowInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -11522,11 +11522,11 @@ int8_t __thiscall winISteamFriends_SteamFriends018_OpenClanChatWindowInSteam(str return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends018_CloseClanChatWindowInSteam(struct w_steam_iface *_this, CSteamID steamIDClanChat) +int8_t __thiscall winISteamFriends_SteamFriends018_CloseClanChatWindowInSteam(struct w_iface *_this, CSteamID steamIDClanChat) { struct ISteamFriends_SteamFriends018_CloseClanChatWindowInSteam_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClanChat = steamIDClanChat, }; TRACE("%p\n", _this); @@ -11534,11 +11534,11 @@ int8_t __thiscall winISteamFriends_SteamFriends018_CloseClanChatWindowInSteam(st return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends018_SetListenForFriendsMessages(struct w_steam_iface *_this, int8_t bInterceptEnabled) +int8_t __thiscall winISteamFriends_SteamFriends018_SetListenForFriendsMessages(struct w_iface *_this, int8_t bInterceptEnabled) { struct ISteamFriends_SteamFriends018_SetListenForFriendsMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bInterceptEnabled = bInterceptEnabled, }; TRACE("%p\n", _this); @@ -11546,11 +11546,11 @@ int8_t __thiscall winISteamFriends_SteamFriends018_SetListenForFriendsMessages(s return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends018_ReplyToFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) +int8_t __thiscall winISteamFriends_SteamFriends018_ReplyToFriendMessage(struct w_iface *_this, CSteamID steamIDFriend, const char *pchMsgToSend) { struct ISteamFriends_SteamFriends018_ReplyToFriendMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .pchMsgToSend = pchMsgToSend, }; @@ -11560,11 +11560,11 @@ int8_t __thiscall winISteamFriends_SteamFriends018_ReplyToFriendMessage(struct w return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendMessage(struct w_steam_iface *_this, CSteamID steamIDFriend, int32_t iMessageID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendMessage(struct w_iface *_this, CSteamID steamIDFriend, int32_t iMessageID, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamFriends_SteamFriends018_GetFriendMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, .iMessageID = iMessageID, .pvData = pvData, @@ -11576,11 +11576,11 @@ int32_t __thiscall winISteamFriends_SteamFriends018_GetFriendMessage(struct w_st return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends018_GetFollowerCount(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamFriends_SteamFriends018_GetFollowerCount(struct w_iface *_this, CSteamID steamID) { struct ISteamFriends_SteamFriends018_GetFollowerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -11588,11 +11588,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends018_GetFollowerCount(struct w_s return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends018_IsFollowing(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamFriends_SteamFriends018_IsFollowing(struct w_iface *_this, CSteamID steamID) { struct ISteamFriends_SteamFriends018_IsFollowing_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -11600,11 +11600,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends018_IsFollowing(struct w_steam_ return params._ret; } -uint64_t __thiscall winISteamFriends_SteamFriends018_EnumerateFollowingList(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamFriends_SteamFriends018_EnumerateFollowingList(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamFriends_SteamFriends018_EnumerateFollowingList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -11612,11 +11612,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends018_EnumerateFollowingList(stru return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends018_IsClanPublic(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends018_IsClanPublic(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends018_IsClanPublic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -11624,11 +11624,11 @@ int8_t __thiscall winISteamFriends_SteamFriends018_IsClanPublic(struct w_steam_i return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends018_IsClanOfficialGameGroup(struct w_steam_iface *_this, CSteamID steamIDClan) +int8_t __thiscall winISteamFriends_SteamFriends018_IsClanOfficialGameGroup(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamFriends_SteamFriends018_IsClanOfficialGameGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -11636,33 +11636,33 @@ int8_t __thiscall winISteamFriends_SteamFriends018_IsClanOfficialGameGroup(struc return params._ret; } -int32_t __thiscall winISteamFriends_SteamFriends018_GetNumChatsWithUnreadPriorityMessages(struct w_steam_iface *_this) +int32_t __thiscall winISteamFriends_SteamFriends018_GetNumChatsWithUnreadPriorityMessages(struct w_iface *_this) { struct ISteamFriends_SteamFriends018_GetNumChatsWithUnreadPriorityMessages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_GetNumChatsWithUnreadPriorityMessages, ¶ms ); return params._ret; } -void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlayRemotePlayTogetherInviteDialog(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlayRemotePlayTogetherInviteDialog(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamFriends_SteamFriends018_ActivateGameOverlayRemotePlayTogetherInviteDialog_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_ActivateGameOverlayRemotePlayTogetherInviteDialog, ¶ms ); } -int8_t __thiscall winISteamFriends_SteamFriends018_RegisterProtocolInOverlayBrowser(struct w_steam_iface *_this, const char *pchProtocol) +int8_t __thiscall winISteamFriends_SteamFriends018_RegisterProtocolInOverlayBrowser(struct w_iface *_this, const char *pchProtocol) { struct ISteamFriends_SteamFriends018_RegisterProtocolInOverlayBrowser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchProtocol = pchProtocol, }; TRACE("%p\n", _this); @@ -11671,11 +11671,11 @@ int8_t __thiscall winISteamFriends_SteamFriends018_RegisterProtocolInOverlayBrow return params._ret; } -void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialogConnectString(struct w_steam_iface *_this, const char *pchConnectString) +void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialogConnectString(struct w_iface *_this, const char *pchConnectString) { struct ISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialogConnectString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchConnectString = pchConnectString, }; TRACE("%p\n", _this); @@ -11683,11 +11683,11 @@ void __thiscall winISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialog STEAMCLIENT_CALL( ISteamFriends_SteamFriends018_ActivateGameOverlayInviteDialogConnectString, ¶ms ); } -uint64_t __thiscall winISteamFriends_SteamFriends018_RequestEquippedProfileItems(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamFriends_SteamFriends018_RequestEquippedProfileItems(struct w_iface *_this, CSteamID steamID) { struct ISteamFriends_SteamFriends018_RequestEquippedProfileItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -11695,11 +11695,11 @@ uint64_t __thiscall winISteamFriends_SteamFriends018_RequestEquippedProfileItems return params._ret; } -int8_t __thiscall winISteamFriends_SteamFriends018_BHasEquippedProfileItem(struct w_steam_iface *_this, CSteamID steamID, uint32_t itemType) +int8_t __thiscall winISteamFriends_SteamFriends018_BHasEquippedProfileItem(struct w_iface *_this, CSteamID steamID, uint32_t itemType) { struct ISteamFriends_SteamFriends018_BHasEquippedProfileItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .itemType = itemType, }; @@ -11708,11 +11708,11 @@ int8_t __thiscall winISteamFriends_SteamFriends018_BHasEquippedProfileItem(struc return params._ret; } -const char * __thiscall winISteamFriends_SteamFriends018_GetProfileItemPropertyString(struct w_steam_iface *_this, CSteamID steamID, uint32_t itemType, uint32_t prop) +const char * __thiscall winISteamFriends_SteamFriends018_GetProfileItemPropertyString(struct w_iface *_this, CSteamID steamID, uint32_t itemType, uint32_t prop) { struct ISteamFriends_SteamFriends018_GetProfileItemPropertyString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .itemType = itemType, .prop = prop, @@ -11722,11 +11722,11 @@ const char * __thiscall winISteamFriends_SteamFriends018_GetProfileItemPropertyS return params._ret; } -uint32_t __thiscall winISteamFriends_SteamFriends018_GetProfileItemPropertyUint(struct w_steam_iface *_this, CSteamID steamID, uint32_t itemType, uint32_t prop) +uint32_t __thiscall winISteamFriends_SteamFriends018_GetProfileItemPropertyUint(struct w_iface *_this, CSteamID steamID, uint32_t itemType, uint32_t prop) { struct ISteamFriends_SteamFriends018_GetProfileItemPropertyUint_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .itemType = itemType, .prop = prop, @@ -11823,9 +11823,9 @@ __ASM_BLOCK_BEGIN(winISteamFriends_SteamFriends018_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamFriends_SteamFriends018(void *u_iface) +struct w_iface *create_winISteamFriends_SteamFriends018( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamFriends018"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamFriends018"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamFriends_SteamFriends018_vtable, 78, "SteamFriends018"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamGameCoordinator.c b/lsteamclient/winISteamGameCoordinator.c index ee6844b6..d44f1e2b 100644 --- a/lsteamclient/winISteamGameCoordinator.c +++ b/lsteamclient/winISteamGameCoordinator.c @@ -7,11 +7,11 @@ DEFINE_THISCALL_WRAPPER(winISteamGameCoordinator_SteamGameCoordinator001_SendMes DEFINE_THISCALL_WRAPPER(winISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable, 8) DEFINE_THISCALL_WRAPPER(winISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage, 20) -uint32_t __thiscall winISteamGameCoordinator_SteamGameCoordinator001_SendMessage(struct w_steam_iface *_this, uint32_t unMsgType, const void *pubData, uint32_t cubData) +uint32_t __thiscall winISteamGameCoordinator_SteamGameCoordinator001_SendMessage(struct w_iface *_this, uint32_t unMsgType, const void *pubData, uint32_t cubData) { struct ISteamGameCoordinator_SteamGameCoordinator001_SendMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unMsgType = unMsgType, .pubData = pubData, .cubData = cubData, @@ -21,11 +21,11 @@ uint32_t __thiscall winISteamGameCoordinator_SteamGameCoordinator001_SendMessage return params._ret; } -int8_t __thiscall winISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable(struct w_iface *_this, uint32_t *pcubMsgSize) { struct ISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvailable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcubMsgSize = pcubMsgSize, }; TRACE("%p\n", _this); @@ -33,11 +33,11 @@ int8_t __thiscall winISteamGameCoordinator_SteamGameCoordinator001_IsMessageAvai return params._ret; } -uint32_t __thiscall winISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage(struct w_steam_iface *_this, uint32_t *punMsgType, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) +uint32_t __thiscall winISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage(struct w_iface *_this, uint32_t *punMsgType, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { struct ISteamGameCoordinator_SteamGameCoordinator001_RetrieveMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .punMsgType = punMsgType, .pubDest = pubDest, .cubDest = cubDest, @@ -60,9 +60,9 @@ __ASM_BLOCK_BEGIN(winISteamGameCoordinator_SteamGameCoordinator001_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamGameCoordinator_SteamGameCoordinator001(void *u_iface) +struct w_iface *create_winISteamGameCoordinator_SteamGameCoordinator001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamGameCoordinator001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameCoordinator001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamGameCoordinator_SteamGameCoordinator001_vtable, 3, "SteamGameCoordinator001"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamGameSearch.c b/lsteamclient/winISteamGameSearch.c index 01b1b750..5ac3ebbb 100644 --- a/lsteamclient/winISteamGameSearch.c +++ b/lsteamclient/winISteamGameSearch.c @@ -18,11 +18,11 @@ DEFINE_THISCALL_WRAPPER(winISteamGameSearch_SteamMatchGameSearch001_CancelReques DEFINE_THISCALL_WRAPPER(winISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult, 24) DEFINE_THISCALL_WRAPPER(winISteamGameSearch_SteamMatchGameSearch001_EndGame, 12) -uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams(struct w_steam_iface *_this, const char *pchKeyToFind, const char *pchValuesToFind) +uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams(struct w_iface *_this, const char *pchKeyToFind, const char *pchValuesToFind) { struct ISteamGameSearch_SteamMatchGameSearch001_AddGameSearchParams_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToFind = pchKeyToFind, .pchValuesToFind = pchValuesToFind, }; @@ -33,11 +33,11 @@ uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_AddGameSearchPar return params._ret; } -uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t nPlayerMin, int32_t nPlayerMax) +uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby(struct w_iface *_this, CSteamID steamIDLobby, int32_t nPlayerMin, int32_t nPlayerMax) { struct ISteamGameSearch_SteamMatchGameSearch001_SearchForGameWithLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .nPlayerMin = nPlayerMin, .nPlayerMax = nPlayerMax, @@ -47,11 +47,11 @@ uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SearchForGameWit return params._ret; } -uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo(struct w_steam_iface *_this, int32_t nPlayerMin, int32_t nPlayerMax) +uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo(struct w_iface *_this, int32_t nPlayerMin, int32_t nPlayerMax) { struct ISteamGameSearch_SteamMatchGameSearch001_SearchForGameSolo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPlayerMin = nPlayerMin, .nPlayerMax = nPlayerMax, }; @@ -60,33 +60,33 @@ uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SearchForGameSol return params._ret; } -uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_AcceptGame(struct w_steam_iface *_this) +uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_AcceptGame(struct w_iface *_this) { struct ISteamGameSearch_SteamMatchGameSearch001_AcceptGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameSearch_SteamMatchGameSearch001_AcceptGame, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_DeclineGame(struct w_steam_iface *_this) +uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_DeclineGame(struct w_iface *_this) { struct ISteamGameSearch_SteamMatchGameSearch001_DeclineGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameSearch_SteamMatchGameSearch001_DeclineGame, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails(struct w_steam_iface *_this, CSteamID steamIDHost, char *pchConnectionDetails, int32_t cubConnectionDetails) +uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails(struct w_iface *_this, CSteamID steamIDHost, char *pchConnectionDetails, int32_t cubConnectionDetails) { struct ISteamGameSearch_SteamMatchGameSearch001_RetrieveConnectionDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDHost = steamIDHost, .pchConnectionDetails = pchConnectionDetails, .cubConnectionDetails = cubConnectionDetails, @@ -96,22 +96,22 @@ uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_RetrieveConnecti return params._ret; } -uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_EndGameSearch(struct w_steam_iface *_this) +uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_EndGameSearch(struct w_iface *_this) { struct ISteamGameSearch_SteamMatchGameSearch001_EndGameSearch_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameSearch_SteamMatchGameSearch001_EndGameSearch, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams(struct w_steam_iface *_this, const char *pchKey, const char *pchValue) +uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams(struct w_iface *_this, const char *pchKey, const char *pchValue) { struct ISteamGameSearch_SteamMatchGameSearch001_SetGameHostParams_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKey = pchKey, .pchValue = pchValue, }; @@ -122,11 +122,11 @@ uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SetGameHostParam return params._ret; } -uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails(struct w_steam_iface *_this, const char *pchConnectionDetails, int32_t cubConnectionDetails) +uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails(struct w_iface *_this, const char *pchConnectionDetails, int32_t cubConnectionDetails) { struct ISteamGameSearch_SteamMatchGameSearch001_SetConnectionDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchConnectionDetails = pchConnectionDetails, .cubConnectionDetails = cubConnectionDetails, }; @@ -136,11 +136,11 @@ uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SetConnectionDet return params._ret; } -uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame(struct w_steam_iface *_this, int32_t nPlayerMin, int32_t nPlayerMax, int32_t nMaxTeamSize) +uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame(struct w_iface *_this, int32_t nPlayerMin, int32_t nPlayerMax, int32_t nMaxTeamSize) { struct ISteamGameSearch_SteamMatchGameSearch001_RequestPlayersForGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPlayerMin = nPlayerMin, .nPlayerMax = nPlayerMax, .nMaxTeamSize = nMaxTeamSize, @@ -150,11 +150,11 @@ uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_RequestPlayersFo return params._ret; } -uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart(struct w_steam_iface *_this, uint64_t ullUniqueGameID) +uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart(struct w_iface *_this, uint64_t ullUniqueGameID) { struct ISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameStart_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ullUniqueGameID = ullUniqueGameID, }; TRACE("%p\n", _this); @@ -162,22 +162,22 @@ uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_HostConfirmGameS return params._ret; } -uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame(struct w_steam_iface *_this) +uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame(struct w_iface *_this) { struct ISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameSearch_SteamMatchGameSearch001_CancelRequestPlayersForGame, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult(struct w_steam_iface *_this, uint64_t ullUniqueGameID, CSteamID steamIDPlayer, uint32_t EPlayerResult) +uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult(struct w_iface *_this, uint64_t ullUniqueGameID, CSteamID steamIDPlayer, uint32_t EPlayerResult) { struct ISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ullUniqueGameID = ullUniqueGameID, .steamIDPlayer = steamIDPlayer, .EPlayerResult = EPlayerResult, @@ -187,11 +187,11 @@ uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_SubmitPlayerResu return params._ret; } -uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_EndGame(struct w_steam_iface *_this, uint64_t ullUniqueGameID) +uint32_t __thiscall winISteamGameSearch_SteamMatchGameSearch001_EndGame(struct w_iface *_this, uint64_t ullUniqueGameID) { struct ISteamGameSearch_SteamMatchGameSearch001_EndGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ullUniqueGameID = ullUniqueGameID, }; TRACE("%p\n", _this); @@ -222,9 +222,9 @@ __ASM_BLOCK_BEGIN(winISteamGameSearch_SteamMatchGameSearch001_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamGameSearch_SteamMatchGameSearch001(void *u_iface) +struct w_iface *create_winISteamGameSearch_SteamMatchGameSearch001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamMatchGameSearch001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchGameSearch001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamGameSearch_SteamMatchGameSearch001_vtable, 14, "SteamMatchGameSearch001"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamGameServer.c b/lsteamclient/winISteamGameServer.c index 5ba76549..1bef1075 100644 --- a/lsteamclient/winISteamGameServer.c +++ b/lsteamclient/winISteamGameServer.c @@ -25,53 +25,53 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer002_GSSetUserData, 20 DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort, 8) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer002_GSSetGameType, 8) -void __thiscall winISteamGameServer_SteamGameServer002_LogOn(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer002_LogOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer002_LogOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_LogOn, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer002_LogOff(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer002_LogOff(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer002_LogOff_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_LogOff, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer002_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer002_BLoggedOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer002_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_BLoggedOn, ¶ms ); return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer002_GSSetSpawnCount(struct w_steam_iface *_this, uint32_t ucSpawn) +void __thiscall winISteamGameServer_SteamGameServer002_GSSetSpawnCount(struct w_iface *_this, uint32_t ucSpawn) { struct ISteamGameServer_SteamGameServer002_GSSetSpawnCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ucSpawn = ucSpawn, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GSSetSpawnCount, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient(struct w_steam_iface *_this, void *pvEncryptionKey, uint32_t *pcbEncryptionKey, uint32_t cbMaxEncryptionKey) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient(struct w_iface *_this, void *pvEncryptionKey, uint32_t *pcbEncryptionKey, uint32_t cbMaxEncryptionKey) { struct ISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptionKeyToSendToNewClient_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvEncryptionKey = pvEncryptionKey, .pcbEncryptionKey = pcbEncryptionKey, .cbMaxEncryptionKey = cbMaxEncryptionKey, @@ -81,11 +81,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer002_GSGetSteam2GetEncryptio return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect(struct w_steam_iface *_this, uint32_t unUserID, const void *pvRawKey, uint32_t unKeyLen, uint32_t unIPPublic, uint16_t usPort, const void *pvCookie, uint32_t cubCookie) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect(struct w_iface *_this, uint32_t unUserID, const void *pvRawKey, uint32_t unKeyLen, uint32_t unIPPublic, uint16_t usPort, const void *pvCookie, uint32_t cubCookie) { struct ISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unUserID = unUserID, .pvRawKey = pvRawKey, .unKeyLen = unKeyLen, @@ -99,11 +99,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSendSteam2UserConnect return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect(struct w_steam_iface *_this, CSteamID steamID, uint32_t unIPPublic, const void *pvCookie, uint32_t cubCookie) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect(struct w_iface *_this, CSteamID steamID, uint32_t unIPPublic, const void *pvCookie, uint32_t cubCookie) { struct ISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .unIPPublic = unIPPublic, .pvCookie = pvCookie, @@ -114,11 +114,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSendSteam3UserConnect return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer002_GSRemoveUserConnect(struct w_steam_iface *_this, uint32_t unUserID) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSRemoveUserConnect(struct w_iface *_this, uint32_t unUserID) { struct ISteamGameServer_SteamGameServer002_GSRemoveUserConnect_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unUserID = unUserID, }; TRACE("%p\n", _this); @@ -126,11 +126,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer002_GSRemoveUserConnect(str return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSendUserDisconnect(struct w_steam_iface *_this, CSteamID steamID, uint32_t unUserID) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSendUserDisconnect(struct w_iface *_this, CSteamID steamID, uint32_t unUserID) { struct ISteamGameServer_SteamGameServer002_GSSendUserDisconnect_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .unUserID = unUserID, }; @@ -139,11 +139,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSendUserDisconnect(st return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSendUserStatusResponse(struct w_steam_iface *_this, CSteamID steamID, int32_t nSecondsConnected, int32_t nSecondsSinceLast) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSendUserStatusResponse(struct w_iface *_this, CSteamID steamID, int32_t nSecondsConnected, int32_t nSecondsSinceLast) { struct ISteamGameServer_SteamGameServer002_GSSendUserStatusResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .nSecondsConnected = nSecondsConnected, .nSecondsSinceLast = nSecondsSinceLast, @@ -153,11 +153,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSendUserStatusRespons return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus(struct w_steam_iface *_this, int32_t nAppIdServed, uint32_t unServerFlags, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, int32_t unGamePort, const char *pchServerName, const char *pchGameDir, const char *pchMapName, const char *pchVersion) +int8_t __thiscall winISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus(struct w_iface *_this, int32_t nAppIdServed, uint32_t unServerFlags, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, int32_t unGamePort, const char *pchServerName, const char *pchGameDir, const char *pchMapName, const char *pchVersion) { struct ISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppIdServed = nAppIdServed, .unServerFlags = unServerFlags, .cPlayers = cPlayers, @@ -178,11 +178,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer002_Obsolete_GSSetStatus(st return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer002_GSUpdateStatus(struct w_steam_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pchMapName) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSUpdateStatus(struct w_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pchMapName) { struct ISteamGameServer_SteamGameServer002_GSUpdateStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cPlayers = cPlayers, .cPlayersMax = cPlayersMax, .cBotPlayers = cBotPlayers, @@ -196,22 +196,22 @@ int8_t __thiscall winISteamGameServer_SteamGameServer002_GSUpdateStatus(struct w return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer002_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer002_BSecure(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer002_BSecure_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_BSecure, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer002_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer002_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer002_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -219,11 +219,11 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer002_GetSteamID(struct w return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSetServerType(struct w_steam_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint32_t unGamePort, const char *pchGameDir, const char *pchVersion) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSetServerType(struct w_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint32_t unGamePort, const char *pchGameDir, const char *pchVersion) { struct ISteamGameServer_SteamGameServer002_GSSetServerType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameAppId = nGameAppId, .unServerFlags = unServerFlags, .unGameIP = unGameIP, @@ -238,11 +238,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSetServerType(struct return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSetServerType2(struct w_steam_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSetServerType2(struct w_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) { struct ISteamGameServer_SteamGameServer002_GSSetServerType2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameAppId = nGameAppId, .unServerFlags = unServerFlags, .unGameIP = unGameIP, @@ -260,11 +260,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSetServerType2(struct return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer002_GSUpdateStatus2(struct w_steam_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSUpdateStatus2(struct w_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) { struct ISteamGameServer_SteamGameServer002_GSUpdateStatus2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cPlayers = cPlayers, .cPlayersMax = cPlayersMax, .cBotPlayers = cBotPlayers, @@ -280,11 +280,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer002_GSUpdateStatus2(struct return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser(struct w_steam_iface *_this, CSteamID *pSteamID) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser(struct w_iface *_this, CSteamID *pSteamID) { struct ISteamGameServer_SteamGameServer002_GSCreateUnauthenticatedUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pSteamID = pSteamID, }; TRACE("%p\n", _this); @@ -292,11 +292,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer002_GSCreateUnauthenticated return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSetUserData(struct w_steam_iface *_this, CSteamID steamID, const char *pPlayerName, uint32_t nFrags) +int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSetUserData(struct w_iface *_this, CSteamID steamID, const char *pPlayerName, uint32_t nFrags) { struct ISteamGameServer_SteamGameServer002_GSSetUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .pPlayerName = pPlayerName, .nFrags = nFrags, @@ -307,22 +307,22 @@ int8_t __thiscall winISteamGameServer_SteamGameServer002_GSSetUserData(struct w_ return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) +void __thiscall winISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort(struct w_iface *_this, uint16_t unSpectatorPort) { struct ISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer002_GSUpdateSpectatorPort, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer002_GSSetGameType(struct w_steam_iface *_this, const char *pchType) +void __thiscall winISteamGameServer_SteamGameServer002_GSSetGameType(struct w_iface *_this, const char *pchType) { struct ISteamGameServer_SteamGameServer002_GSSetGameType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchType = pchType, }; TRACE("%p\n", _this); @@ -360,9 +360,9 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer002_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamGameServer_SteamGameServer002(void *u_iface) +struct w_iface *create_winISteamGameServer_SteamGameServer002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamGameServer002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamGameServer_SteamGameServer002_vtable, 21, "SteamGameServer002"); r->u_iface = u_iface; @@ -387,53 +387,53 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer003_GSUpdateSpectator DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer003_GSSetGameType, 8) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus, 16) -void __thiscall winISteamGameServer_SteamGameServer003_LogOn(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer003_LogOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer003_LogOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_LogOn, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer003_LogOff(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer003_LogOff(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer003_LogOff_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_LogOff, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer003_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer003_BLoggedOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer003_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_BLoggedOn, ¶ms ); return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer003_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer003_BSecure(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer003_BSecure_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_BSecure, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer003_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer003_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer003_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -441,11 +441,11 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer003_GetSteamID(struct w return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient(struct w_steam_iface *_this, void *pvEncryptionKey, uint32_t *pcbEncryptionKey, uint32_t cbMaxEncryptionKey) +int8_t __thiscall winISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient(struct w_iface *_this, void *pvEncryptionKey, uint32_t *pcbEncryptionKey, uint32_t cbMaxEncryptionKey) { struct ISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptionKeyToSendToNewClient_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvEncryptionKey = pvEncryptionKey, .pcbEncryptionKey = pcbEncryptionKey, .cbMaxEncryptionKey = cbMaxEncryptionKey, @@ -455,11 +455,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer003_GSGetSteam2GetEncryptio return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer003_GSSendUserConnect(struct w_steam_iface *_this, uint32_t unUserID, uint32_t unIPPublic, uint16_t usPort, const void *pvCookie, uint32_t cubCookie) +int8_t __thiscall winISteamGameServer_SteamGameServer003_GSSendUserConnect(struct w_iface *_this, uint32_t unUserID, uint32_t unIPPublic, uint16_t usPort, const void *pvCookie, uint32_t cubCookie) { struct ISteamGameServer_SteamGameServer003_GSSendUserConnect_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unUserID = unUserID, .unIPPublic = unIPPublic, .usPort = usPort, @@ -471,11 +471,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer003_GSSendUserConnect(struc return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer003_GSRemoveUserConnect(struct w_steam_iface *_this, uint32_t unUserID) +int8_t __thiscall winISteamGameServer_SteamGameServer003_GSRemoveUserConnect(struct w_iface *_this, uint32_t unUserID) { struct ISteamGameServer_SteamGameServer003_GSRemoveUserConnect_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unUserID = unUserID, }; TRACE("%p\n", _this); @@ -483,11 +483,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer003_GSRemoveUserConnect(str return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer003_GSSendUserDisconnect(struct w_steam_iface *_this, CSteamID steamID, uint32_t unUserID) +int8_t __thiscall winISteamGameServer_SteamGameServer003_GSSendUserDisconnect(struct w_iface *_this, CSteamID steamID, uint32_t unUserID) { struct ISteamGameServer_SteamGameServer003_GSSendUserDisconnect_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .unUserID = unUserID, }; @@ -496,22 +496,22 @@ int8_t __thiscall winISteamGameServer_SteamGameServer003_GSSendUserDisconnect(st return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer003_GSSetSpawnCount(struct w_steam_iface *_this, uint32_t ucSpawn) +void __thiscall winISteamGameServer_SteamGameServer003_GSSetSpawnCount(struct w_iface *_this, uint32_t ucSpawn) { struct ISteamGameServer_SteamGameServer003_GSSetSpawnCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ucSpawn = ucSpawn, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_GSSetSpawnCount, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer003_GSSetServerType(struct w_steam_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) +int8_t __thiscall winISteamGameServer_SteamGameServer003_GSSetServerType(struct w_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) { struct ISteamGameServer_SteamGameServer003_GSSetServerType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameAppId = nGameAppId, .unServerFlags = unServerFlags, .unGameIP = unGameIP, @@ -529,11 +529,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer003_GSSetServerType(struct return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer003_GSUpdateStatus(struct w_steam_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) +int8_t __thiscall winISteamGameServer_SteamGameServer003_GSUpdateStatus(struct w_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) { struct ISteamGameServer_SteamGameServer003_GSUpdateStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cPlayers = cPlayers, .cPlayersMax = cPlayersMax, .cBotPlayers = cBotPlayers, @@ -549,11 +549,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer003_GSUpdateStatus(struct w return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser(struct w_steam_iface *_this, CSteamID *pSteamID) +int8_t __thiscall winISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser(struct w_iface *_this, CSteamID *pSteamID) { struct ISteamGameServer_SteamGameServer003_GSCreateUnauthenticatedUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pSteamID = pSteamID, }; TRACE("%p\n", _this); @@ -561,11 +561,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer003_GSCreateUnauthenticated return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer003_GSSetUserData(struct w_steam_iface *_this, CSteamID steamID, const char *pPlayerName, uint32_t nFrags) +int8_t __thiscall winISteamGameServer_SteamGameServer003_GSSetUserData(struct w_iface *_this, CSteamID steamID, const char *pPlayerName, uint32_t nFrags) { struct ISteamGameServer_SteamGameServer003_GSSetUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .pPlayerName = pPlayerName, .nFrags = nFrags, @@ -576,22 +576,22 @@ int8_t __thiscall winISteamGameServer_SteamGameServer003_GSSetUserData(struct w_ return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) +void __thiscall winISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort(struct w_iface *_this, uint16_t unSpectatorPort) { struct ISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_GSUpdateSpectatorPort, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer003_GSSetGameType(struct w_steam_iface *_this, const char *pchType) +void __thiscall winISteamGameServer_SteamGameServer003_GSSetGameType(struct w_iface *_this, const char *pchType) { struct ISteamGameServer_SteamGameServer003_GSSetGameType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchType = pchType, }; TRACE("%p\n", _this); @@ -599,11 +599,11 @@ void __thiscall winISteamGameServer_SteamGameServer003_GSSetGameType(struct w_st STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer003_GSSetGameType, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) +int8_t __thiscall winISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus(struct w_iface *_this, CSteamID steamID, const char *pchAchievementName) { struct ISteamGameServer_SteamGameServer003_GSGetUserAchievementStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .pchAchievementName = pchAchievementName, }; @@ -639,9 +639,9 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer003_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamGameServer_SteamGameServer003(void *u_iface) +struct w_iface *create_winISteamGameServer_SteamGameServer003( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamGameServer003"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer003"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamGameServer_SteamGameServer003_vtable, 17, "SteamGameServer003"); r->u_iface = u_iface; @@ -663,53 +663,53 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer004_UpdateSpectatorPo DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer004_SetGameType, 8) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer004_BGetUserAchievementStatus, 16) -void __thiscall winISteamGameServer_SteamGameServer004_LogOn(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer004_LogOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer004_LogOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_LogOn, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer004_LogOff(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer004_LogOff(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer004_LogOff_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_LogOff, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer004_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer004_BLoggedOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer004_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_BLoggedOn, ¶ms ); return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer004_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer004_BSecure(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer004_BSecure_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_BSecure, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer004_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer004_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer004_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -717,11 +717,11 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer004_GetSteamID(struct w return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, CSteamID steamIDUser, uint32_t unIPClient, void *pvAuthBlob, uint32_t cubAuthBlobSize) +void __thiscall winISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate(struct w_iface *_this, CSteamID steamIDUser, uint32_t unIPClient, void *pvAuthBlob, uint32_t cubAuthBlobSize) { struct ISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .unIPClient = unIPClient, .pvAuthBlob = pvAuthBlob, @@ -731,11 +731,11 @@ void __thiscall winISteamGameServer_SteamGameServer004_SendUserConnectAndAuthent STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_SendUserConnectAndAuthenticate, ¶ms ); } -CSteamID * __thiscall winISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer004_CreateUnauthenticatedUserConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -743,22 +743,22 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer004_CreateUnauthenticat return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer004_SendUserDisconnect(struct w_steam_iface *_this, CSteamID steamIDUser) +void __thiscall winISteamGameServer_SteamGameServer004_SendUserDisconnect(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamGameServer_SteamGameServer004_SendUserDisconnect_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_SendUserDisconnect, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer004_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer004_BUpdateUserData(struct w_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer004_BUpdateUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchPlayerName = pchPlayerName, .uScore = uScore, @@ -769,11 +769,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer004_BUpdateUserData(struct return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer004_BSetServerType(struct w_steam_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) +int8_t __thiscall winISteamGameServer_SteamGameServer004_BSetServerType(struct w_iface *_this, int32_t nGameAppId, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) { struct ISteamGameServer_SteamGameServer004_BSetServerType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameAppId = nGameAppId, .unServerFlags = unServerFlags, .unGameIP = unGameIP, @@ -791,11 +791,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer004_BSetServerType(struct w return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer004_UpdateServerStatus(struct w_steam_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) +void __thiscall winISteamGameServer_SteamGameServer004_UpdateServerStatus(struct w_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) { struct ISteamGameServer_SteamGameServer004_UpdateServerStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cPlayers = cPlayers, .cPlayersMax = cPlayersMax, .cBotPlayers = cBotPlayers, @@ -810,22 +810,22 @@ void __thiscall winISteamGameServer_SteamGameServer004_UpdateServerStatus(struct STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_UpdateServerStatus, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer004_UpdateSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) +void __thiscall winISteamGameServer_SteamGameServer004_UpdateSpectatorPort(struct w_iface *_this, uint16_t unSpectatorPort) { struct ISteamGameServer_SteamGameServer004_UpdateSpectatorPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_UpdateSpectatorPort, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer004_SetGameType(struct w_steam_iface *_this, const char *pchGameType) +void __thiscall winISteamGameServer_SteamGameServer004_SetGameType(struct w_iface *_this, const char *pchGameType) { struct ISteamGameServer_SteamGameServer004_SetGameType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGameType = pchGameType, }; TRACE("%p\n", _this); @@ -833,11 +833,11 @@ void __thiscall winISteamGameServer_SteamGameServer004_SetGameType(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer004_SetGameType, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer004_BGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) +int8_t __thiscall winISteamGameServer_SteamGameServer004_BGetUserAchievementStatus(struct w_iface *_this, CSteamID steamID, const char *pchAchievementName) { struct ISteamGameServer_SteamGameServer004_BGetUserAchievementStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .pchAchievementName = pchAchievementName, }; @@ -870,9 +870,9 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer004_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamGameServer_SteamGameServer004(void *u_iface) +struct w_iface *create_winISteamGameServer_SteamGameServer004( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamGameServer004"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer004"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamGameServer_SteamGameServer004_vtable, 14, "SteamGameServer004"); r->u_iface = u_iface; @@ -894,53 +894,53 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer005_UpdateSpectatorPo DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer005_SetGameType, 8) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer005_BGetUserAchievementStatus, 16) -void __thiscall winISteamGameServer_SteamGameServer005_LogOn(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer005_LogOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer005_LogOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_LogOn, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer005_LogOff(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer005_LogOff(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer005_LogOff_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_LogOff, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer005_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer005_BLoggedOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer005_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_BLoggedOn, ¶ms ); return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer005_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer005_BSecure(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer005_BSecure_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_BSecure, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer005_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer005_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer005_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -948,11 +948,11 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer005_GetSteamID(struct w return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) +int8_t __thiscall winISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate(struct w_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { struct ISteamGameServer_SteamGameServer005_SendUserConnectAndAuthenticate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPClient = unIPClient, .pvAuthBlob = pvAuthBlob, .cubAuthBlobSize = cubAuthBlobSize, @@ -963,11 +963,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer005_SendUserConnectAndAuthe return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer005_CreateUnauthenticatedUserConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -975,22 +975,22 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer005_CreateUnauthenticat return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer005_SendUserDisconnect(struct w_steam_iface *_this, CSteamID steamIDUser) +void __thiscall winISteamGameServer_SteamGameServer005_SendUserDisconnect(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamGameServer_SteamGameServer005_SendUserDisconnect_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_SendUserDisconnect, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer005_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer005_BUpdateUserData(struct w_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer005_BUpdateUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchPlayerName = pchPlayerName, .uScore = uScore, @@ -1001,11 +1001,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer005_BUpdateUserData(struct return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer005_BSetServerType(struct w_steam_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) +int8_t __thiscall winISteamGameServer_SteamGameServer005_BSetServerType(struct w_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) { struct ISteamGameServer_SteamGameServer005_BSetServerType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unServerFlags = unServerFlags, .unGameIP = unGameIP, .unGamePort = unGamePort, @@ -1022,11 +1022,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer005_BSetServerType(struct w return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer005_UpdateServerStatus(struct w_steam_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) +void __thiscall winISteamGameServer_SteamGameServer005_UpdateServerStatus(struct w_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) { struct ISteamGameServer_SteamGameServer005_UpdateServerStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cPlayers = cPlayers, .cPlayersMax = cPlayersMax, .cBotPlayers = cBotPlayers, @@ -1041,22 +1041,22 @@ void __thiscall winISteamGameServer_SteamGameServer005_UpdateServerStatus(struct STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_UpdateServerStatus, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer005_UpdateSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) +void __thiscall winISteamGameServer_SteamGameServer005_UpdateSpectatorPort(struct w_iface *_this, uint16_t unSpectatorPort) { struct ISteamGameServer_SteamGameServer005_UpdateSpectatorPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_UpdateSpectatorPort, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer005_SetGameType(struct w_steam_iface *_this, const char *pchGameType) +void __thiscall winISteamGameServer_SteamGameServer005_SetGameType(struct w_iface *_this, const char *pchGameType) { struct ISteamGameServer_SteamGameServer005_SetGameType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGameType = pchGameType, }; TRACE("%p\n", _this); @@ -1064,11 +1064,11 @@ void __thiscall winISteamGameServer_SteamGameServer005_SetGameType(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer005_SetGameType, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer005_BGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) +int8_t __thiscall winISteamGameServer_SteamGameServer005_BGetUserAchievementStatus(struct w_iface *_this, CSteamID steamID, const char *pchAchievementName) { struct ISteamGameServer_SteamGameServer005_BGetUserAchievementStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .pchAchievementName = pchAchievementName, }; @@ -1101,9 +1101,9 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer005_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamGameServer_SteamGameServer005(void *u_iface) +struct w_iface *create_winISteamGameServer_SteamGameServer005( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamGameServer005"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer005"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamGameServer_SteamGameServer005_vtable, 14, "SteamGameServer005"); r->u_iface = u_iface; @@ -1128,53 +1128,53 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer008_GetGameplayStats, DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer008_RequestUserGroupStatus, 20) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer008_GetPublicIP, 4) -void __thiscall winISteamGameServer_SteamGameServer008_LogOn(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer008_LogOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer008_LogOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_LogOn, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer008_LogOff(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer008_LogOff(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer008_LogOff_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_LogOff, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer008_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer008_BLoggedOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer008_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_BLoggedOn, ¶ms ); return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer008_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer008_BSecure(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer008_BSecure_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_BSecure, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer008_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer008_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer008_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -1182,11 +1182,11 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer008_GetSteamID(struct w return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) +int8_t __thiscall winISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate(struct w_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { struct ISteamGameServer_SteamGameServer008_SendUserConnectAndAuthenticate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPClient = unIPClient, .pvAuthBlob = pvAuthBlob, .cubAuthBlobSize = cubAuthBlobSize, @@ -1197,11 +1197,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer008_SendUserConnectAndAuthe return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer008_CreateUnauthenticatedUserConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -1209,22 +1209,22 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer008_CreateUnauthenticat return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer008_SendUserDisconnect(struct w_steam_iface *_this, CSteamID steamIDUser) +void __thiscall winISteamGameServer_SteamGameServer008_SendUserDisconnect(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamGameServer_SteamGameServer008_SendUserDisconnect_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_SendUserDisconnect, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer008_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer008_BUpdateUserData(struct w_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer008_BUpdateUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchPlayerName = pchPlayerName, .uScore = uScore, @@ -1235,11 +1235,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer008_BUpdateUserData(struct return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer008_BSetServerType(struct w_steam_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) +int8_t __thiscall winISteamGameServer_SteamGameServer008_BSetServerType(struct w_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) { struct ISteamGameServer_SteamGameServer008_BSetServerType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unServerFlags = unServerFlags, .unGameIP = unGameIP, .unGamePort = unGamePort, @@ -1256,11 +1256,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer008_BSetServerType(struct w return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer008_UpdateServerStatus(struct w_steam_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) +void __thiscall winISteamGameServer_SteamGameServer008_UpdateServerStatus(struct w_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) { struct ISteamGameServer_SteamGameServer008_UpdateServerStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cPlayers = cPlayers, .cPlayersMax = cPlayersMax, .cBotPlayers = cBotPlayers, @@ -1275,22 +1275,22 @@ void __thiscall winISteamGameServer_SteamGameServer008_UpdateServerStatus(struct STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_UpdateServerStatus, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer008_UpdateSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) +void __thiscall winISteamGameServer_SteamGameServer008_UpdateSpectatorPort(struct w_iface *_this, uint16_t unSpectatorPort) { struct ISteamGameServer_SteamGameServer008_UpdateSpectatorPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_UpdateSpectatorPort, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer008_SetGameType(struct w_steam_iface *_this, const char *pchGameType) +void __thiscall winISteamGameServer_SteamGameServer008_SetGameType(struct w_iface *_this, const char *pchGameType) { struct ISteamGameServer_SteamGameServer008_SetGameType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGameType = pchGameType, }; TRACE("%p\n", _this); @@ -1298,11 +1298,11 @@ void __thiscall winISteamGameServer_SteamGameServer008_SetGameType(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_SetGameType, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer008_BGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) +int8_t __thiscall winISteamGameServer_SteamGameServer008_BGetUserAchievementStatus(struct w_iface *_this, CSteamID steamID, const char *pchAchievementName) { struct ISteamGameServer_SteamGameServer008_BGetUserAchievementStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .pchAchievementName = pchAchievementName, }; @@ -1312,21 +1312,21 @@ int8_t __thiscall winISteamGameServer_SteamGameServer008_BGetUserAchievementStat return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer008_GetGameplayStats(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer008_GetGameplayStats(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer008_GetGameplayStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_GetGameplayStats, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer008_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) +int8_t __thiscall winISteamGameServer_SteamGameServer008_RequestUserGroupStatus(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { struct ISteamGameServer_SteamGameServer008_RequestUserGroupStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDGroup = steamIDGroup, }; @@ -1335,11 +1335,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer008_RequestUserGroupStatus( return params._ret; } -uint32_t __thiscall winISteamGameServer_SteamGameServer008_GetPublicIP(struct w_steam_iface *_this) +uint32_t __thiscall winISteamGameServer_SteamGameServer008_GetPublicIP(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer008_GetPublicIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer008_GetPublicIP, ¶ms ); @@ -1372,9 +1372,9 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer008_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamGameServer_SteamGameServer008(void *u_iface) +struct w_iface *create_winISteamGameServer_SteamGameServer008( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamGameServer008"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer008"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamGameServer_SteamGameServer008_vtable, 17, "SteamGameServer008"); r->u_iface = u_iface; @@ -1401,53 +1401,53 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer009_GetPublicIP, 4) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer009_SetGameData, 8) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer009_UserHasLicenseForApp, 16) -void __thiscall winISteamGameServer_SteamGameServer009_LogOn(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer009_LogOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer009_LogOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_LogOn, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer009_LogOff(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer009_LogOff(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer009_LogOff_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_LogOff, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer009_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer009_BLoggedOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer009_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_BLoggedOn, ¶ms ); return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer009_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer009_BSecure(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer009_BSecure_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_BSecure, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer009_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer009_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer009_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -1455,11 +1455,11 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer009_GetSteamID(struct w return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) +int8_t __thiscall winISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate(struct w_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { struct ISteamGameServer_SteamGameServer009_SendUserConnectAndAuthenticate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPClient = unIPClient, .pvAuthBlob = pvAuthBlob, .cubAuthBlobSize = cubAuthBlobSize, @@ -1470,11 +1470,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer009_SendUserConnectAndAuthe return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer009_CreateUnauthenticatedUserConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -1482,22 +1482,22 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer009_CreateUnauthenticat return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer009_SendUserDisconnect(struct w_steam_iface *_this, CSteamID steamIDUser) +void __thiscall winISteamGameServer_SteamGameServer009_SendUserDisconnect(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamGameServer_SteamGameServer009_SendUserDisconnect_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_SendUserDisconnect, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer009_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer009_BUpdateUserData(struct w_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer009_BUpdateUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchPlayerName = pchPlayerName, .uScore = uScore, @@ -1508,11 +1508,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer009_BUpdateUserData(struct return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer009_BSetServerType(struct w_steam_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) +int8_t __thiscall winISteamGameServer_SteamGameServer009_BSetServerType(struct w_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) { struct ISteamGameServer_SteamGameServer009_BSetServerType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unServerFlags = unServerFlags, .unGameIP = unGameIP, .unGamePort = unGamePort, @@ -1529,11 +1529,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer009_BSetServerType(struct w return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer009_UpdateServerStatus(struct w_steam_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) +void __thiscall winISteamGameServer_SteamGameServer009_UpdateServerStatus(struct w_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) { struct ISteamGameServer_SteamGameServer009_UpdateServerStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cPlayers = cPlayers, .cPlayersMax = cPlayersMax, .cBotPlayers = cBotPlayers, @@ -1548,22 +1548,22 @@ void __thiscall winISteamGameServer_SteamGameServer009_UpdateServerStatus(struct STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_UpdateServerStatus, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer009_UpdateSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) +void __thiscall winISteamGameServer_SteamGameServer009_UpdateSpectatorPort(struct w_iface *_this, uint16_t unSpectatorPort) { struct ISteamGameServer_SteamGameServer009_UpdateSpectatorPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_UpdateSpectatorPort, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer009_SetGameType(struct w_steam_iface *_this, const char *pchGameType) +void __thiscall winISteamGameServer_SteamGameServer009_SetGameType(struct w_iface *_this, const char *pchGameType) { struct ISteamGameServer_SteamGameServer009_SetGameType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGameType = pchGameType, }; TRACE("%p\n", _this); @@ -1571,11 +1571,11 @@ void __thiscall winISteamGameServer_SteamGameServer009_SetGameType(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_SetGameType, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer009_BGetUserAchievementStatus(struct w_steam_iface *_this, CSteamID steamID, const char *pchAchievementName) +int8_t __thiscall winISteamGameServer_SteamGameServer009_BGetUserAchievementStatus(struct w_iface *_this, CSteamID steamID, const char *pchAchievementName) { struct ISteamGameServer_SteamGameServer009_BGetUserAchievementStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .pchAchievementName = pchAchievementName, }; @@ -1585,21 +1585,21 @@ int8_t __thiscall winISteamGameServer_SteamGameServer009_BGetUserAchievementStat return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer009_GetGameplayStats(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer009_GetGameplayStats(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer009_GetGameplayStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_GetGameplayStats, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer009_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) +int8_t __thiscall winISteamGameServer_SteamGameServer009_RequestUserGroupStatus(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { struct ISteamGameServer_SteamGameServer009_RequestUserGroupStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDGroup = steamIDGroup, }; @@ -1608,22 +1608,22 @@ int8_t __thiscall winISteamGameServer_SteamGameServer009_RequestUserGroupStatus( return params._ret; } -uint32_t __thiscall winISteamGameServer_SteamGameServer009_GetPublicIP(struct w_steam_iface *_this) +uint32_t __thiscall winISteamGameServer_SteamGameServer009_GetPublicIP(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer009_GetPublicIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_GetPublicIP, ¶ms ); return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer009_SetGameData(struct w_steam_iface *_this, const char *pchGameData) +void __thiscall winISteamGameServer_SteamGameServer009_SetGameData(struct w_iface *_this, const char *pchGameData) { struct ISteamGameServer_SteamGameServer009_SetGameData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGameData = pchGameData, }; TRACE("%p\n", _this); @@ -1631,11 +1631,11 @@ void __thiscall winISteamGameServer_SteamGameServer009_SetGameData(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer009_SetGameData, ¶ms ); } -uint32_t __thiscall winISteamGameServer_SteamGameServer009_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamGameServer_SteamGameServer009_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamGameServer_SteamGameServer009_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -1672,9 +1672,9 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer009_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamGameServer_SteamGameServer009(void *u_iface) +struct w_iface *create_winISteamGameServer_SteamGameServer009( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamGameServer009"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer009"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamGameServer_SteamGameServer009_vtable, 19, "SteamGameServer009"); r->u_iface = u_iface; @@ -1705,53 +1705,53 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer010_BeginAuthSession, DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer010_EndAuthSession, 12) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer010_CancelAuthTicket, 8) -void __thiscall winISteamGameServer_SteamGameServer010_LogOn(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer010_LogOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer010_LogOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_LogOn, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer010_LogOff(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer010_LogOff(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer010_LogOff_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_LogOff, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer010_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer010_BLoggedOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer010_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_BLoggedOn, ¶ms ); return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer010_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer010_BSecure(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer010_BSecure_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_BSecure, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer010_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer010_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer010_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -1759,11 +1759,11 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer010_GetSteamID(struct w return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) +int8_t __thiscall winISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate(struct w_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { struct ISteamGameServer_SteamGameServer010_SendUserConnectAndAuthenticate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPClient = unIPClient, .pvAuthBlob = pvAuthBlob, .cubAuthBlobSize = cubAuthBlobSize, @@ -1774,11 +1774,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer010_SendUserConnectAndAuthe return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer010_CreateUnauthenticatedUserConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -1786,22 +1786,22 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer010_CreateUnauthenticat return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer010_SendUserDisconnect(struct w_steam_iface *_this, CSteamID steamIDUser) +void __thiscall winISteamGameServer_SteamGameServer010_SendUserDisconnect(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamGameServer_SteamGameServer010_SendUserDisconnect_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_SendUserDisconnect, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer010_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer010_BUpdateUserData(struct w_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer010_BUpdateUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchPlayerName = pchPlayerName, .uScore = uScore, @@ -1812,11 +1812,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer010_BUpdateUserData(struct return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer010_BSetServerType(struct w_steam_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) +int8_t __thiscall winISteamGameServer_SteamGameServer010_BSetServerType(struct w_iface *_this, uint32_t unServerFlags, uint32_t unGameIP, uint16_t unGamePort, uint16_t unSpectatorPort, uint16_t usQueryPort, const char *pchGameDir, const char *pchVersion, int8_t bLANMode) { struct ISteamGameServer_SteamGameServer010_BSetServerType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unServerFlags = unServerFlags, .unGameIP = unGameIP, .unGamePort = unGamePort, @@ -1833,11 +1833,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer010_BSetServerType(struct w return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer010_UpdateServerStatus(struct w_steam_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) +void __thiscall winISteamGameServer_SteamGameServer010_UpdateServerStatus(struct w_iface *_this, int32_t cPlayers, int32_t cPlayersMax, int32_t cBotPlayers, const char *pchServerName, const char *pSpectatorServerName, const char *pchMapName) { struct ISteamGameServer_SteamGameServer010_UpdateServerStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cPlayers = cPlayers, .cPlayersMax = cPlayersMax, .cBotPlayers = cBotPlayers, @@ -1852,22 +1852,22 @@ void __thiscall winISteamGameServer_SteamGameServer010_UpdateServerStatus(struct STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_UpdateServerStatus, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer010_UpdateSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) +void __thiscall winISteamGameServer_SteamGameServer010_UpdateSpectatorPort(struct w_iface *_this, uint16_t unSpectatorPort) { struct ISteamGameServer_SteamGameServer010_UpdateSpectatorPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_UpdateSpectatorPort, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer010_SetGameTags(struct w_steam_iface *_this, const char *pchGameTags) +void __thiscall winISteamGameServer_SteamGameServer010_SetGameTags(struct w_iface *_this, const char *pchGameTags) { struct ISteamGameServer_SteamGameServer010_SetGameTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGameTags = pchGameTags, }; TRACE("%p\n", _this); @@ -1875,32 +1875,32 @@ void __thiscall winISteamGameServer_SteamGameServer010_SetGameTags(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_SetGameTags, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer010_GetGameplayStats(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer010_GetGameplayStats(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer010_GetGameplayStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_GetGameplayStats, ¶ms ); } -uint64_t __thiscall winISteamGameServer_SteamGameServer010_GetServerReputation(struct w_steam_iface *_this) +uint64_t __thiscall winISteamGameServer_SteamGameServer010_GetServerReputation(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer010_GetServerReputation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_GetServerReputation, ¶ms ); return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer010_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) +int8_t __thiscall winISteamGameServer_SteamGameServer010_RequestUserGroupStatus(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { struct ISteamGameServer_SteamGameServer010_RequestUserGroupStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDGroup = steamIDGroup, }; @@ -1909,22 +1909,22 @@ int8_t __thiscall winISteamGameServer_SteamGameServer010_RequestUserGroupStatus( return params._ret; } -uint32_t __thiscall winISteamGameServer_SteamGameServer010_GetPublicIP(struct w_steam_iface *_this) +uint32_t __thiscall winISteamGameServer_SteamGameServer010_GetPublicIP(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer010_GetPublicIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_GetPublicIP, ¶ms ); return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer010_SetGameData(struct w_steam_iface *_this, const char *pchGameData) +void __thiscall winISteamGameServer_SteamGameServer010_SetGameData(struct w_iface *_this, const char *pchGameData) { struct ISteamGameServer_SteamGameServer010_SetGameData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGameData = pchGameData, }; TRACE("%p\n", _this); @@ -1932,11 +1932,11 @@ void __thiscall winISteamGameServer_SteamGameServer010_SetGameData(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_SetGameData, ¶ms ); } -uint32_t __thiscall winISteamGameServer_SteamGameServer010_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamGameServer_SteamGameServer010_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamGameServer_SteamGameServer010_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -1945,11 +1945,11 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer010_UserHasLicenseForApp( return params._ret; } -uint32_t __thiscall winISteamGameServer_SteamGameServer010_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +uint32_t __thiscall winISteamGameServer_SteamGameServer010_GetAuthSessionTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamGameServer_SteamGameServer010_GetAuthSessionTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -1959,11 +1959,11 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer010_GetAuthSessionTicket( return params._ret; } -uint32_t __thiscall winISteamGameServer_SteamGameServer010_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) +uint32_t __thiscall winISteamGameServer_SteamGameServer010_BeginAuthSession(struct w_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { struct ISteamGameServer_SteamGameServer010_BeginAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthTicket = pAuthTicket, .cbAuthTicket = cbAuthTicket, .steamID = steamID, @@ -1973,22 +1973,22 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer010_BeginAuthSession(stru return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer010_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamGameServer_SteamGameServer010_EndAuthSession(struct w_iface *_this, CSteamID steamID) { struct ISteamGameServer_SteamGameServer010_EndAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer010_EndAuthSession, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer010_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) +void __thiscall winISteamGameServer_SteamGameServer010_CancelAuthTicket(struct w_iface *_this, uint32_t hAuthTicket) { struct ISteamGameServer_SteamGameServer010_CancelAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); @@ -2027,9 +2027,9 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer010_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamGameServer_SteamGameServer010(void *u_iface) +struct w_iface *create_winISteamGameServer_SteamGameServer010( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamGameServer010"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer010"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamGameServer_SteamGameServer010_vtable, 23, "SteamGameServer010"); r->u_iface = u_iface; @@ -2081,11 +2081,11 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer011_ForceHeartbeat, 4 DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer011_AssociateWithClan, 12) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility, 12) -int8_t __thiscall winISteamGameServer_SteamGameServer011_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) +int8_t __thiscall winISteamGameServer_SteamGameServer011_InitGameServer(struct w_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) { struct ISteamGameServer_SteamGameServer011_InitGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usGamePort = usGamePort, .usQueryPort = usQueryPort, @@ -2099,11 +2099,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer011_InitGameServer(struct w return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer011_SetProduct(struct w_steam_iface *_this, const char *pszProduct) +void __thiscall winISteamGameServer_SteamGameServer011_SetProduct(struct w_iface *_this, const char *pszProduct) { struct ISteamGameServer_SteamGameServer011_SetProduct_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszProduct = pszProduct, }; TRACE("%p\n", _this); @@ -2111,11 +2111,11 @@ void __thiscall winISteamGameServer_SteamGameServer011_SetProduct(struct w_steam STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetProduct, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_SetGameDescription(struct w_steam_iface *_this, const char *pszGameDescription) +void __thiscall winISteamGameServer_SteamGameServer011_SetGameDescription(struct w_iface *_this, const char *pszGameDescription) { struct ISteamGameServer_SteamGameServer011_SetGameDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszGameDescription = pszGameDescription, }; TRACE("%p\n", _this); @@ -2123,11 +2123,11 @@ void __thiscall winISteamGameServer_SteamGameServer011_SetGameDescription(struct STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetGameDescription, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_SetModDir(struct w_steam_iface *_this, const char *pszModDir) +void __thiscall winISteamGameServer_SteamGameServer011_SetModDir(struct w_iface *_this, const char *pszModDir) { struct ISteamGameServer_SteamGameServer011_SetModDir_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszModDir = pszModDir, }; TRACE("%p\n", _this); @@ -2135,22 +2135,22 @@ void __thiscall winISteamGameServer_SteamGameServer011_SetModDir(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetModDir, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_SetDedicatedServer(struct w_steam_iface *_this, int8_t bDedicated) +void __thiscall winISteamGameServer_SteamGameServer011_SetDedicatedServer(struct w_iface *_this, int8_t bDedicated) { struct ISteamGameServer_SteamGameServer011_SetDedicatedServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bDedicated = bDedicated, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetDedicatedServer, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_LogOn(struct w_steam_iface *_this, const char *pszAccountName, const char *pszPassword) +void __thiscall winISteamGameServer_SteamGameServer011_LogOn(struct w_iface *_this, const char *pszAccountName, const char *pszPassword) { struct ISteamGameServer_SteamGameServer011_LogOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszAccountName = pszAccountName, .pszPassword = pszPassword, }; @@ -2160,53 +2160,53 @@ void __thiscall winISteamGameServer_SteamGameServer011_LogOn(struct w_steam_ifac STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_LogOn, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_LogOnAnonymous(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer011_LogOnAnonymous(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer011_LogOnAnonymous_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_LogOnAnonymous, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_LogOff(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer011_LogOff(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer011_LogOff_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_LogOff, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer011_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer011_BLoggedOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer011_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_BLoggedOn, ¶ms ); return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer011_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer011_BSecure(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer011_BSecure_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_BSecure, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer011_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer011_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer011_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -2214,44 +2214,44 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer011_GetSteamID(struct w return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer011_WasRestartRequested(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer011_WasRestartRequested(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer011_WasRestartRequested_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_WasRestartRequested, ¶ms ); return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer011_SetMaxPlayerCount(struct w_steam_iface *_this, int32_t cPlayersMax) +void __thiscall winISteamGameServer_SteamGameServer011_SetMaxPlayerCount(struct w_iface *_this, int32_t cPlayersMax) { struct ISteamGameServer_SteamGameServer011_SetMaxPlayerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cPlayersMax = cPlayersMax, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetMaxPlayerCount, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_SetBotPlayerCount(struct w_steam_iface *_this, int32_t cBotplayers) +void __thiscall winISteamGameServer_SteamGameServer011_SetBotPlayerCount(struct w_iface *_this, int32_t cBotplayers) { struct ISteamGameServer_SteamGameServer011_SetBotPlayerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cBotplayers = cBotplayers, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetBotPlayerCount, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_SetServerName(struct w_steam_iface *_this, const char *pszServerName) +void __thiscall winISteamGameServer_SteamGameServer011_SetServerName(struct w_iface *_this, const char *pszServerName) { struct ISteamGameServer_SteamGameServer011_SetServerName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszServerName = pszServerName, }; TRACE("%p\n", _this); @@ -2259,11 +2259,11 @@ void __thiscall winISteamGameServer_SteamGameServer011_SetServerName(struct w_st STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetServerName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_SetMapName(struct w_steam_iface *_this, const char *pszMapName) +void __thiscall winISteamGameServer_SteamGameServer011_SetMapName(struct w_iface *_this, const char *pszMapName) { struct ISteamGameServer_SteamGameServer011_SetMapName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszMapName = pszMapName, }; TRACE("%p\n", _this); @@ -2271,33 +2271,33 @@ void __thiscall winISteamGameServer_SteamGameServer011_SetMapName(struct w_steam STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetMapName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_SetPasswordProtected(struct w_steam_iface *_this, int8_t bPasswordProtected) +void __thiscall winISteamGameServer_SteamGameServer011_SetPasswordProtected(struct w_iface *_this, int8_t bPasswordProtected) { struct ISteamGameServer_SteamGameServer011_SetPasswordProtected_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bPasswordProtected = bPasswordProtected, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetPasswordProtected, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_SetSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) +void __thiscall winISteamGameServer_SteamGameServer011_SetSpectatorPort(struct w_iface *_this, uint16_t unSpectatorPort) { struct ISteamGameServer_SteamGameServer011_SetSpectatorPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetSpectatorPort, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_SetSpectatorServerName(struct w_steam_iface *_this, const char *pszSpectatorServerName) +void __thiscall winISteamGameServer_SteamGameServer011_SetSpectatorServerName(struct w_iface *_this, const char *pszSpectatorServerName) { struct ISteamGameServer_SteamGameServer011_SetSpectatorServerName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszSpectatorServerName = pszSpectatorServerName, }; TRACE("%p\n", _this); @@ -2305,21 +2305,21 @@ void __thiscall winISteamGameServer_SteamGameServer011_SetSpectatorServerName(st STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetSpectatorServerName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_ClearAllKeyValues(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer011_ClearAllKeyValues(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer011_ClearAllKeyValues_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_ClearAllKeyValues, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_SetKeyValue(struct w_steam_iface *_this, const char *pKey, const char *pValue) +void __thiscall winISteamGameServer_SteamGameServer011_SetKeyValue(struct w_iface *_this, const char *pKey, const char *pValue) { struct ISteamGameServer_SteamGameServer011_SetKeyValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pKey = pKey, .pValue = pValue, }; @@ -2329,11 +2329,11 @@ void __thiscall winISteamGameServer_SteamGameServer011_SetKeyValue(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetKeyValue, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_SetGameTags(struct w_steam_iface *_this, const char *pchGameTags) +void __thiscall winISteamGameServer_SteamGameServer011_SetGameTags(struct w_iface *_this, const char *pchGameTags) { struct ISteamGameServer_SteamGameServer011_SetGameTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGameTags = pchGameTags, }; TRACE("%p\n", _this); @@ -2341,11 +2341,11 @@ void __thiscall winISteamGameServer_SteamGameServer011_SetGameTags(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetGameTags, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_SetGameData(struct w_steam_iface *_this, const char *pchGameData) +void __thiscall winISteamGameServer_SteamGameServer011_SetGameData(struct w_iface *_this, const char *pchGameData) { struct ISteamGameServer_SteamGameServer011_SetGameData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGameData = pchGameData, }; TRACE("%p\n", _this); @@ -2353,11 +2353,11 @@ void __thiscall winISteamGameServer_SteamGameServer011_SetGameData(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetGameData, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_SetRegion(struct w_steam_iface *_this, const char *pszRegion) +void __thiscall winISteamGameServer_SteamGameServer011_SetRegion(struct w_iface *_this, const char *pszRegion) { struct ISteamGameServer_SteamGameServer011_SetRegion_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszRegion = pszRegion, }; TRACE("%p\n", _this); @@ -2365,11 +2365,11 @@ void __thiscall winISteamGameServer_SteamGameServer011_SetRegion(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetRegion, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) +int8_t __thiscall winISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate(struct w_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { struct ISteamGameServer_SteamGameServer011_SendUserConnectAndAuthenticate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPClient = unIPClient, .pvAuthBlob = pvAuthBlob, .cubAuthBlobSize = cubAuthBlobSize, @@ -2380,11 +2380,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer011_SendUserConnectAndAuthe return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer011_CreateUnauthenticatedUserConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -2392,22 +2392,22 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer011_CreateUnauthenticat return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer011_SendUserDisconnect(struct w_steam_iface *_this, CSteamID steamIDUser) +void __thiscall winISteamGameServer_SteamGameServer011_SendUserDisconnect(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamGameServer_SteamGameServer011_SendUserDisconnect_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SendUserDisconnect, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer011_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer011_BUpdateUserData(struct w_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer011_BUpdateUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchPlayerName = pchPlayerName, .uScore = uScore, @@ -2418,11 +2418,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer011_BUpdateUserData(struct return params._ret; } -uint32_t __thiscall winISteamGameServer_SteamGameServer011_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +uint32_t __thiscall winISteamGameServer_SteamGameServer011_GetAuthSessionTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamGameServer_SteamGameServer011_GetAuthSessionTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -2432,11 +2432,11 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer011_GetAuthSessionTicket( return params._ret; } -uint32_t __thiscall winISteamGameServer_SteamGameServer011_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) +uint32_t __thiscall winISteamGameServer_SteamGameServer011_BeginAuthSession(struct w_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { struct ISteamGameServer_SteamGameServer011_BeginAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthTicket = pAuthTicket, .cbAuthTicket = cbAuthTicket, .steamID = steamID, @@ -2446,33 +2446,33 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer011_BeginAuthSession(stru return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer011_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamGameServer_SteamGameServer011_EndAuthSession(struct w_iface *_this, CSteamID steamID) { struct ISteamGameServer_SteamGameServer011_EndAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_EndAuthSession, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) +void __thiscall winISteamGameServer_SteamGameServer011_CancelAuthTicket(struct w_iface *_this, uint32_t hAuthTicket) { struct ISteamGameServer_SteamGameServer011_CancelAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_CancelAuthTicket, ¶ms ); } -uint32_t __thiscall winISteamGameServer_SteamGameServer011_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamGameServer_SteamGameServer011_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamGameServer_SteamGameServer011_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -2481,11 +2481,11 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer011_UserHasLicenseForApp( return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer011_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) +int8_t __thiscall winISteamGameServer_SteamGameServer011_RequestUserGroupStatus(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { struct ISteamGameServer_SteamGameServer011_RequestUserGroupStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDGroup = steamIDGroup, }; @@ -2494,43 +2494,43 @@ int8_t __thiscall winISteamGameServer_SteamGameServer011_RequestUserGroupStatus( return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer011_GetGameplayStats(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer011_GetGameplayStats(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer011_GetGameplayStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_GetGameplayStats, ¶ms ); } -uint64_t __thiscall winISteamGameServer_SteamGameServer011_GetServerReputation(struct w_steam_iface *_this) +uint64_t __thiscall winISteamGameServer_SteamGameServer011_GetServerReputation(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer011_GetServerReputation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_GetServerReputation, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamGameServer_SteamGameServer011_GetPublicIP(struct w_steam_iface *_this) +uint32_t __thiscall winISteamGameServer_SteamGameServer011_GetPublicIP(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer011_GetPublicIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_GetPublicIP, ¶ms ); return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer011_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) +int8_t __thiscall winISteamGameServer_SteamGameServer011_HandleIncomingPacket(struct w_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) { struct ISteamGameServer_SteamGameServer011_HandleIncomingPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pData = pData, .cbData = cbData, .srcIP = srcIP, @@ -2541,11 +2541,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer011_HandleIncomingPacket(st return params._ret; } -int32_t __thiscall winISteamGameServer_SteamGameServer011_GetNextOutgoingPacket(struct w_steam_iface *_this, void *pOut, int32_t cbMaxOut, uint32_t *pNetAdr, uint16_t *pPort) +int32_t __thiscall winISteamGameServer_SteamGameServer011_GetNextOutgoingPacket(struct w_iface *_this, void *pOut, int32_t cbMaxOut, uint32_t *pNetAdr, uint16_t *pPort) { struct ISteamGameServer_SteamGameServer011_GetNextOutgoingPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pOut = pOut, .cbMaxOut = cbMaxOut, .pNetAdr = pNetAdr, @@ -2556,43 +2556,43 @@ int32_t __thiscall winISteamGameServer_SteamGameServer011_GetNextOutgoingPacket( return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer011_EnableHeartbeats(struct w_steam_iface *_this, int8_t bActive) +void __thiscall winISteamGameServer_SteamGameServer011_EnableHeartbeats(struct w_iface *_this, int8_t bActive) { struct ISteamGameServer_SteamGameServer011_EnableHeartbeats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bActive = bActive, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_EnableHeartbeats, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_SetHeartbeatInterval(struct w_steam_iface *_this, int32_t iHeartbeatInterval) +void __thiscall winISteamGameServer_SteamGameServer011_SetHeartbeatInterval(struct w_iface *_this, int32_t iHeartbeatInterval) { struct ISteamGameServer_SteamGameServer011_SetHeartbeatInterval_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iHeartbeatInterval = iHeartbeatInterval, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_SetHeartbeatInterval, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer011_ForceHeartbeat(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer011_ForceHeartbeat(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer011_ForceHeartbeat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer011_ForceHeartbeat, ¶ms ); } -uint64_t __thiscall winISteamGameServer_SteamGameServer011_AssociateWithClan(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamGameServer_SteamGameServer011_AssociateWithClan(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamGameServer_SteamGameServer011_AssociateWithClan_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -2600,11 +2600,11 @@ uint64_t __thiscall winISteamGameServer_SteamGameServer011_AssociateWithClan(str return params._ret; } -uint64_t __thiscall winISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility(struct w_steam_iface *_this, CSteamID steamIDNewPlayer) +uint64_t __thiscall winISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility(struct w_iface *_this, CSteamID steamIDNewPlayer) { struct ISteamGameServer_SteamGameServer011_ComputeNewPlayerCompatibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDNewPlayer = steamIDNewPlayer, }; TRACE("%p\n", _this); @@ -2665,9 +2665,9 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer011_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamGameServer_SteamGameServer011(void *u_iface) +struct w_iface *create_winISteamGameServer_SteamGameServer011( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamGameServer011"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer011"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamGameServer_SteamGameServer011_vtable, 44, "SteamGameServer011"); r->u_iface = u_iface; @@ -2719,11 +2719,11 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer012_ForceHeartbeat, 4 DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer012_AssociateWithClan, 12) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility, 12) -int8_t __thiscall winISteamGameServer_SteamGameServer012_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) +int8_t __thiscall winISteamGameServer_SteamGameServer012_InitGameServer(struct w_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) { struct ISteamGameServer_SteamGameServer012_InitGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usGamePort = usGamePort, .usQueryPort = usQueryPort, @@ -2737,11 +2737,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer012_InitGameServer(struct w return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer012_SetProduct(struct w_steam_iface *_this, const char *pszProduct) +void __thiscall winISteamGameServer_SteamGameServer012_SetProduct(struct w_iface *_this, const char *pszProduct) { struct ISteamGameServer_SteamGameServer012_SetProduct_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszProduct = pszProduct, }; TRACE("%p\n", _this); @@ -2749,11 +2749,11 @@ void __thiscall winISteamGameServer_SteamGameServer012_SetProduct(struct w_steam STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetProduct, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_SetGameDescription(struct w_steam_iface *_this, const char *pszGameDescription) +void __thiscall winISteamGameServer_SteamGameServer012_SetGameDescription(struct w_iface *_this, const char *pszGameDescription) { struct ISteamGameServer_SteamGameServer012_SetGameDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszGameDescription = pszGameDescription, }; TRACE("%p\n", _this); @@ -2761,11 +2761,11 @@ void __thiscall winISteamGameServer_SteamGameServer012_SetGameDescription(struct STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetGameDescription, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_SetModDir(struct w_steam_iface *_this, const char *pszModDir) +void __thiscall winISteamGameServer_SteamGameServer012_SetModDir(struct w_iface *_this, const char *pszModDir) { struct ISteamGameServer_SteamGameServer012_SetModDir_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszModDir = pszModDir, }; TRACE("%p\n", _this); @@ -2773,22 +2773,22 @@ void __thiscall winISteamGameServer_SteamGameServer012_SetModDir(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetModDir, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_SetDedicatedServer(struct w_steam_iface *_this, int8_t bDedicated) +void __thiscall winISteamGameServer_SteamGameServer012_SetDedicatedServer(struct w_iface *_this, int8_t bDedicated) { struct ISteamGameServer_SteamGameServer012_SetDedicatedServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bDedicated = bDedicated, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetDedicatedServer, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_LogOn(struct w_steam_iface *_this, const char *pszToken) +void __thiscall winISteamGameServer_SteamGameServer012_LogOn(struct w_iface *_this, const char *pszToken) { struct ISteamGameServer_SteamGameServer012_LogOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszToken = pszToken, }; TRACE("%p\n", _this); @@ -2796,53 +2796,53 @@ void __thiscall winISteamGameServer_SteamGameServer012_LogOn(struct w_steam_ifac STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_LogOn, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_LogOnAnonymous(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer012_LogOnAnonymous(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer012_LogOnAnonymous_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_LogOnAnonymous, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_LogOff(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer012_LogOff(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer012_LogOff_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_LogOff, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer012_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer012_BLoggedOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer012_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_BLoggedOn, ¶ms ); return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer012_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer012_BSecure(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer012_BSecure_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_BSecure, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer012_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer012_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer012_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -2850,44 +2850,44 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer012_GetSteamID(struct w return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer012_WasRestartRequested(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer012_WasRestartRequested(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer012_WasRestartRequested_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_WasRestartRequested, ¶ms ); return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer012_SetMaxPlayerCount(struct w_steam_iface *_this, int32_t cPlayersMax) +void __thiscall winISteamGameServer_SteamGameServer012_SetMaxPlayerCount(struct w_iface *_this, int32_t cPlayersMax) { struct ISteamGameServer_SteamGameServer012_SetMaxPlayerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cPlayersMax = cPlayersMax, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetMaxPlayerCount, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_SetBotPlayerCount(struct w_steam_iface *_this, int32_t cBotplayers) +void __thiscall winISteamGameServer_SteamGameServer012_SetBotPlayerCount(struct w_iface *_this, int32_t cBotplayers) { struct ISteamGameServer_SteamGameServer012_SetBotPlayerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cBotplayers = cBotplayers, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetBotPlayerCount, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_SetServerName(struct w_steam_iface *_this, const char *pszServerName) +void __thiscall winISteamGameServer_SteamGameServer012_SetServerName(struct w_iface *_this, const char *pszServerName) { struct ISteamGameServer_SteamGameServer012_SetServerName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszServerName = pszServerName, }; TRACE("%p\n", _this); @@ -2895,11 +2895,11 @@ void __thiscall winISteamGameServer_SteamGameServer012_SetServerName(struct w_st STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetServerName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_SetMapName(struct w_steam_iface *_this, const char *pszMapName) +void __thiscall winISteamGameServer_SteamGameServer012_SetMapName(struct w_iface *_this, const char *pszMapName) { struct ISteamGameServer_SteamGameServer012_SetMapName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszMapName = pszMapName, }; TRACE("%p\n", _this); @@ -2907,33 +2907,33 @@ void __thiscall winISteamGameServer_SteamGameServer012_SetMapName(struct w_steam STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetMapName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_SetPasswordProtected(struct w_steam_iface *_this, int8_t bPasswordProtected) +void __thiscall winISteamGameServer_SteamGameServer012_SetPasswordProtected(struct w_iface *_this, int8_t bPasswordProtected) { struct ISteamGameServer_SteamGameServer012_SetPasswordProtected_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bPasswordProtected = bPasswordProtected, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetPasswordProtected, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_SetSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) +void __thiscall winISteamGameServer_SteamGameServer012_SetSpectatorPort(struct w_iface *_this, uint16_t unSpectatorPort) { struct ISteamGameServer_SteamGameServer012_SetSpectatorPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetSpectatorPort, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_SetSpectatorServerName(struct w_steam_iface *_this, const char *pszSpectatorServerName) +void __thiscall winISteamGameServer_SteamGameServer012_SetSpectatorServerName(struct w_iface *_this, const char *pszSpectatorServerName) { struct ISteamGameServer_SteamGameServer012_SetSpectatorServerName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszSpectatorServerName = pszSpectatorServerName, }; TRACE("%p\n", _this); @@ -2941,21 +2941,21 @@ void __thiscall winISteamGameServer_SteamGameServer012_SetSpectatorServerName(st STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetSpectatorServerName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_ClearAllKeyValues(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer012_ClearAllKeyValues(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer012_ClearAllKeyValues_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_ClearAllKeyValues, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_SetKeyValue(struct w_steam_iface *_this, const char *pKey, const char *pValue) +void __thiscall winISteamGameServer_SteamGameServer012_SetKeyValue(struct w_iface *_this, const char *pKey, const char *pValue) { struct ISteamGameServer_SteamGameServer012_SetKeyValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pKey = pKey, .pValue = pValue, }; @@ -2965,11 +2965,11 @@ void __thiscall winISteamGameServer_SteamGameServer012_SetKeyValue(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetKeyValue, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_SetGameTags(struct w_steam_iface *_this, const char *pchGameTags) +void __thiscall winISteamGameServer_SteamGameServer012_SetGameTags(struct w_iface *_this, const char *pchGameTags) { struct ISteamGameServer_SteamGameServer012_SetGameTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGameTags = pchGameTags, }; TRACE("%p\n", _this); @@ -2977,11 +2977,11 @@ void __thiscall winISteamGameServer_SteamGameServer012_SetGameTags(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetGameTags, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_SetGameData(struct w_steam_iface *_this, const char *pchGameData) +void __thiscall winISteamGameServer_SteamGameServer012_SetGameData(struct w_iface *_this, const char *pchGameData) { struct ISteamGameServer_SteamGameServer012_SetGameData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGameData = pchGameData, }; TRACE("%p\n", _this); @@ -2989,11 +2989,11 @@ void __thiscall winISteamGameServer_SteamGameServer012_SetGameData(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetGameData, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_SetRegion(struct w_steam_iface *_this, const char *pszRegion) +void __thiscall winISteamGameServer_SteamGameServer012_SetRegion(struct w_iface *_this, const char *pszRegion) { struct ISteamGameServer_SteamGameServer012_SetRegion_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszRegion = pszRegion, }; TRACE("%p\n", _this); @@ -3001,11 +3001,11 @@ void __thiscall winISteamGameServer_SteamGameServer012_SetRegion(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetRegion, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) +int8_t __thiscall winISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate(struct w_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { struct ISteamGameServer_SteamGameServer012_SendUserConnectAndAuthenticate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPClient = unIPClient, .pvAuthBlob = pvAuthBlob, .cubAuthBlobSize = cubAuthBlobSize, @@ -3016,11 +3016,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer012_SendUserConnectAndAuthe return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer012_CreateUnauthenticatedUserConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -3028,22 +3028,22 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer012_CreateUnauthenticat return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer012_SendUserDisconnect(struct w_steam_iface *_this, CSteamID steamIDUser) +void __thiscall winISteamGameServer_SteamGameServer012_SendUserDisconnect(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamGameServer_SteamGameServer012_SendUserDisconnect_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SendUserDisconnect, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer012_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer012_BUpdateUserData(struct w_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer012_BUpdateUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchPlayerName = pchPlayerName, .uScore = uScore, @@ -3054,11 +3054,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer012_BUpdateUserData(struct return params._ret; } -uint32_t __thiscall winISteamGameServer_SteamGameServer012_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +uint32_t __thiscall winISteamGameServer_SteamGameServer012_GetAuthSessionTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamGameServer_SteamGameServer012_GetAuthSessionTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -3068,11 +3068,11 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer012_GetAuthSessionTicket( return params._ret; } -uint32_t __thiscall winISteamGameServer_SteamGameServer012_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) +uint32_t __thiscall winISteamGameServer_SteamGameServer012_BeginAuthSession(struct w_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { struct ISteamGameServer_SteamGameServer012_BeginAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthTicket = pAuthTicket, .cbAuthTicket = cbAuthTicket, .steamID = steamID, @@ -3082,33 +3082,33 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer012_BeginAuthSession(stru return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer012_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamGameServer_SteamGameServer012_EndAuthSession(struct w_iface *_this, CSteamID steamID) { struct ISteamGameServer_SteamGameServer012_EndAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_EndAuthSession, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) +void __thiscall winISteamGameServer_SteamGameServer012_CancelAuthTicket(struct w_iface *_this, uint32_t hAuthTicket) { struct ISteamGameServer_SteamGameServer012_CancelAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_CancelAuthTicket, ¶ms ); } -uint32_t __thiscall winISteamGameServer_SteamGameServer012_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamGameServer_SteamGameServer012_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamGameServer_SteamGameServer012_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -3117,11 +3117,11 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer012_UserHasLicenseForApp( return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer012_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) +int8_t __thiscall winISteamGameServer_SteamGameServer012_RequestUserGroupStatus(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { struct ISteamGameServer_SteamGameServer012_RequestUserGroupStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDGroup = steamIDGroup, }; @@ -3130,43 +3130,43 @@ int8_t __thiscall winISteamGameServer_SteamGameServer012_RequestUserGroupStatus( return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer012_GetGameplayStats(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer012_GetGameplayStats(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer012_GetGameplayStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_GetGameplayStats, ¶ms ); } -uint64_t __thiscall winISteamGameServer_SteamGameServer012_GetServerReputation(struct w_steam_iface *_this) +uint64_t __thiscall winISteamGameServer_SteamGameServer012_GetServerReputation(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer012_GetServerReputation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_GetServerReputation, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamGameServer_SteamGameServer012_GetPublicIP(struct w_steam_iface *_this) +uint32_t __thiscall winISteamGameServer_SteamGameServer012_GetPublicIP(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer012_GetPublicIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_GetPublicIP, ¶ms ); return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer012_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) +int8_t __thiscall winISteamGameServer_SteamGameServer012_HandleIncomingPacket(struct w_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) { struct ISteamGameServer_SteamGameServer012_HandleIncomingPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pData = pData, .cbData = cbData, .srcIP = srcIP, @@ -3177,11 +3177,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer012_HandleIncomingPacket(st return params._ret; } -int32_t __thiscall winISteamGameServer_SteamGameServer012_GetNextOutgoingPacket(struct w_steam_iface *_this, void *pOut, int32_t cbMaxOut, uint32_t *pNetAdr, uint16_t *pPort) +int32_t __thiscall winISteamGameServer_SteamGameServer012_GetNextOutgoingPacket(struct w_iface *_this, void *pOut, int32_t cbMaxOut, uint32_t *pNetAdr, uint16_t *pPort) { struct ISteamGameServer_SteamGameServer012_GetNextOutgoingPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pOut = pOut, .cbMaxOut = cbMaxOut, .pNetAdr = pNetAdr, @@ -3192,43 +3192,43 @@ int32_t __thiscall winISteamGameServer_SteamGameServer012_GetNextOutgoingPacket( return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer012_EnableHeartbeats(struct w_steam_iface *_this, int8_t bActive) +void __thiscall winISteamGameServer_SteamGameServer012_EnableHeartbeats(struct w_iface *_this, int8_t bActive) { struct ISteamGameServer_SteamGameServer012_EnableHeartbeats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bActive = bActive, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_EnableHeartbeats, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_SetHeartbeatInterval(struct w_steam_iface *_this, int32_t iHeartbeatInterval) +void __thiscall winISteamGameServer_SteamGameServer012_SetHeartbeatInterval(struct w_iface *_this, int32_t iHeartbeatInterval) { struct ISteamGameServer_SteamGameServer012_SetHeartbeatInterval_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iHeartbeatInterval = iHeartbeatInterval, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_SetHeartbeatInterval, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer012_ForceHeartbeat(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer012_ForceHeartbeat(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer012_ForceHeartbeat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer012_ForceHeartbeat, ¶ms ); } -uint64_t __thiscall winISteamGameServer_SteamGameServer012_AssociateWithClan(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamGameServer_SteamGameServer012_AssociateWithClan(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamGameServer_SteamGameServer012_AssociateWithClan_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -3236,11 +3236,11 @@ uint64_t __thiscall winISteamGameServer_SteamGameServer012_AssociateWithClan(str return params._ret; } -uint64_t __thiscall winISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility(struct w_steam_iface *_this, CSteamID steamIDNewPlayer) +uint64_t __thiscall winISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility(struct w_iface *_this, CSteamID steamIDNewPlayer) { struct ISteamGameServer_SteamGameServer012_ComputeNewPlayerCompatibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDNewPlayer = steamIDNewPlayer, }; TRACE("%p\n", _this); @@ -3301,9 +3301,9 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer012_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamGameServer_SteamGameServer012(void *u_iface) +struct w_iface *create_winISteamGameServer_SteamGameServer012( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamGameServer012"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer012"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamGameServer_SteamGameServer012_vtable, 44, "SteamGameServer012"); r->u_iface = u_iface; @@ -3355,11 +3355,11 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer013_ForceHeartbeat, 4 DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer013_AssociateWithClan, 12) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility, 12) -int8_t __thiscall winISteamGameServer_SteamGameServer013_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) +int8_t __thiscall winISteamGameServer_SteamGameServer013_InitGameServer(struct w_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) { struct ISteamGameServer_SteamGameServer013_InitGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usGamePort = usGamePort, .usQueryPort = usQueryPort, @@ -3373,11 +3373,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer013_InitGameServer(struct w return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer013_SetProduct(struct w_steam_iface *_this, const char *pszProduct) +void __thiscall winISteamGameServer_SteamGameServer013_SetProduct(struct w_iface *_this, const char *pszProduct) { struct ISteamGameServer_SteamGameServer013_SetProduct_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszProduct = pszProduct, }; TRACE("%p\n", _this); @@ -3385,11 +3385,11 @@ void __thiscall winISteamGameServer_SteamGameServer013_SetProduct(struct w_steam STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetProduct, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_SetGameDescription(struct w_steam_iface *_this, const char *pszGameDescription) +void __thiscall winISteamGameServer_SteamGameServer013_SetGameDescription(struct w_iface *_this, const char *pszGameDescription) { struct ISteamGameServer_SteamGameServer013_SetGameDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszGameDescription = pszGameDescription, }; TRACE("%p\n", _this); @@ -3397,11 +3397,11 @@ void __thiscall winISteamGameServer_SteamGameServer013_SetGameDescription(struct STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetGameDescription, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_SetModDir(struct w_steam_iface *_this, const char *pszModDir) +void __thiscall winISteamGameServer_SteamGameServer013_SetModDir(struct w_iface *_this, const char *pszModDir) { struct ISteamGameServer_SteamGameServer013_SetModDir_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszModDir = pszModDir, }; TRACE("%p\n", _this); @@ -3409,22 +3409,22 @@ void __thiscall winISteamGameServer_SteamGameServer013_SetModDir(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetModDir, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_SetDedicatedServer(struct w_steam_iface *_this, int8_t bDedicated) +void __thiscall winISteamGameServer_SteamGameServer013_SetDedicatedServer(struct w_iface *_this, int8_t bDedicated) { struct ISteamGameServer_SteamGameServer013_SetDedicatedServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bDedicated = bDedicated, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetDedicatedServer, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_LogOn(struct w_steam_iface *_this, const char *pszToken) +void __thiscall winISteamGameServer_SteamGameServer013_LogOn(struct w_iface *_this, const char *pszToken) { struct ISteamGameServer_SteamGameServer013_LogOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszToken = pszToken, }; TRACE("%p\n", _this); @@ -3432,53 +3432,53 @@ void __thiscall winISteamGameServer_SteamGameServer013_LogOn(struct w_steam_ifac STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_LogOn, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_LogOnAnonymous(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer013_LogOnAnonymous(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer013_LogOnAnonymous_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_LogOnAnonymous, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_LogOff(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer013_LogOff(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer013_LogOff_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_LogOff, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer013_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer013_BLoggedOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer013_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_BLoggedOn, ¶ms ); return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer013_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer013_BSecure(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer013_BSecure_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_BSecure, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer013_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer013_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer013_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -3486,44 +3486,44 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer013_GetSteamID(struct w return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer013_WasRestartRequested(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer013_WasRestartRequested(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer013_WasRestartRequested_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_WasRestartRequested, ¶ms ); return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer013_SetMaxPlayerCount(struct w_steam_iface *_this, int32_t cPlayersMax) +void __thiscall winISteamGameServer_SteamGameServer013_SetMaxPlayerCount(struct w_iface *_this, int32_t cPlayersMax) { struct ISteamGameServer_SteamGameServer013_SetMaxPlayerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cPlayersMax = cPlayersMax, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetMaxPlayerCount, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_SetBotPlayerCount(struct w_steam_iface *_this, int32_t cBotplayers) +void __thiscall winISteamGameServer_SteamGameServer013_SetBotPlayerCount(struct w_iface *_this, int32_t cBotplayers) { struct ISteamGameServer_SteamGameServer013_SetBotPlayerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cBotplayers = cBotplayers, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetBotPlayerCount, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_SetServerName(struct w_steam_iface *_this, const char *pszServerName) +void __thiscall winISteamGameServer_SteamGameServer013_SetServerName(struct w_iface *_this, const char *pszServerName) { struct ISteamGameServer_SteamGameServer013_SetServerName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszServerName = pszServerName, }; TRACE("%p\n", _this); @@ -3531,11 +3531,11 @@ void __thiscall winISteamGameServer_SteamGameServer013_SetServerName(struct w_st STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetServerName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_SetMapName(struct w_steam_iface *_this, const char *pszMapName) +void __thiscall winISteamGameServer_SteamGameServer013_SetMapName(struct w_iface *_this, const char *pszMapName) { struct ISteamGameServer_SteamGameServer013_SetMapName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszMapName = pszMapName, }; TRACE("%p\n", _this); @@ -3543,33 +3543,33 @@ void __thiscall winISteamGameServer_SteamGameServer013_SetMapName(struct w_steam STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetMapName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_SetPasswordProtected(struct w_steam_iface *_this, int8_t bPasswordProtected) +void __thiscall winISteamGameServer_SteamGameServer013_SetPasswordProtected(struct w_iface *_this, int8_t bPasswordProtected) { struct ISteamGameServer_SteamGameServer013_SetPasswordProtected_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bPasswordProtected = bPasswordProtected, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetPasswordProtected, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_SetSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) +void __thiscall winISteamGameServer_SteamGameServer013_SetSpectatorPort(struct w_iface *_this, uint16_t unSpectatorPort) { struct ISteamGameServer_SteamGameServer013_SetSpectatorPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetSpectatorPort, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_SetSpectatorServerName(struct w_steam_iface *_this, const char *pszSpectatorServerName) +void __thiscall winISteamGameServer_SteamGameServer013_SetSpectatorServerName(struct w_iface *_this, const char *pszSpectatorServerName) { struct ISteamGameServer_SteamGameServer013_SetSpectatorServerName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszSpectatorServerName = pszSpectatorServerName, }; TRACE("%p\n", _this); @@ -3577,21 +3577,21 @@ void __thiscall winISteamGameServer_SteamGameServer013_SetSpectatorServerName(st STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetSpectatorServerName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_ClearAllKeyValues(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer013_ClearAllKeyValues(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer013_ClearAllKeyValues_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_ClearAllKeyValues, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_SetKeyValue(struct w_steam_iface *_this, const char *pKey, const char *pValue) +void __thiscall winISteamGameServer_SteamGameServer013_SetKeyValue(struct w_iface *_this, const char *pKey, const char *pValue) { struct ISteamGameServer_SteamGameServer013_SetKeyValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pKey = pKey, .pValue = pValue, }; @@ -3601,11 +3601,11 @@ void __thiscall winISteamGameServer_SteamGameServer013_SetKeyValue(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetKeyValue, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_SetGameTags(struct w_steam_iface *_this, const char *pchGameTags) +void __thiscall winISteamGameServer_SteamGameServer013_SetGameTags(struct w_iface *_this, const char *pchGameTags) { struct ISteamGameServer_SteamGameServer013_SetGameTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGameTags = pchGameTags, }; TRACE("%p\n", _this); @@ -3613,11 +3613,11 @@ void __thiscall winISteamGameServer_SteamGameServer013_SetGameTags(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetGameTags, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_SetGameData(struct w_steam_iface *_this, const char *pchGameData) +void __thiscall winISteamGameServer_SteamGameServer013_SetGameData(struct w_iface *_this, const char *pchGameData) { struct ISteamGameServer_SteamGameServer013_SetGameData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGameData = pchGameData, }; TRACE("%p\n", _this); @@ -3625,11 +3625,11 @@ void __thiscall winISteamGameServer_SteamGameServer013_SetGameData(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetGameData, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_SetRegion(struct w_steam_iface *_this, const char *pszRegion) +void __thiscall winISteamGameServer_SteamGameServer013_SetRegion(struct w_iface *_this, const char *pszRegion) { struct ISteamGameServer_SteamGameServer013_SetRegion_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszRegion = pszRegion, }; TRACE("%p\n", _this); @@ -3637,11 +3637,11 @@ void __thiscall winISteamGameServer_SteamGameServer013_SetRegion(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetRegion, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) +int8_t __thiscall winISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate(struct w_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { struct ISteamGameServer_SteamGameServer013_SendUserConnectAndAuthenticate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPClient = unIPClient, .pvAuthBlob = pvAuthBlob, .cubAuthBlobSize = cubAuthBlobSize, @@ -3652,11 +3652,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer013_SendUserConnectAndAuthe return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer013_CreateUnauthenticatedUserConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -3664,22 +3664,22 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer013_CreateUnauthenticat return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer013_SendUserDisconnect(struct w_steam_iface *_this, CSteamID steamIDUser) +void __thiscall winISteamGameServer_SteamGameServer013_SendUserDisconnect(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamGameServer_SteamGameServer013_SendUserDisconnect_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SendUserDisconnect, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer013_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer013_BUpdateUserData(struct w_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer013_BUpdateUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchPlayerName = pchPlayerName, .uScore = uScore, @@ -3690,11 +3690,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer013_BUpdateUserData(struct return params._ret; } -uint32_t __thiscall winISteamGameServer_SteamGameServer013_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +uint32_t __thiscall winISteamGameServer_SteamGameServer013_GetAuthSessionTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamGameServer_SteamGameServer013_GetAuthSessionTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -3704,11 +3704,11 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer013_GetAuthSessionTicket( return params._ret; } -uint32_t __thiscall winISteamGameServer_SteamGameServer013_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) +uint32_t __thiscall winISteamGameServer_SteamGameServer013_BeginAuthSession(struct w_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { struct ISteamGameServer_SteamGameServer013_BeginAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthTicket = pAuthTicket, .cbAuthTicket = cbAuthTicket, .steamID = steamID, @@ -3718,33 +3718,33 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer013_BeginAuthSession(stru return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer013_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamGameServer_SteamGameServer013_EndAuthSession(struct w_iface *_this, CSteamID steamID) { struct ISteamGameServer_SteamGameServer013_EndAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_EndAuthSession, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) +void __thiscall winISteamGameServer_SteamGameServer013_CancelAuthTicket(struct w_iface *_this, uint32_t hAuthTicket) { struct ISteamGameServer_SteamGameServer013_CancelAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_CancelAuthTicket, ¶ms ); } -uint32_t __thiscall winISteamGameServer_SteamGameServer013_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamGameServer_SteamGameServer013_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamGameServer_SteamGameServer013_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -3753,11 +3753,11 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer013_UserHasLicenseForApp( return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer013_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) +int8_t __thiscall winISteamGameServer_SteamGameServer013_RequestUserGroupStatus(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { struct ISteamGameServer_SteamGameServer013_RequestUserGroupStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDGroup = steamIDGroup, }; @@ -3766,32 +3766,32 @@ int8_t __thiscall winISteamGameServer_SteamGameServer013_RequestUserGroupStatus( return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer013_GetGameplayStats(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer013_GetGameplayStats(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer013_GetGameplayStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_GetGameplayStats, ¶ms ); } -uint64_t __thiscall winISteamGameServer_SteamGameServer013_GetServerReputation(struct w_steam_iface *_this) +uint64_t __thiscall winISteamGameServer_SteamGameServer013_GetServerReputation(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer013_GetServerReputation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_GetServerReputation, ¶ms ); return params._ret; } -SteamIPAddress_t * __thiscall winISteamGameServer_SteamGameServer013_GetPublicIP(struct w_steam_iface *_this, SteamIPAddress_t *_ret) +SteamIPAddress_t * __thiscall winISteamGameServer_SteamGameServer013_GetPublicIP(struct w_iface *_this, SteamIPAddress_t *_ret) { struct ISteamGameServer_SteamGameServer013_GetPublicIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -3799,11 +3799,11 @@ SteamIPAddress_t * __thiscall winISteamGameServer_SteamGameServer013_GetPublicIP return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer013_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) +int8_t __thiscall winISteamGameServer_SteamGameServer013_HandleIncomingPacket(struct w_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) { struct ISteamGameServer_SteamGameServer013_HandleIncomingPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pData = pData, .cbData = cbData, .srcIP = srcIP, @@ -3814,11 +3814,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer013_HandleIncomingPacket(st return params._ret; } -int32_t __thiscall winISteamGameServer_SteamGameServer013_GetNextOutgoingPacket(struct w_steam_iface *_this, void *pOut, int32_t cbMaxOut, uint32_t *pNetAdr, uint16_t *pPort) +int32_t __thiscall winISteamGameServer_SteamGameServer013_GetNextOutgoingPacket(struct w_iface *_this, void *pOut, int32_t cbMaxOut, uint32_t *pNetAdr, uint16_t *pPort) { struct ISteamGameServer_SteamGameServer013_GetNextOutgoingPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pOut = pOut, .cbMaxOut = cbMaxOut, .pNetAdr = pNetAdr, @@ -3829,43 +3829,43 @@ int32_t __thiscall winISteamGameServer_SteamGameServer013_GetNextOutgoingPacket( return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer013_EnableHeartbeats(struct w_steam_iface *_this, int8_t bActive) +void __thiscall winISteamGameServer_SteamGameServer013_EnableHeartbeats(struct w_iface *_this, int8_t bActive) { struct ISteamGameServer_SteamGameServer013_EnableHeartbeats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bActive = bActive, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_EnableHeartbeats, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_SetHeartbeatInterval(struct w_steam_iface *_this, int32_t iHeartbeatInterval) +void __thiscall winISteamGameServer_SteamGameServer013_SetHeartbeatInterval(struct w_iface *_this, int32_t iHeartbeatInterval) { struct ISteamGameServer_SteamGameServer013_SetHeartbeatInterval_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iHeartbeatInterval = iHeartbeatInterval, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_SetHeartbeatInterval, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer013_ForceHeartbeat(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer013_ForceHeartbeat(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer013_ForceHeartbeat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer013_ForceHeartbeat, ¶ms ); } -uint64_t __thiscall winISteamGameServer_SteamGameServer013_AssociateWithClan(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamGameServer_SteamGameServer013_AssociateWithClan(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamGameServer_SteamGameServer013_AssociateWithClan_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -3873,11 +3873,11 @@ uint64_t __thiscall winISteamGameServer_SteamGameServer013_AssociateWithClan(str return params._ret; } -uint64_t __thiscall winISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility(struct w_steam_iface *_this, CSteamID steamIDNewPlayer) +uint64_t __thiscall winISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility(struct w_iface *_this, CSteamID steamIDNewPlayer) { struct ISteamGameServer_SteamGameServer013_ComputeNewPlayerCompatibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDNewPlayer = steamIDNewPlayer, }; TRACE("%p\n", _this); @@ -3938,9 +3938,9 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer013_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamGameServer_SteamGameServer013(void *u_iface) +struct w_iface *create_winISteamGameServer_SteamGameServer013( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamGameServer013"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer013"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamGameServer_SteamGameServer013_vtable, 44, "SteamGameServer013"); r->u_iface = u_iface; @@ -3992,11 +3992,11 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer014_BUpdateUserData, DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED, 8) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED, 4) -int8_t __thiscall winISteamGameServer_SteamGameServer014_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) +int8_t __thiscall winISteamGameServer_SteamGameServer014_InitGameServer(struct w_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) { struct ISteamGameServer_SteamGameServer014_InitGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usGamePort = usGamePort, .usQueryPort = usQueryPort, @@ -4010,11 +4010,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer014_InitGameServer(struct w return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer014_SetProduct(struct w_steam_iface *_this, const char *pszProduct) +void __thiscall winISteamGameServer_SteamGameServer014_SetProduct(struct w_iface *_this, const char *pszProduct) { struct ISteamGameServer_SteamGameServer014_SetProduct_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszProduct = pszProduct, }; TRACE("%p\n", _this); @@ -4022,11 +4022,11 @@ void __thiscall winISteamGameServer_SteamGameServer014_SetProduct(struct w_steam STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetProduct, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_SetGameDescription(struct w_steam_iface *_this, const char *pszGameDescription) +void __thiscall winISteamGameServer_SteamGameServer014_SetGameDescription(struct w_iface *_this, const char *pszGameDescription) { struct ISteamGameServer_SteamGameServer014_SetGameDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszGameDescription = pszGameDescription, }; TRACE("%p\n", _this); @@ -4034,11 +4034,11 @@ void __thiscall winISteamGameServer_SteamGameServer014_SetGameDescription(struct STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetGameDescription, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_SetModDir(struct w_steam_iface *_this, const char *pszModDir) +void __thiscall winISteamGameServer_SteamGameServer014_SetModDir(struct w_iface *_this, const char *pszModDir) { struct ISteamGameServer_SteamGameServer014_SetModDir_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszModDir = pszModDir, }; TRACE("%p\n", _this); @@ -4046,22 +4046,22 @@ void __thiscall winISteamGameServer_SteamGameServer014_SetModDir(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetModDir, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_SetDedicatedServer(struct w_steam_iface *_this, int8_t bDedicated) +void __thiscall winISteamGameServer_SteamGameServer014_SetDedicatedServer(struct w_iface *_this, int8_t bDedicated) { struct ISteamGameServer_SteamGameServer014_SetDedicatedServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bDedicated = bDedicated, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetDedicatedServer, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_LogOn(struct w_steam_iface *_this, const char *pszToken) +void __thiscall winISteamGameServer_SteamGameServer014_LogOn(struct w_iface *_this, const char *pszToken) { struct ISteamGameServer_SteamGameServer014_LogOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszToken = pszToken, }; TRACE("%p\n", _this); @@ -4069,53 +4069,53 @@ void __thiscall winISteamGameServer_SteamGameServer014_LogOn(struct w_steam_ifac STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_LogOn, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_LogOnAnonymous(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer014_LogOnAnonymous(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer014_LogOnAnonymous_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_LogOnAnonymous, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_LogOff(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer014_LogOff(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer014_LogOff_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_LogOff, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer014_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer014_BLoggedOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer014_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_BLoggedOn, ¶ms ); return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer014_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer014_BSecure(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer014_BSecure_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_BSecure, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer014_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer014_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer014_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -4123,44 +4123,44 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer014_GetSteamID(struct w return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer014_WasRestartRequested(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer014_WasRestartRequested(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer014_WasRestartRequested_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_WasRestartRequested, ¶ms ); return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer014_SetMaxPlayerCount(struct w_steam_iface *_this, int32_t cPlayersMax) +void __thiscall winISteamGameServer_SteamGameServer014_SetMaxPlayerCount(struct w_iface *_this, int32_t cPlayersMax) { struct ISteamGameServer_SteamGameServer014_SetMaxPlayerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cPlayersMax = cPlayersMax, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetMaxPlayerCount, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_SetBotPlayerCount(struct w_steam_iface *_this, int32_t cBotplayers) +void __thiscall winISteamGameServer_SteamGameServer014_SetBotPlayerCount(struct w_iface *_this, int32_t cBotplayers) { struct ISteamGameServer_SteamGameServer014_SetBotPlayerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cBotplayers = cBotplayers, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetBotPlayerCount, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_SetServerName(struct w_steam_iface *_this, const char *pszServerName) +void __thiscall winISteamGameServer_SteamGameServer014_SetServerName(struct w_iface *_this, const char *pszServerName) { struct ISteamGameServer_SteamGameServer014_SetServerName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszServerName = pszServerName, }; TRACE("%p\n", _this); @@ -4168,11 +4168,11 @@ void __thiscall winISteamGameServer_SteamGameServer014_SetServerName(struct w_st STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetServerName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_SetMapName(struct w_steam_iface *_this, const char *pszMapName) +void __thiscall winISteamGameServer_SteamGameServer014_SetMapName(struct w_iface *_this, const char *pszMapName) { struct ISteamGameServer_SteamGameServer014_SetMapName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszMapName = pszMapName, }; TRACE("%p\n", _this); @@ -4180,33 +4180,33 @@ void __thiscall winISteamGameServer_SteamGameServer014_SetMapName(struct w_steam STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetMapName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_SetPasswordProtected(struct w_steam_iface *_this, int8_t bPasswordProtected) +void __thiscall winISteamGameServer_SteamGameServer014_SetPasswordProtected(struct w_iface *_this, int8_t bPasswordProtected) { struct ISteamGameServer_SteamGameServer014_SetPasswordProtected_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bPasswordProtected = bPasswordProtected, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetPasswordProtected, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_SetSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) +void __thiscall winISteamGameServer_SteamGameServer014_SetSpectatorPort(struct w_iface *_this, uint16_t unSpectatorPort) { struct ISteamGameServer_SteamGameServer014_SetSpectatorPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetSpectatorPort, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_SetSpectatorServerName(struct w_steam_iface *_this, const char *pszSpectatorServerName) +void __thiscall winISteamGameServer_SteamGameServer014_SetSpectatorServerName(struct w_iface *_this, const char *pszSpectatorServerName) { struct ISteamGameServer_SteamGameServer014_SetSpectatorServerName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszSpectatorServerName = pszSpectatorServerName, }; TRACE("%p\n", _this); @@ -4214,21 +4214,21 @@ void __thiscall winISteamGameServer_SteamGameServer014_SetSpectatorServerName(st STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetSpectatorServerName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_ClearAllKeyValues(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer014_ClearAllKeyValues(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer014_ClearAllKeyValues_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_ClearAllKeyValues, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_SetKeyValue(struct w_steam_iface *_this, const char *pKey, const char *pValue) +void __thiscall winISteamGameServer_SteamGameServer014_SetKeyValue(struct w_iface *_this, const char *pKey, const char *pValue) { struct ISteamGameServer_SteamGameServer014_SetKeyValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pKey = pKey, .pValue = pValue, }; @@ -4238,11 +4238,11 @@ void __thiscall winISteamGameServer_SteamGameServer014_SetKeyValue(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetKeyValue, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_SetGameTags(struct w_steam_iface *_this, const char *pchGameTags) +void __thiscall winISteamGameServer_SteamGameServer014_SetGameTags(struct w_iface *_this, const char *pchGameTags) { struct ISteamGameServer_SteamGameServer014_SetGameTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGameTags = pchGameTags, }; TRACE("%p\n", _this); @@ -4250,11 +4250,11 @@ void __thiscall winISteamGameServer_SteamGameServer014_SetGameTags(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetGameTags, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_SetGameData(struct w_steam_iface *_this, const char *pchGameData) +void __thiscall winISteamGameServer_SteamGameServer014_SetGameData(struct w_iface *_this, const char *pchGameData) { struct ISteamGameServer_SteamGameServer014_SetGameData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGameData = pchGameData, }; TRACE("%p\n", _this); @@ -4262,11 +4262,11 @@ void __thiscall winISteamGameServer_SteamGameServer014_SetGameData(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetGameData, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_SetRegion(struct w_steam_iface *_this, const char *pszRegion) +void __thiscall winISteamGameServer_SteamGameServer014_SetRegion(struct w_iface *_this, const char *pszRegion) { struct ISteamGameServer_SteamGameServer014_SetRegion_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszRegion = pszRegion, }; TRACE("%p\n", _this); @@ -4274,22 +4274,22 @@ void __thiscall winISteamGameServer_SteamGameServer014_SetRegion(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetRegion, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_SetAdvertiseServerActive(struct w_steam_iface *_this, int8_t bActive) +void __thiscall winISteamGameServer_SteamGameServer014_SetAdvertiseServerActive(struct w_iface *_this, int8_t bActive) { struct ISteamGameServer_SteamGameServer014_SetAdvertiseServerActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bActive = bActive, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetAdvertiseServerActive, ¶ms ); } -uint32_t __thiscall winISteamGameServer_SteamGameServer014_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +uint32_t __thiscall winISteamGameServer_SteamGameServer014_GetAuthSessionTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamGameServer_SteamGameServer014_GetAuthSessionTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -4299,11 +4299,11 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer014_GetAuthSessionTicket( return params._ret; } -uint32_t __thiscall winISteamGameServer_SteamGameServer014_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) +uint32_t __thiscall winISteamGameServer_SteamGameServer014_BeginAuthSession(struct w_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { struct ISteamGameServer_SteamGameServer014_BeginAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthTicket = pAuthTicket, .cbAuthTicket = cbAuthTicket, .steamID = steamID, @@ -4313,33 +4313,33 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer014_BeginAuthSession(stru return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer014_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamGameServer_SteamGameServer014_EndAuthSession(struct w_iface *_this, CSteamID steamID) { struct ISteamGameServer_SteamGameServer014_EndAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_EndAuthSession, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) +void __thiscall winISteamGameServer_SteamGameServer014_CancelAuthTicket(struct w_iface *_this, uint32_t hAuthTicket) { struct ISteamGameServer_SteamGameServer014_CancelAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_CancelAuthTicket, ¶ms ); } -uint32_t __thiscall winISteamGameServer_SteamGameServer014_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamGameServer_SteamGameServer014_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamGameServer_SteamGameServer014_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -4348,11 +4348,11 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer014_UserHasLicenseForApp( return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer014_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) +int8_t __thiscall winISteamGameServer_SteamGameServer014_RequestUserGroupStatus(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { struct ISteamGameServer_SteamGameServer014_RequestUserGroupStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDGroup = steamIDGroup, }; @@ -4361,32 +4361,32 @@ int8_t __thiscall winISteamGameServer_SteamGameServer014_RequestUserGroupStatus( return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer014_GetGameplayStats(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer014_GetGameplayStats(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer014_GetGameplayStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_GetGameplayStats, ¶ms ); } -uint64_t __thiscall winISteamGameServer_SteamGameServer014_GetServerReputation(struct w_steam_iface *_this) +uint64_t __thiscall winISteamGameServer_SteamGameServer014_GetServerReputation(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer014_GetServerReputation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_GetServerReputation, ¶ms ); return params._ret; } -SteamIPAddress_t * __thiscall winISteamGameServer_SteamGameServer014_GetPublicIP(struct w_steam_iface *_this, SteamIPAddress_t *_ret) +SteamIPAddress_t * __thiscall winISteamGameServer_SteamGameServer014_GetPublicIP(struct w_iface *_this, SteamIPAddress_t *_ret) { struct ISteamGameServer_SteamGameServer014_GetPublicIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -4394,11 +4394,11 @@ SteamIPAddress_t * __thiscall winISteamGameServer_SteamGameServer014_GetPublicIP return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer014_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) +int8_t __thiscall winISteamGameServer_SteamGameServer014_HandleIncomingPacket(struct w_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) { struct ISteamGameServer_SteamGameServer014_HandleIncomingPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pData = pData, .cbData = cbData, .srcIP = srcIP, @@ -4409,11 +4409,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer014_HandleIncomingPacket(st return params._ret; } -int32_t __thiscall winISteamGameServer_SteamGameServer014_GetNextOutgoingPacket(struct w_steam_iface *_this, void *pOut, int32_t cbMaxOut, uint32_t *pNetAdr, uint16_t *pPort) +int32_t __thiscall winISteamGameServer_SteamGameServer014_GetNextOutgoingPacket(struct w_iface *_this, void *pOut, int32_t cbMaxOut, uint32_t *pNetAdr, uint16_t *pPort) { struct ISteamGameServer_SteamGameServer014_GetNextOutgoingPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pOut = pOut, .cbMaxOut = cbMaxOut, .pNetAdr = pNetAdr, @@ -4424,11 +4424,11 @@ int32_t __thiscall winISteamGameServer_SteamGameServer014_GetNextOutgoingPacket( return params._ret; } -uint64_t __thiscall winISteamGameServer_SteamGameServer014_AssociateWithClan(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamGameServer_SteamGameServer014_AssociateWithClan(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamGameServer_SteamGameServer014_AssociateWithClan_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -4436,11 +4436,11 @@ uint64_t __thiscall winISteamGameServer_SteamGameServer014_AssociateWithClan(str return params._ret; } -uint64_t __thiscall winISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility(struct w_steam_iface *_this, CSteamID steamIDNewPlayer) +uint64_t __thiscall winISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility(struct w_iface *_this, CSteamID steamIDNewPlayer) { struct ISteamGameServer_SteamGameServer014_ComputeNewPlayerCompatibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDNewPlayer = steamIDNewPlayer, }; TRACE("%p\n", _this); @@ -4448,11 +4448,11 @@ uint64_t __thiscall winISteamGameServer_SteamGameServer014_ComputeNewPlayerCompa return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) +int8_t __thiscall winISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED(struct w_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { struct ISteamGameServer_SteamGameServer014_SendUserConnectAndAuthenticate_DEPRECATED_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPClient = unIPClient, .pvAuthBlob = pvAuthBlob, .cubAuthBlobSize = cubAuthBlobSize, @@ -4463,11 +4463,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer014_SendUserConnectAndAuthe return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer014_CreateUnauthenticatedUserConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -4475,22 +4475,22 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer014_CreateUnauthenticat return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED(struct w_steam_iface *_this, CSteamID steamIDUser) +void __thiscall winISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SendUserDisconnect_DEPRECATED, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer014_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer014_BUpdateUserData(struct w_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer014_BUpdateUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchPlayerName = pchPlayerName, .uScore = uScore, @@ -4501,22 +4501,22 @@ int8_t __thiscall winISteamGameServer_SteamGameServer014_BUpdateUserData(struct return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED(struct w_steam_iface *_this, int32_t iHeartbeatInterval) +void __thiscall winISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED(struct w_iface *_this, int32_t iHeartbeatInterval) { struct ISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iHeartbeatInterval = iHeartbeatInterval, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_SetMasterServerHeartbeatInterval_DEPRECATED, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer014_ForceMasterServerHeartbeat_DEPRECATED, ¶ms ); @@ -4575,9 +4575,9 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer014_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamGameServer_SteamGameServer014(void *u_iface) +struct w_iface *create_winISteamGameServer_SteamGameServer014( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamGameServer014"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer014"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamGameServer_SteamGameServer014_vtable, 44, "SteamGameServer014"); r->u_iface = u_iface; @@ -4629,11 +4629,11 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer015_BUpdateUserData, DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED, 8) DEFINE_THISCALL_WRAPPER(winISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED, 4) -int8_t __thiscall winISteamGameServer_SteamGameServer015_InitGameServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) +int8_t __thiscall winISteamGameServer_SteamGameServer015_InitGameServer(struct w_iface *_this, uint32_t unIP, uint16_t usGamePort, uint16_t usQueryPort, uint32_t unFlags, uint32_t nGameAppId, const char *pchVersionString) { struct ISteamGameServer_SteamGameServer015_InitGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usGamePort = usGamePort, .usQueryPort = usQueryPort, @@ -4647,11 +4647,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer015_InitGameServer(struct w return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer015_SetProduct(struct w_steam_iface *_this, const char *pszProduct) +void __thiscall winISteamGameServer_SteamGameServer015_SetProduct(struct w_iface *_this, const char *pszProduct) { struct ISteamGameServer_SteamGameServer015_SetProduct_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszProduct = pszProduct, }; TRACE("%p\n", _this); @@ -4659,11 +4659,11 @@ void __thiscall winISteamGameServer_SteamGameServer015_SetProduct(struct w_steam STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetProduct, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_SetGameDescription(struct w_steam_iface *_this, const char *pszGameDescription) +void __thiscall winISteamGameServer_SteamGameServer015_SetGameDescription(struct w_iface *_this, const char *pszGameDescription) { struct ISteamGameServer_SteamGameServer015_SetGameDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszGameDescription = pszGameDescription, }; TRACE("%p\n", _this); @@ -4671,11 +4671,11 @@ void __thiscall winISteamGameServer_SteamGameServer015_SetGameDescription(struct STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetGameDescription, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_SetModDir(struct w_steam_iface *_this, const char *pszModDir) +void __thiscall winISteamGameServer_SteamGameServer015_SetModDir(struct w_iface *_this, const char *pszModDir) { struct ISteamGameServer_SteamGameServer015_SetModDir_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszModDir = pszModDir, }; TRACE("%p\n", _this); @@ -4683,22 +4683,22 @@ void __thiscall winISteamGameServer_SteamGameServer015_SetModDir(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetModDir, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_SetDedicatedServer(struct w_steam_iface *_this, int8_t bDedicated) +void __thiscall winISteamGameServer_SteamGameServer015_SetDedicatedServer(struct w_iface *_this, int8_t bDedicated) { struct ISteamGameServer_SteamGameServer015_SetDedicatedServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bDedicated = bDedicated, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetDedicatedServer, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_LogOn(struct w_steam_iface *_this, const char *pszToken) +void __thiscall winISteamGameServer_SteamGameServer015_LogOn(struct w_iface *_this, const char *pszToken) { struct ISteamGameServer_SteamGameServer015_LogOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszToken = pszToken, }; TRACE("%p\n", _this); @@ -4706,53 +4706,53 @@ void __thiscall winISteamGameServer_SteamGameServer015_LogOn(struct w_steam_ifac STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_LogOn, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_LogOnAnonymous(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer015_LogOnAnonymous(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer015_LogOnAnonymous_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_LogOnAnonymous, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_LogOff(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer015_LogOff(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer015_LogOff_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_LogOff, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer015_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer015_BLoggedOn(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer015_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_BLoggedOn, ¶ms ); return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer015_BSecure(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer015_BSecure(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer015_BSecure_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_BSecure, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer015_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer015_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer015_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -4760,44 +4760,44 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer015_GetSteamID(struct w return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer015_WasRestartRequested(struct w_steam_iface *_this) +int8_t __thiscall winISteamGameServer_SteamGameServer015_WasRestartRequested(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer015_WasRestartRequested_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_WasRestartRequested, ¶ms ); return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer015_SetMaxPlayerCount(struct w_steam_iface *_this, int32_t cPlayersMax) +void __thiscall winISteamGameServer_SteamGameServer015_SetMaxPlayerCount(struct w_iface *_this, int32_t cPlayersMax) { struct ISteamGameServer_SteamGameServer015_SetMaxPlayerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cPlayersMax = cPlayersMax, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetMaxPlayerCount, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_SetBotPlayerCount(struct w_steam_iface *_this, int32_t cBotplayers) +void __thiscall winISteamGameServer_SteamGameServer015_SetBotPlayerCount(struct w_iface *_this, int32_t cBotplayers) { struct ISteamGameServer_SteamGameServer015_SetBotPlayerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cBotplayers = cBotplayers, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetBotPlayerCount, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_SetServerName(struct w_steam_iface *_this, const char *pszServerName) +void __thiscall winISteamGameServer_SteamGameServer015_SetServerName(struct w_iface *_this, const char *pszServerName) { struct ISteamGameServer_SteamGameServer015_SetServerName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszServerName = pszServerName, }; TRACE("%p\n", _this); @@ -4805,11 +4805,11 @@ void __thiscall winISteamGameServer_SteamGameServer015_SetServerName(struct w_st STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetServerName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_SetMapName(struct w_steam_iface *_this, const char *pszMapName) +void __thiscall winISteamGameServer_SteamGameServer015_SetMapName(struct w_iface *_this, const char *pszMapName) { struct ISteamGameServer_SteamGameServer015_SetMapName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszMapName = pszMapName, }; TRACE("%p\n", _this); @@ -4817,33 +4817,33 @@ void __thiscall winISteamGameServer_SteamGameServer015_SetMapName(struct w_steam STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetMapName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_SetPasswordProtected(struct w_steam_iface *_this, int8_t bPasswordProtected) +void __thiscall winISteamGameServer_SteamGameServer015_SetPasswordProtected(struct w_iface *_this, int8_t bPasswordProtected) { struct ISteamGameServer_SteamGameServer015_SetPasswordProtected_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bPasswordProtected = bPasswordProtected, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetPasswordProtected, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_SetSpectatorPort(struct w_steam_iface *_this, uint16_t unSpectatorPort) +void __thiscall winISteamGameServer_SteamGameServer015_SetSpectatorPort(struct w_iface *_this, uint16_t unSpectatorPort) { struct ISteamGameServer_SteamGameServer015_SetSpectatorPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSpectatorPort = unSpectatorPort, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetSpectatorPort, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_SetSpectatorServerName(struct w_steam_iface *_this, const char *pszSpectatorServerName) +void __thiscall winISteamGameServer_SteamGameServer015_SetSpectatorServerName(struct w_iface *_this, const char *pszSpectatorServerName) { struct ISteamGameServer_SteamGameServer015_SetSpectatorServerName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszSpectatorServerName = pszSpectatorServerName, }; TRACE("%p\n", _this); @@ -4851,21 +4851,21 @@ void __thiscall winISteamGameServer_SteamGameServer015_SetSpectatorServerName(st STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetSpectatorServerName, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_ClearAllKeyValues(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer015_ClearAllKeyValues(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer015_ClearAllKeyValues_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_ClearAllKeyValues, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_SetKeyValue(struct w_steam_iface *_this, const char *pKey, const char *pValue) +void __thiscall winISteamGameServer_SteamGameServer015_SetKeyValue(struct w_iface *_this, const char *pKey, const char *pValue) { struct ISteamGameServer_SteamGameServer015_SetKeyValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pKey = pKey, .pValue = pValue, }; @@ -4875,11 +4875,11 @@ void __thiscall winISteamGameServer_SteamGameServer015_SetKeyValue(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetKeyValue, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_SetGameTags(struct w_steam_iface *_this, const char *pchGameTags) +void __thiscall winISteamGameServer_SteamGameServer015_SetGameTags(struct w_iface *_this, const char *pchGameTags) { struct ISteamGameServer_SteamGameServer015_SetGameTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGameTags = pchGameTags, }; TRACE("%p\n", _this); @@ -4887,11 +4887,11 @@ void __thiscall winISteamGameServer_SteamGameServer015_SetGameTags(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetGameTags, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_SetGameData(struct w_steam_iface *_this, const char *pchGameData) +void __thiscall winISteamGameServer_SteamGameServer015_SetGameData(struct w_iface *_this, const char *pchGameData) { struct ISteamGameServer_SteamGameServer015_SetGameData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGameData = pchGameData, }; TRACE("%p\n", _this); @@ -4899,11 +4899,11 @@ void __thiscall winISteamGameServer_SteamGameServer015_SetGameData(struct w_stea STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetGameData, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_SetRegion(struct w_steam_iface *_this, const char *pszRegion) +void __thiscall winISteamGameServer_SteamGameServer015_SetRegion(struct w_iface *_this, const char *pszRegion) { struct ISteamGameServer_SteamGameServer015_SetRegion_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszRegion = pszRegion, }; TRACE("%p\n", _this); @@ -4911,22 +4911,22 @@ void __thiscall winISteamGameServer_SteamGameServer015_SetRegion(struct w_steam_ STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetRegion, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_SetAdvertiseServerActive(struct w_steam_iface *_this, int8_t bActive) +void __thiscall winISteamGameServer_SteamGameServer015_SetAdvertiseServerActive(struct w_iface *_this, int8_t bActive) { struct ISteamGameServer_SteamGameServer015_SetAdvertiseServerActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bActive = bActive, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetAdvertiseServerActive, ¶ms ); } -uint32_t __thiscall winISteamGameServer_SteamGameServer015_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket, const SteamNetworkingIdentity_144 *pSnid) +uint32_t __thiscall winISteamGameServer_SteamGameServer015_GetAuthSessionTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket, const SteamNetworkingIdentity_144 *pSnid) { struct ISteamGameServer_SteamGameServer015_GetAuthSessionTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -4937,11 +4937,11 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer015_GetAuthSessionTicket( return params._ret; } -uint32_t __thiscall winISteamGameServer_SteamGameServer015_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) +uint32_t __thiscall winISteamGameServer_SteamGameServer015_BeginAuthSession(struct w_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { struct ISteamGameServer_SteamGameServer015_BeginAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthTicket = pAuthTicket, .cbAuthTicket = cbAuthTicket, .steamID = steamID, @@ -4951,33 +4951,33 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer015_BeginAuthSession(stru return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer015_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamGameServer_SteamGameServer015_EndAuthSession(struct w_iface *_this, CSteamID steamID) { struct ISteamGameServer_SteamGameServer015_EndAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_EndAuthSession, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) +void __thiscall winISteamGameServer_SteamGameServer015_CancelAuthTicket(struct w_iface *_this, uint32_t hAuthTicket) { struct ISteamGameServer_SteamGameServer015_CancelAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_CancelAuthTicket, ¶ms ); } -uint32_t __thiscall winISteamGameServer_SteamGameServer015_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamGameServer_SteamGameServer015_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamGameServer_SteamGameServer015_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -4986,11 +4986,11 @@ uint32_t __thiscall winISteamGameServer_SteamGameServer015_UserHasLicenseForApp( return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer015_RequestUserGroupStatus(struct w_steam_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) +int8_t __thiscall winISteamGameServer_SteamGameServer015_RequestUserGroupStatus(struct w_iface *_this, CSteamID steamIDUser, CSteamID steamIDGroup) { struct ISteamGameServer_SteamGameServer015_RequestUserGroupStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .steamIDGroup = steamIDGroup, }; @@ -4999,32 +4999,32 @@ int8_t __thiscall winISteamGameServer_SteamGameServer015_RequestUserGroupStatus( return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer015_GetGameplayStats(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer015_GetGameplayStats(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer015_GetGameplayStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_GetGameplayStats, ¶ms ); } -uint64_t __thiscall winISteamGameServer_SteamGameServer015_GetServerReputation(struct w_steam_iface *_this) +uint64_t __thiscall winISteamGameServer_SteamGameServer015_GetServerReputation(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer015_GetServerReputation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_GetServerReputation, ¶ms ); return params._ret; } -SteamIPAddress_t * __thiscall winISteamGameServer_SteamGameServer015_GetPublicIP(struct w_steam_iface *_this, SteamIPAddress_t *_ret) +SteamIPAddress_t * __thiscall winISteamGameServer_SteamGameServer015_GetPublicIP(struct w_iface *_this, SteamIPAddress_t *_ret) { struct ISteamGameServer_SteamGameServer015_GetPublicIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -5032,11 +5032,11 @@ SteamIPAddress_t * __thiscall winISteamGameServer_SteamGameServer015_GetPublicIP return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer015_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) +int8_t __thiscall winISteamGameServer_SteamGameServer015_HandleIncomingPacket(struct w_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) { struct ISteamGameServer_SteamGameServer015_HandleIncomingPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pData = pData, .cbData = cbData, .srcIP = srcIP, @@ -5047,11 +5047,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer015_HandleIncomingPacket(st return params._ret; } -int32_t __thiscall winISteamGameServer_SteamGameServer015_GetNextOutgoingPacket(struct w_steam_iface *_this, void *pOut, int32_t cbMaxOut, uint32_t *pNetAdr, uint16_t *pPort) +int32_t __thiscall winISteamGameServer_SteamGameServer015_GetNextOutgoingPacket(struct w_iface *_this, void *pOut, int32_t cbMaxOut, uint32_t *pNetAdr, uint16_t *pPort) { struct ISteamGameServer_SteamGameServer015_GetNextOutgoingPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pOut = pOut, .cbMaxOut = cbMaxOut, .pNetAdr = pNetAdr, @@ -5062,11 +5062,11 @@ int32_t __thiscall winISteamGameServer_SteamGameServer015_GetNextOutgoingPacket( return params._ret; } -uint64_t __thiscall winISteamGameServer_SteamGameServer015_AssociateWithClan(struct w_steam_iface *_this, CSteamID steamIDClan) +uint64_t __thiscall winISteamGameServer_SteamGameServer015_AssociateWithClan(struct w_iface *_this, CSteamID steamIDClan) { struct ISteamGameServer_SteamGameServer015_AssociateWithClan_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDClan = steamIDClan, }; TRACE("%p\n", _this); @@ -5074,11 +5074,11 @@ uint64_t __thiscall winISteamGameServer_SteamGameServer015_AssociateWithClan(str return params._ret; } -uint64_t __thiscall winISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility(struct w_steam_iface *_this, CSteamID steamIDNewPlayer) +uint64_t __thiscall winISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility(struct w_iface *_this, CSteamID steamIDNewPlayer) { struct ISteamGameServer_SteamGameServer015_ComputeNewPlayerCompatibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDNewPlayer = steamIDNewPlayer, }; TRACE("%p\n", _this); @@ -5086,11 +5086,11 @@ uint64_t __thiscall winISteamGameServer_SteamGameServer015_ComputeNewPlayerCompa return params._ret; } -int8_t __thiscall winISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED(struct w_steam_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) +int8_t __thiscall winISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED(struct w_iface *_this, uint32_t unIPClient, const void *pvAuthBlob, uint32_t cubAuthBlobSize, CSteamID *pSteamIDUser) { struct ISteamGameServer_SteamGameServer015_SendUserConnectAndAuthenticate_DEPRECATED_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPClient = unIPClient, .pvAuthBlob = pvAuthBlob, .cubAuthBlobSize = cubAuthBlobSize, @@ -5101,11 +5101,11 @@ int8_t __thiscall winISteamGameServer_SteamGameServer015_SendUserConnectAndAuthe return params._ret; } -CSteamID * __thiscall winISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection(struct w_iface *_this, CSteamID *_ret) { struct ISteamGameServer_SteamGameServer015_CreateUnauthenticatedUserConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -5113,22 +5113,22 @@ CSteamID * __thiscall winISteamGameServer_SteamGameServer015_CreateUnauthenticat return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED(struct w_steam_iface *_this, CSteamID steamIDUser) +void __thiscall winISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SendUserDisconnect_DEPRECATED, ¶ms ); } -int8_t __thiscall winISteamGameServer_SteamGameServer015_BUpdateUserData(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) +int8_t __thiscall winISteamGameServer_SteamGameServer015_BUpdateUserData(struct w_iface *_this, CSteamID steamIDUser, const char *pchPlayerName, uint32_t uScore) { struct ISteamGameServer_SteamGameServer015_BUpdateUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchPlayerName = pchPlayerName, .uScore = uScore, @@ -5139,22 +5139,22 @@ int8_t __thiscall winISteamGameServer_SteamGameServer015_BUpdateUserData(struct return params._ret; } -void __thiscall winISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED(struct w_steam_iface *_this, int32_t iHeartbeatInterval) +void __thiscall winISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED(struct w_iface *_this, int32_t iHeartbeatInterval) { struct ISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iHeartbeatInterval = iHeartbeatInterval, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_SetMasterServerHeartbeatInterval_DEPRECATED, ¶ms ); } -void __thiscall winISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED(struct w_steam_iface *_this) +void __thiscall winISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED(struct w_iface *_this) { struct ISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamGameServer_SteamGameServer015_ForceMasterServerHeartbeat_DEPRECATED, ¶ms ); @@ -5213,9 +5213,9 @@ __ASM_BLOCK_BEGIN(winISteamGameServer_SteamGameServer015_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamGameServer_SteamGameServer015(void *u_iface) +struct w_iface *create_winISteamGameServer_SteamGameServer015( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamGameServer015"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServer015"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamGameServer_SteamGameServer015_vtable, 44, "SteamGameServer015"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamGameServerStats.c b/lsteamclient/winISteamGameServerStats.c index 46a99484..22831e56 100644 --- a/lsteamclient/winISteamGameServerStats.c +++ b/lsteamclient/winISteamGameServerStats.c @@ -14,11 +14,11 @@ DEFINE_THISCALL_WRAPPER(winISteamGameServerStats_SteamGameServerStats001_SetUser DEFINE_THISCALL_WRAPPER(winISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement, 16) DEFINE_THISCALL_WRAPPER(winISteamGameServerStats_SteamGameServerStats001_StoreUserStats, 12) -uint64_t __thiscall winISteamGameServerStats_SteamGameServerStats001_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) +uint64_t __thiscall winISteamGameServerStats_SteamGameServerStats001_RequestUserStats(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamGameServerStats_SteamGameServerStats001_RequestUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); @@ -26,11 +26,11 @@ uint64_t __thiscall winISteamGameServerStats_SteamGameServerStats001_RequestUser return params._ret; } -int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserStat(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -41,11 +41,11 @@ int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserStat(s return params._ret; } -int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserStat_2(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamGameServerStats_SteamGameServerStats001_GetUserStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -56,11 +56,11 @@ int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserStat_2 return params._ret; } -int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserAchievement(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamGameServerStats_SteamGameServerStats001_GetUserAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pbAchieved = pbAchieved, @@ -71,11 +71,11 @@ int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_GetUserAchiev return params._ret; } -int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t nData) +int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserStat(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t nData) { struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .nData = nData, @@ -86,11 +86,11 @@ int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserStat(s return params._ret; } -int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float fData) +int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserStat_2(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, float fData) { struct ISteamGameServerStats_SteamGameServerStats001_SetUserStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .fData = fData, @@ -101,11 +101,11 @@ int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserStat_2 return params._ret; } -int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamGameServerStats_SteamGameServerStats001_UpdateUserAvgRateStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .flCountThisSession = flCountThisSession, @@ -117,11 +117,11 @@ int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_UpdateUserAvg return params._ret; } -int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName) +int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserAchievement(struct w_iface *_this, CSteamID steamIDUser, const char *pchName) { struct ISteamGameServerStats_SteamGameServerStats001_SetUserAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, }; @@ -131,11 +131,11 @@ int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_SetUserAchiev return params._ret; } -int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName) +int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement(struct w_iface *_this, CSteamID steamIDUser, const char *pchName) { struct ISteamGameServerStats_SteamGameServerStats001_ClearUserAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, }; @@ -145,11 +145,11 @@ int8_t __thiscall winISteamGameServerStats_SteamGameServerStats001_ClearUserAchi return params._ret; } -uint64_t __thiscall winISteamGameServerStats_SteamGameServerStats001_StoreUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) +uint64_t __thiscall winISteamGameServerStats_SteamGameServerStats001_StoreUserStats(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamGameServerStats_SteamGameServerStats001_StoreUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); @@ -176,9 +176,9 @@ __ASM_BLOCK_BEGIN(winISteamGameServerStats_SteamGameServerStats001_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamGameServerStats_SteamGameServerStats001(void *u_iface) +struct w_iface *create_winISteamGameServerStats_SteamGameServerStats001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamGameServerStats001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameServerStats001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamGameServerStats_SteamGameServerStats001_vtable, 10, "SteamGameServerStats001"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamGameStats.c b/lsteamclient/winISteamGameStats.c index 6d404e0b..9a327dfa 100644 --- a/lsteamclient/winISteamGameStats.c +++ b/lsteamclient/winISteamGameStats.c @@ -17,11 +17,11 @@ DEFINE_THISCALL_WRAPPER(winISteamGameStats_SteamGameStats001_AddRowAttributeFloa DEFINE_THISCALL_WRAPPER(winISteamGameStats_SteamGameStats001_AddSessionAttributeInt64, 24) DEFINE_THISCALL_WRAPPER(winISteamGameStats_SteamGameStats001_AddRowAttributeInt64, 24) -uint64_t __thiscall winISteamGameStats_SteamGameStats001_GetNewSession(struct w_steam_iface *_this, int8_t nAccountType, uint64_t ulAccountID, int32_t nAppID, uint32_t rtTimeStarted) +uint64_t __thiscall winISteamGameStats_SteamGameStats001_GetNewSession(struct w_iface *_this, int8_t nAccountType, uint64_t ulAccountID, int32_t nAppID, uint32_t rtTimeStarted) { struct ISteamGameStats_SteamGameStats001_GetNewSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAccountType = nAccountType, .ulAccountID = ulAccountID, .nAppID = nAppID, @@ -32,11 +32,11 @@ uint64_t __thiscall winISteamGameStats_SteamGameStats001_GetNewSession(struct w_ return params._ret; } -uint64_t __thiscall winISteamGameStats_SteamGameStats001_EndSession(struct w_steam_iface *_this, uint64_t ulSessionID, uint32_t rtTimeEnded, int32_t nReasonCode) +uint64_t __thiscall winISteamGameStats_SteamGameStats001_EndSession(struct w_iface *_this, uint64_t ulSessionID, uint32_t rtTimeEnded, int32_t nReasonCode) { struct ISteamGameStats_SteamGameStats001_EndSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulSessionID = ulSessionID, .rtTimeEnded = rtTimeEnded, .nReasonCode = nReasonCode, @@ -46,11 +46,11 @@ uint64_t __thiscall winISteamGameStats_SteamGameStats001_EndSession(struct w_ste return params._ret; } -uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeInt(struct w_steam_iface *_this, uint64_t ulSessionID, const char *pstrName, int32_t nData) +uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeInt(struct w_iface *_this, uint64_t ulSessionID, const char *pstrName, int32_t nData) { struct ISteamGameStats_SteamGameStats001_AddSessionAttributeInt_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulSessionID = ulSessionID, .pstrName = pstrName, .nData = nData, @@ -61,11 +61,11 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeInt( return params._ret; } -uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeString(struct w_steam_iface *_this, uint64_t ulSessionID, const char *pstrName, const char *pstrData) +uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeString(struct w_iface *_this, uint64_t ulSessionID, const char *pstrName, const char *pstrData) { struct ISteamGameStats_SteamGameStats001_AddSessionAttributeString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulSessionID = ulSessionID, .pstrName = pstrName, .pstrData = pstrData, @@ -77,11 +77,11 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeStri return params._ret; } -uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeFloat(struct w_steam_iface *_this, uint64_t ulSessionID, const char *pstrName, float fData) +uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeFloat(struct w_iface *_this, uint64_t ulSessionID, const char *pstrName, float fData) { struct ISteamGameStats_SteamGameStats001_AddSessionAttributeFloat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulSessionID = ulSessionID, .pstrName = pstrName, .fData = fData, @@ -92,11 +92,11 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeFloa return params._ret; } -uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddNewRow(struct w_steam_iface *_this, uint64_t *pulRowID, uint64_t ulSessionID, const char *pstrTableName) +uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddNewRow(struct w_iface *_this, uint64_t *pulRowID, uint64_t ulSessionID, const char *pstrTableName) { struct ISteamGameStats_SteamGameStats001_AddNewRow_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pulRowID = pulRowID, .ulSessionID = ulSessionID, .pstrTableName = pstrTableName, @@ -107,11 +107,11 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddNewRow(struct w_stea return params._ret; } -uint32_t __thiscall winISteamGameStats_SteamGameStats001_CommitRow(struct w_steam_iface *_this, uint64_t ulRowID) +uint32_t __thiscall winISteamGameStats_SteamGameStats001_CommitRow(struct w_iface *_this, uint64_t ulRowID) { struct ISteamGameStats_SteamGameStats001_CommitRow_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulRowID = ulRowID, }; TRACE("%p\n", _this); @@ -119,11 +119,11 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_CommitRow(struct w_stea return params._ret; } -uint32_t __thiscall winISteamGameStats_SteamGameStats001_CommitOutstandingRows(struct w_steam_iface *_this, uint64_t ulSessionID) +uint32_t __thiscall winISteamGameStats_SteamGameStats001_CommitOutstandingRows(struct w_iface *_this, uint64_t ulSessionID) { struct ISteamGameStats_SteamGameStats001_CommitOutstandingRows_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulSessionID = ulSessionID, }; TRACE("%p\n", _this); @@ -131,11 +131,11 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_CommitOutstandingRows(s return params._ret; } -uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAttributeInt(struct w_steam_iface *_this, uint64_t ulRowID, const char *pstrName, int32_t nData) +uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAttributeInt(struct w_iface *_this, uint64_t ulRowID, const char *pstrName, int32_t nData) { struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulRowID = ulRowID, .pstrName = pstrName, .nData = nData, @@ -146,11 +146,11 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAttributeInt(stru return params._ret; } -uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAtributeString(struct w_steam_iface *_this, uint64_t ulRowID, const char *pstrName, const char *pstrData) +uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAtributeString(struct w_iface *_this, uint64_t ulRowID, const char *pstrName, const char *pstrData) { struct ISteamGameStats_SteamGameStats001_AddRowAtributeString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulRowID = ulRowID, .pstrName = pstrName, .pstrData = pstrData, @@ -162,11 +162,11 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAtributeString(st return params._ret; } -uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAttributeFloat(struct w_steam_iface *_this, uint64_t ulRowID, const char *pstrName, float fData) +uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAttributeFloat(struct w_iface *_this, uint64_t ulRowID, const char *pstrName, float fData) { struct ISteamGameStats_SteamGameStats001_AddRowAttributeFloat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulRowID = ulRowID, .pstrName = pstrName, .fData = fData, @@ -177,11 +177,11 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAttributeFloat(st return params._ret; } -uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeInt64(struct w_steam_iface *_this, uint64_t ulSessionID, const char *pstrName, int64_t llData) +uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeInt64(struct w_iface *_this, uint64_t ulSessionID, const char *pstrName, int64_t llData) { struct ISteamGameStats_SteamGameStats001_AddSessionAttributeInt64_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulSessionID = ulSessionID, .pstrName = pstrName, .llData = llData, @@ -192,11 +192,11 @@ uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddSessionAttributeInt6 return params._ret; } -uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAttributeInt64(struct w_steam_iface *_this, uint64_t ulRowID, const char *pstrName, int64_t llData) +uint32_t __thiscall winISteamGameStats_SteamGameStats001_AddRowAttributeInt64(struct w_iface *_this, uint64_t ulRowID, const char *pstrName, int64_t llData) { struct ISteamGameStats_SteamGameStats001_AddRowAttributeInt64_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulRowID = ulRowID, .pstrName = pstrName, .llData = llData, @@ -229,9 +229,9 @@ __ASM_BLOCK_BEGIN(winISteamGameStats_SteamGameStats001_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamGameStats_SteamGameStats001(void *u_iface) +struct w_iface *create_winISteamGameStats_SteamGameStats001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamGameStats001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamGameStats001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamGameStats_SteamGameStats001_vtable, 13, "SteamGameStats001"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamHTMLSurface.c b/lsteamclient/winISteamHTMLSurface.c index 203663d9..bc64fb95 100644 --- a/lsteamclient/winISteamHTMLSurface.c +++ b/lsteamclient/winISteamHTMLSurface.c @@ -37,36 +37,36 @@ DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_ DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse, 12) DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse, 12) -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_destructor(struct w_steam_iface *_this) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_destructor(struct w_iface *_this) {/* never called */} -int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init(struct w_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Init, ¶ms ); return params._ret; } -int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown(struct w_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Shutdown, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser(struct w_steam_iface *_this, const char *pchUserAgent, const char *pchUserCSS) +uint64_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser(struct w_iface *_this, const char *pchUserAgent, const char *pchUserCSS) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CreateBrowser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchUserAgent = pchUserAgent, .pchUserCSS = pchUserCSS, }; @@ -77,22 +77,22 @@ uint64_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ return params._ret; } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_RemoveBrowser, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchURL, const char *pchPostData) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchURL, const char *pchPostData) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchURL = pchURL, .pchPostData = pchPostData, @@ -103,11 +103,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Load STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_LoadURL, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t unWidth, uint32_t unHeight) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t unWidth, uint32_t unHeight) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .unWidth = unWidth, .unHeight = unHeight, @@ -116,55 +116,55 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetS STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetSize, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopLoad, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Reload, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoBack, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GoForward, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchKey, const char *pchValue) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchKey, const char *pchValue) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchKey = pchKey, .pchValue = pchValue, @@ -175,11 +175,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddH STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AddHeader, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchScript) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchScript) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchScript = pchScript, }; @@ -188,11 +188,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Exec STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ExecuteJavascript, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; @@ -200,11 +200,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseUp, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; @@ -212,11 +212,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDown, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; @@ -224,11 +224,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseDoubleClick, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove(struct w_steam_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove(struct w_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .x = x, .y = y, @@ -237,11 +237,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseMove, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel(struct w_steam_iface *_this, uint32_t unBrowserHandle, int32_t nDelta) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel(struct w_iface *_this, uint32_t unBrowserHandle, int32_t nDelta) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nDelta = nDelta, }; @@ -249,11 +249,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_MouseWheel, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nNativeKeyCode = nNativeKeyCode, .eHTMLKeyModifiers = eHTMLKeyModifiers, @@ -262,11 +262,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyD STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyDown, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nNativeKeyCode = nNativeKeyCode, .eHTMLKeyModifiers = eHTMLKeyModifiers, @@ -275,11 +275,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyU STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyUp, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t cUnicodeChar, uint32_t eHTMLKeyModifiers) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t cUnicodeChar, uint32_t eHTMLKeyModifiers) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .cUnicodeChar = cUnicodeChar, .eHTMLKeyModifiers = eHTMLKeyModifiers, @@ -288,11 +288,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyC STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_KeyChar, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; @@ -300,11 +300,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetH STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetHorizontalScroll, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; @@ -312,11 +312,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetV STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetVerticalScroll, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bHasKeyFocus) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus(struct w_iface *_this, uint32_t unBrowserHandle, int8_t bHasKeyFocus) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bHasKeyFocus = bHasKeyFocus, }; @@ -324,44 +324,44 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetK STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_SetKeyFocus, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_ViewSource, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_CopyToClipboard, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_PasteFromClipboard, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, int8_t bCurrentlyInFind, int8_t bReverse) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, int8_t bCurrentlyInFind, int8_t bReverse) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchSearchStr = pchSearchStr, .bCurrentlyInFind = bCurrentlyInFind, @@ -372,22 +372,22 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Find, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_StopFind, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition(struct w_steam_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition(struct w_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .x = x, .y = y, @@ -396,11 +396,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetL STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_GetLinkAtPosition, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bAllowed) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest(struct w_iface *_this, uint32_t unBrowserHandle, int8_t bAllowed) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bAllowed = bAllowed, }; @@ -408,11 +408,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_Allo STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_AllowStartRequest, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bResult) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse(struct w_iface *_this, uint32_t unBrowserHandle, int8_t bResult) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bResult = bResult, }; @@ -420,11 +420,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDi STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_JSDialogResponse, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char **pchSelectedFiles) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse(struct w_iface *_this, uint32_t unBrowserHandle, const char **pchSelectedFiles) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_FileLoadDialogResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchSelectedFiles = pchSelectedFiles, }; @@ -474,9 +474,9 @@ __ASM_BLOCK_BEGIN(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_vt ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001(void *u_iface) +struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMHTMLSURFACE_INTERFACE_VERSION_001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMHTMLSURFACE_INTERFACE_VERSION_001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_001_vtable, 33, "STEAMHTMLSURFACE_INTERFACE_VERSION_001"); r->u_iface = u_iface; @@ -519,36 +519,36 @@ DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_ DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse, 12) DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse, 12) -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_destructor(struct w_steam_iface *_this) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_destructor(struct w_iface *_this) {/* never called */} -int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init(struct w_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Init, ¶ms ); return params._ret; } -int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown(struct w_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Shutdown, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser(struct w_steam_iface *_this, const char *pchUserAgent, const char *pchUserCSS) +uint64_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser(struct w_iface *_this, const char *pchUserAgent, const char *pchUserCSS) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CreateBrowser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchUserAgent = pchUserAgent, .pchUserCSS = pchUserCSS, }; @@ -559,22 +559,22 @@ uint64_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ return params._ret; } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_RemoveBrowser, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchURL, const char *pchPostData) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchURL, const char *pchPostData) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchURL = pchURL, .pchPostData = pchPostData, @@ -585,11 +585,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Load STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_LoadURL, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t unWidth, uint32_t unHeight) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t unWidth, uint32_t unHeight) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .unWidth = unWidth, .unHeight = unHeight, @@ -598,55 +598,55 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetS STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetSize, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopLoad, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Reload, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoBack, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GoForward, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchKey, const char *pchValue) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchKey, const char *pchValue) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchKey = pchKey, .pchValue = pchValue, @@ -657,11 +657,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddH STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AddHeader, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchScript) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchScript) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchScript = pchScript, }; @@ -670,11 +670,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Exec STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ExecuteJavascript, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; @@ -682,11 +682,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseUp, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; @@ -694,11 +694,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDown, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; @@ -706,11 +706,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseDoubleClick, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove(struct w_steam_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove(struct w_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .x = x, .y = y, @@ -719,11 +719,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseMove, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel(struct w_steam_iface *_this, uint32_t unBrowserHandle, int32_t nDelta) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel(struct w_iface *_this, uint32_t unBrowserHandle, int32_t nDelta) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nDelta = nDelta, }; @@ -731,11 +731,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_MouseWheel, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nNativeKeyCode = nNativeKeyCode, .eHTMLKeyModifiers = eHTMLKeyModifiers, @@ -744,11 +744,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyD STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyDown, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nNativeKeyCode = nNativeKeyCode, .eHTMLKeyModifiers = eHTMLKeyModifiers, @@ -757,11 +757,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyU STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyUp, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t cUnicodeChar, uint32_t eHTMLKeyModifiers) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t cUnicodeChar, uint32_t eHTMLKeyModifiers) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .cUnicodeChar = cUnicodeChar, .eHTMLKeyModifiers = eHTMLKeyModifiers, @@ -770,11 +770,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyC STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_KeyChar, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; @@ -782,11 +782,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetH STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetHorizontalScroll, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; @@ -794,11 +794,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetV STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetVerticalScroll, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bHasKeyFocus) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus(struct w_iface *_this, uint32_t unBrowserHandle, int8_t bHasKeyFocus) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bHasKeyFocus = bHasKeyFocus, }; @@ -806,44 +806,44 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetK STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetKeyFocus, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_ViewSource, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_CopyToClipboard, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_PasteFromClipboard, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, int8_t bCurrentlyInFind, int8_t bReverse) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, int8_t bCurrentlyInFind, int8_t bReverse) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchSearchStr = pchSearchStr, .bCurrentlyInFind = bCurrentlyInFind, @@ -854,22 +854,22 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Find, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_StopFind, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition(struct w_steam_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition(struct w_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .x = x, .y = y, @@ -878,11 +878,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetL STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_GetLinkAtPosition, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie(struct w_steam_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, int8_t bSecure, int8_t bHTTPOnly) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie(struct w_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, int8_t bSecure, int8_t bHTTPOnly) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchHostname = pchHostname, .pchKey = pchKey, .pchValue = pchValue, @@ -899,11 +899,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetC STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetCookie, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor(struct w_steam_iface *_this, uint32_t unBrowserHandle, float flZoom, int32_t nPointX, int32_t nPointY) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor(struct w_iface *_this, uint32_t unBrowserHandle, float flZoom, int32_t nPointX, int32_t nPointY) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .flZoom = flZoom, .nPointX = nPointX, @@ -913,11 +913,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetP STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_SetPageScaleFactor, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bAllowed) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest(struct w_iface *_this, uint32_t unBrowserHandle, int8_t bAllowed) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bAllowed = bAllowed, }; @@ -925,11 +925,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_Allo STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_AllowStartRequest, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bResult) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse(struct w_iface *_this, uint32_t unBrowserHandle, int8_t bResult) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bResult = bResult, }; @@ -937,11 +937,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDi STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_JSDialogResponse, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char **pchSelectedFiles) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse(struct w_iface *_this, uint32_t unBrowserHandle, const char **pchSelectedFiles) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_FileLoadDialogResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchSelectedFiles = pchSelectedFiles, }; @@ -993,9 +993,9 @@ __ASM_BLOCK_BEGIN(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_vt ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002(void *u_iface) +struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMHTMLSURFACE_INTERFACE_VERSION_002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMHTMLSURFACE_INTERFACE_VERSION_002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_002_vtable, 35, "STEAMHTMLSURFACE_INTERFACE_VERSION_002"); r->u_iface = u_iface; @@ -1039,36 +1039,36 @@ DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_ DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse, 12) DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse, 12) -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_destructor(struct w_steam_iface *_this) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_destructor(struct w_iface *_this) {/* never called */} -int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init(struct w_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Init, ¶ms ); return params._ret; } -int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown(struct w_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Shutdown, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser(struct w_steam_iface *_this, const char *pchUserAgent, const char *pchUserCSS) +uint64_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser(struct w_iface *_this, const char *pchUserAgent, const char *pchUserCSS) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CreateBrowser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchUserAgent = pchUserAgent, .pchUserCSS = pchUserCSS, }; @@ -1079,22 +1079,22 @@ uint64_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ return params._ret; } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_RemoveBrowser, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchURL, const char *pchPostData) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchURL, const char *pchPostData) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchURL = pchURL, .pchPostData = pchPostData, @@ -1105,11 +1105,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Load STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_LoadURL, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t unWidth, uint32_t unHeight) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t unWidth, uint32_t unHeight) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .unWidth = unWidth, .unHeight = unHeight, @@ -1118,55 +1118,55 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetS STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetSize, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopLoad, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Reload, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoBack, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GoForward, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchKey, const char *pchValue) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchKey, const char *pchValue) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchKey = pchKey, .pchValue = pchValue, @@ -1177,11 +1177,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddH STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AddHeader, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchScript) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchScript) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchScript = pchScript, }; @@ -1190,11 +1190,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Exec STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ExecuteJavascript, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; @@ -1202,11 +1202,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseUp, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; @@ -1214,11 +1214,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDown, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; @@ -1226,11 +1226,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseDoubleClick, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove(struct w_steam_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove(struct w_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .x = x, .y = y, @@ -1239,11 +1239,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseMove, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel(struct w_steam_iface *_this, uint32_t unBrowserHandle, int32_t nDelta) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel(struct w_iface *_this, uint32_t unBrowserHandle, int32_t nDelta) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nDelta = nDelta, }; @@ -1251,11 +1251,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_MouseWheel, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nNativeKeyCode = nNativeKeyCode, .eHTMLKeyModifiers = eHTMLKeyModifiers, @@ -1264,11 +1264,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyD STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyDown, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nNativeKeyCode = nNativeKeyCode, .eHTMLKeyModifiers = eHTMLKeyModifiers, @@ -1277,11 +1277,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyU STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyUp, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t cUnicodeChar, uint32_t eHTMLKeyModifiers) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t cUnicodeChar, uint32_t eHTMLKeyModifiers) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .cUnicodeChar = cUnicodeChar, .eHTMLKeyModifiers = eHTMLKeyModifiers, @@ -1290,11 +1290,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyC STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_KeyChar, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; @@ -1302,11 +1302,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetH STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetHorizontalScroll, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; @@ -1314,11 +1314,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetV STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetVerticalScroll, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bHasKeyFocus) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus(struct w_iface *_this, uint32_t unBrowserHandle, int8_t bHasKeyFocus) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bHasKeyFocus = bHasKeyFocus, }; @@ -1326,44 +1326,44 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetK STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetKeyFocus, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_ViewSource, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_CopyToClipboard, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_PasteFromClipboard, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, int8_t bCurrentlyInFind, int8_t bReverse) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, int8_t bCurrentlyInFind, int8_t bReverse) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchSearchStr = pchSearchStr, .bCurrentlyInFind = bCurrentlyInFind, @@ -1374,22 +1374,22 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Find, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_StopFind, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition(struct w_steam_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition(struct w_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .x = x, .y = y, @@ -1398,11 +1398,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetL STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_GetLinkAtPosition, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie(struct w_steam_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, int8_t bSecure, int8_t bHTTPOnly) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie(struct w_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, int8_t bSecure, int8_t bHTTPOnly) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchHostname = pchHostname, .pchKey = pchKey, .pchValue = pchValue, @@ -1419,11 +1419,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetC STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetCookie, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor(struct w_steam_iface *_this, uint32_t unBrowserHandle, float flZoom, int32_t nPointX, int32_t nPointY) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor(struct w_iface *_this, uint32_t unBrowserHandle, float flZoom, int32_t nPointX, int32_t nPointY) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .flZoom = flZoom, .nPointX = nPointX, @@ -1433,11 +1433,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetP STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetPageScaleFactor, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bBackgroundMode) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode(struct w_iface *_this, uint32_t unBrowserHandle, int8_t bBackgroundMode) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bBackgroundMode = bBackgroundMode, }; @@ -1445,11 +1445,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetB STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_SetBackgroundMode, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bAllowed) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest(struct w_iface *_this, uint32_t unBrowserHandle, int8_t bAllowed) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bAllowed = bAllowed, }; @@ -1457,11 +1457,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_Allo STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_AllowStartRequest, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bResult) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse(struct w_iface *_this, uint32_t unBrowserHandle, int8_t bResult) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bResult = bResult, }; @@ -1469,11 +1469,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDi STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_JSDialogResponse, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char **pchSelectedFiles) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse(struct w_iface *_this, uint32_t unBrowserHandle, const char **pchSelectedFiles) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_FileLoadDialogResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchSelectedFiles = pchSelectedFiles, }; @@ -1526,9 +1526,9 @@ __ASM_BLOCK_BEGIN(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_vt ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003(void *u_iface) +struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMHTMLSURFACE_INTERFACE_VERSION_003"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMHTMLSURFACE_INTERFACE_VERSION_003"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_003_vtable, 36, "STEAMHTMLSURFACE_INTERFACE_VERSION_003"); r->u_iface = u_iface; @@ -1573,36 +1573,36 @@ DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_ DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse, 12) DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse, 12) -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_destructor(struct w_steam_iface *_this) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_destructor(struct w_iface *_this) {/* never called */} -int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init(struct w_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Init, ¶ms ); return params._ret; } -int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown(struct w_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Shutdown, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser(struct w_steam_iface *_this, const char *pchUserAgent, const char *pchUserCSS) +uint64_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser(struct w_iface *_this, const char *pchUserAgent, const char *pchUserCSS) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CreateBrowser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchUserAgent = pchUserAgent, .pchUserCSS = pchUserCSS, }; @@ -1613,22 +1613,22 @@ uint64_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ return params._ret; } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_RemoveBrowser, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchURL, const char *pchPostData) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchURL, const char *pchPostData) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchURL = pchURL, .pchPostData = pchPostData, @@ -1639,11 +1639,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Load STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_LoadURL, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t unWidth, uint32_t unHeight) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t unWidth, uint32_t unHeight) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .unWidth = unWidth, .unHeight = unHeight, @@ -1652,55 +1652,55 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetS STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetSize, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopLoad, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Reload, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoBack, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GoForward, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchKey, const char *pchValue) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchKey, const char *pchValue) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchKey = pchKey, .pchValue = pchValue, @@ -1711,11 +1711,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddH STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AddHeader, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchScript) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchScript) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchScript = pchScript, }; @@ -1724,11 +1724,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Exec STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ExecuteJavascript, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; @@ -1736,11 +1736,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseUp, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; @@ -1748,11 +1748,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDown, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; @@ -1760,11 +1760,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseDoubleClick, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove(struct w_steam_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove(struct w_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .x = x, .y = y, @@ -1773,11 +1773,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseMove, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel(struct w_steam_iface *_this, uint32_t unBrowserHandle, int32_t nDelta) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel(struct w_iface *_this, uint32_t unBrowserHandle, int32_t nDelta) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nDelta = nDelta, }; @@ -1785,11 +1785,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_MouseWheel, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nNativeKeyCode = nNativeKeyCode, .eHTMLKeyModifiers = eHTMLKeyModifiers, @@ -1798,11 +1798,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyD STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyDown, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nNativeKeyCode = nNativeKeyCode, .eHTMLKeyModifiers = eHTMLKeyModifiers, @@ -1811,11 +1811,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyU STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyUp, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t cUnicodeChar, uint32_t eHTMLKeyModifiers) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t cUnicodeChar, uint32_t eHTMLKeyModifiers) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .cUnicodeChar = cUnicodeChar, .eHTMLKeyModifiers = eHTMLKeyModifiers, @@ -1824,11 +1824,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyC STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_KeyChar, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; @@ -1836,11 +1836,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetH STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetHorizontalScroll, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; @@ -1848,11 +1848,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetV STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetVerticalScroll, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bHasKeyFocus) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus(struct w_iface *_this, uint32_t unBrowserHandle, int8_t bHasKeyFocus) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bHasKeyFocus = bHasKeyFocus, }; @@ -1860,44 +1860,44 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetK STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetKeyFocus, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_ViewSource, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_CopyToClipboard, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_PasteFromClipboard, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, int8_t bCurrentlyInFind, int8_t bReverse) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, int8_t bCurrentlyInFind, int8_t bReverse) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchSearchStr = pchSearchStr, .bCurrentlyInFind = bCurrentlyInFind, @@ -1908,22 +1908,22 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Find, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_StopFind, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition(struct w_steam_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition(struct w_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .x = x, .y = y, @@ -1932,11 +1932,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetL STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_GetLinkAtPosition, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie(struct w_steam_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, int8_t bSecure, int8_t bHTTPOnly) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie(struct w_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, int8_t bSecure, int8_t bHTTPOnly) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchHostname = pchHostname, .pchKey = pchKey, .pchValue = pchValue, @@ -1953,11 +1953,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetC STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetCookie, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor(struct w_steam_iface *_this, uint32_t unBrowserHandle, float flZoom, int32_t nPointX, int32_t nPointY) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor(struct w_iface *_this, uint32_t unBrowserHandle, float flZoom, int32_t nPointX, int32_t nPointY) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .flZoom = flZoom, .nPointX = nPointX, @@ -1967,11 +1967,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetP STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetPageScaleFactor, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bBackgroundMode) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode(struct w_iface *_this, uint32_t unBrowserHandle, int8_t bBackgroundMode) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bBackgroundMode = bBackgroundMode, }; @@ -1979,11 +1979,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetB STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetBackgroundMode, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor(struct w_steam_iface *_this, uint32_t unBrowserHandle, float flDPIScaling) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor(struct w_iface *_this, uint32_t unBrowserHandle, float flDPIScaling) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .flDPIScaling = flDPIScaling, }; @@ -1991,11 +1991,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetD STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_SetDPIScalingFactor, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bAllowed) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest(struct w_iface *_this, uint32_t unBrowserHandle, int8_t bAllowed) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bAllowed = bAllowed, }; @@ -2003,11 +2003,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_Allo STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_AllowStartRequest, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bResult) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse(struct w_iface *_this, uint32_t unBrowserHandle, int8_t bResult) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bResult = bResult, }; @@ -2015,11 +2015,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDi STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_JSDialogResponse, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char **pchSelectedFiles) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse(struct w_iface *_this, uint32_t unBrowserHandle, const char **pchSelectedFiles) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_FileLoadDialogResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchSelectedFiles = pchSelectedFiles, }; @@ -2073,9 +2073,9 @@ __ASM_BLOCK_BEGIN(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_vt ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004(void *u_iface) +struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMHTMLSURFACE_INTERFACE_VERSION_004"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMHTMLSURFACE_INTERFACE_VERSION_004"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_004_vtable, 37, "STEAMHTMLSURFACE_INTERFACE_VERSION_004"); r->u_iface = u_iface; @@ -2121,36 +2121,36 @@ DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_ DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse, 12) DEFINE_THISCALL_WRAPPER(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse, 12) -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_destructor(struct w_steam_iface *_this) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_destructor(struct w_iface *_this) {/* never called */} -int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init(struct w_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Init, ¶ms ); return params._ret; } -int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown(struct w_iface *_this) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Shutdown, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser(struct w_steam_iface *_this, const char *pchUserAgent, const char *pchUserCSS) +uint64_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser(struct w_iface *_this, const char *pchUserAgent, const char *pchUserCSS) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CreateBrowser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchUserAgent = pchUserAgent, .pchUserCSS = pchUserCSS, }; @@ -2161,22 +2161,22 @@ uint64_t __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ return params._ret; } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_RemoveBrowser, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchURL, const char *pchPostData) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchURL, const char *pchPostData) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchURL = pchURL, .pchPostData = pchPostData, @@ -2187,11 +2187,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Load STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_LoadURL, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t unWidth, uint32_t unHeight) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t unWidth, uint32_t unHeight) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .unWidth = unWidth, .unHeight = unHeight, @@ -2200,55 +2200,55 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetS STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetSize, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopLoad, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Reload, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoBack, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GoForward, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchKey, const char *pchValue) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchKey, const char *pchValue) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchKey = pchKey, .pchValue = pchValue, @@ -2259,11 +2259,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddH STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AddHeader, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchScript) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchScript) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchScript = pchScript, }; @@ -2272,11 +2272,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Exec STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ExecuteJavascript, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; @@ -2284,11 +2284,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseUp, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; @@ -2296,11 +2296,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDown, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t eMouseButton) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .eMouseButton = eMouseButton, }; @@ -2308,11 +2308,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseDoubleClick, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove(struct w_steam_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove(struct w_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .x = x, .y = y, @@ -2321,11 +2321,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseMove, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel(struct w_steam_iface *_this, uint32_t unBrowserHandle, int32_t nDelta) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel(struct w_iface *_this, uint32_t unBrowserHandle, int32_t nDelta) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nDelta = nDelta, }; @@ -2333,11 +2333,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Mous STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_MouseWheel, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers, int8_t bIsSystemKey) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers, int8_t bIsSystemKey) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nNativeKeyCode = nNativeKeyCode, .eHTMLKeyModifiers = eHTMLKeyModifiers, @@ -2347,11 +2347,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyD STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyDown, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nNativeKeyCode, uint32_t eHTMLKeyModifiers) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nNativeKeyCode = nNativeKeyCode, .eHTMLKeyModifiers = eHTMLKeyModifiers, @@ -2360,11 +2360,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyU STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyUp, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t cUnicodeChar, uint32_t eHTMLKeyModifiers) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t cUnicodeChar, uint32_t eHTMLKeyModifiers) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .cUnicodeChar = cUnicodeChar, .eHTMLKeyModifiers = eHTMLKeyModifiers, @@ -2373,11 +2373,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyC STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_KeyChar, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; @@ -2385,11 +2385,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetH STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetHorizontalScroll, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll(struct w_steam_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll(struct w_iface *_this, uint32_t unBrowserHandle, uint32_t nAbsolutePixelScroll) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .nAbsolutePixelScroll = nAbsolutePixelScroll, }; @@ -2397,11 +2397,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetV STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetVerticalScroll, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bHasKeyFocus) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus(struct w_iface *_this, uint32_t unBrowserHandle, int8_t bHasKeyFocus) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bHasKeyFocus = bHasKeyFocus, }; @@ -2409,44 +2409,44 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetK STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetKeyFocus, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_ViewSource, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_CopyToClipboard, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_PasteFromClipboard, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, int8_t bCurrentlyInFind, int8_t bReverse) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find(struct w_iface *_this, uint32_t unBrowserHandle, const char *pchSearchStr, int8_t bCurrentlyInFind, int8_t bReverse) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchSearchStr = pchSearchStr, .bCurrentlyInFind = bCurrentlyInFind, @@ -2457,22 +2457,22 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Find, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_StopFind, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition(struct w_steam_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition(struct w_iface *_this, uint32_t unBrowserHandle, int32_t x, int32_t y) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .x = x, .y = y, @@ -2481,11 +2481,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetL STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_GetLinkAtPosition, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie(struct w_steam_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, int8_t bSecure, int8_t bHTTPOnly) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie(struct w_iface *_this, const char *pchHostname, const char *pchKey, const char *pchValue, const char *pchPath, uint32_t nExpires, int8_t bSecure, int8_t bHTTPOnly) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchHostname = pchHostname, .pchKey = pchKey, .pchValue = pchValue, @@ -2502,11 +2502,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetC STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetCookie, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor(struct w_steam_iface *_this, uint32_t unBrowserHandle, float flZoom, int32_t nPointX, int32_t nPointY) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor(struct w_iface *_this, uint32_t unBrowserHandle, float flZoom, int32_t nPointX, int32_t nPointY) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .flZoom = flZoom, .nPointX = nPointX, @@ -2516,11 +2516,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetP STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetPageScaleFactor, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bBackgroundMode) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode(struct w_iface *_this, uint32_t unBrowserHandle, int8_t bBackgroundMode) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bBackgroundMode = bBackgroundMode, }; @@ -2528,11 +2528,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetB STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetBackgroundMode, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor(struct w_steam_iface *_this, uint32_t unBrowserHandle, float flDPIScaling) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor(struct w_iface *_this, uint32_t unBrowserHandle, float flDPIScaling) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .flDPIScaling = flDPIScaling, }; @@ -2540,22 +2540,22 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetD STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_SetDPIScalingFactor, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools(struct w_steam_iface *_this, uint32_t unBrowserHandle) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools(struct w_iface *_this, uint32_t unBrowserHandle) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_OpenDeveloperTools, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bAllowed) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest(struct w_iface *_this, uint32_t unBrowserHandle, int8_t bAllowed) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bAllowed = bAllowed, }; @@ -2563,11 +2563,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_Allo STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_AllowStartRequest, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, int8_t bResult) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse(struct w_iface *_this, uint32_t unBrowserHandle, int8_t bResult) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .bResult = bResult, }; @@ -2575,11 +2575,11 @@ void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDi STEAMCLIENT_CALL( ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_JSDialogResponse, ¶ms ); } -void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse(struct w_steam_iface *_this, uint32_t unBrowserHandle, const char **pchSelectedFiles) +void __thiscall winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse(struct w_iface *_this, uint32_t unBrowserHandle, const char **pchSelectedFiles) { struct ISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_FileLoadDialogResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unBrowserHandle = unBrowserHandle, .pchSelectedFiles = pchSelectedFiles, }; @@ -2634,9 +2634,9 @@ __ASM_BLOCK_BEGIN(winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_vt ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005(void *u_iface) +struct w_iface *create_winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMHTMLSURFACE_INTERFACE_VERSION_005"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMHTMLSURFACE_INTERFACE_VERSION_005"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamHTMLSurface_STEAMHTMLSURFACE_INTERFACE_VERSION_005_vtable, 38, "STEAMHTMLSURFACE_INTERFACE_VERSION_005"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamHTTP.c b/lsteamclient/winISteamHTTP.c index 1522e16e..76482ad9 100644 --- a/lsteamclient/winISteamHTTP.c +++ b/lsteamclient/winISteamHTTP.c @@ -19,11 +19,11 @@ DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTP DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct, 12) DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody, 20) -uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest(struct w_steam_iface *_this, uint32_t eHTTPRequestMethod, const char *pchAbsoluteURL) +uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest(struct w_iface *_this, uint32_t eHTTPRequestMethod, const char *pchAbsoluteURL) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eHTTPRequestMethod = eHTTPRequestMethod, .pchAbsoluteURL = pchAbsoluteURL, }; @@ -33,11 +33,11 @@ uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_CreateHTTPReque return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue(struct w_steam_iface *_this, uint32_t hRequest, uint64_t ulContextValue) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue(struct w_iface *_this, uint32_t hRequest, uint64_t ulContextValue) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestContextValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .ulContextValue = ulContextValue, }; @@ -46,11 +46,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestCon return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unTimeoutSeconds) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout(struct w_iface *_this, uint32_t hRequest, uint32_t unTimeoutSeconds) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNetworkActivityTimeout_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .unTimeoutSeconds = unTimeoutSeconds, }; @@ -59,11 +59,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestNet return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, const char *pchHeaderValue) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue(struct w_iface *_this, uint32_t hRequest, const char *pchHeaderName, const char *pchHeaderValue) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHeaderValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pchHeaderName = pchHeaderName, .pchHeaderValue = pchHeaderValue, @@ -75,11 +75,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestHea return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter(struct w_steam_iface *_this, uint32_t hRequest, const char *pchParamName, const char *pchParamValue) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter(struct w_iface *_this, uint32_t hRequest, const char *pchParamName, const char *pchParamValue) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGetOrPostParameter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pchParamName = pchParamName, .pchParamValue = pchParamValue, @@ -91,11 +91,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestGet return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest(struct w_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pCallHandle = pCallHandle, }; @@ -104,11 +104,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SendHTTPRequest(s return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest(struct w_iface *_this, uint32_t hRequest) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); @@ -116,11 +116,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_DeferHTTPRequest( return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest(struct w_iface *_this, uint32_t hRequest) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); @@ -128,11 +128,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_PrioritizeHTTPReq return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint32_t *unResponseHeaderSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize(struct w_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint32_t *unResponseHeaderSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pchHeaderName = pchHeaderName, .unResponseHeaderSize = unResponseHeaderSize, @@ -143,11 +143,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHe return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint8_t *pHeaderValueBuffer, uint32_t unBufferSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue(struct w_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint8_t *pHeaderValueBuffer, uint32_t unBufferSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHeaderValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pchHeaderName = pchHeaderName, .pHeaderValueBuffer = pHeaderValueBuffer, @@ -159,11 +159,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseHe return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize(struct w_steam_iface *_this, uint32_t hRequest, uint32_t *unBodySize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize(struct w_iface *_this, uint32_t hRequest, uint32_t *unBodySize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodySize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .unBodySize = unBodySize, }; @@ -172,11 +172,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBo return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData(struct w_iface *_this, uint32_t hRequest, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBodyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pBodyDataBuffer = pBodyDataBuffer, .unBufferSize = unBufferSize, @@ -186,11 +186,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPResponseBo return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest(struct w_iface *_this, uint32_t hRequest) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); @@ -198,11 +198,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_ReleaseHTTPReques return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct(struct w_steam_iface *_this, uint32_t hRequest, float *pflPercentOut) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct(struct w_iface *_this, uint32_t hRequest, float *pflPercentOut) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadProgressPct_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pflPercentOut = pflPercentOut, }; @@ -211,11 +211,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_GetHTTPDownloadPr return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody(struct w_steam_iface *_this, uint32_t hRequest, const char *pchContentType, uint8_t *pubBody, uint32_t unBodyLen) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody(struct w_iface *_this, uint32_t hRequest, const char *pchContentType, uint8_t *pubBody, uint32_t unBodyLen) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_SetHTTPRequestRawPostBody_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pchContentType = pchContentType, .pubBody = pubBody, @@ -251,9 +251,9 @@ __ASM_BLOCK_BEGIN(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001(void *u_iface) +struct w_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMHTTP_INTERFACE_VERSION001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMHTTP_INTERFACE_VERSION001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamHTTP_STEAMHTTP_INTERFACE_VERSION001_vtable, 15, "STEAMHTTP_INTERFACE_VERSION001"); r->u_iface = u_iface; @@ -286,11 +286,11 @@ DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequ DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS, 12) DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut, 12) -uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest(struct w_steam_iface *_this, uint32_t eHTTPRequestMethod, const char *pchAbsoluteURL) +uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest(struct w_iface *_this, uint32_t eHTTPRequestMethod, const char *pchAbsoluteURL) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eHTTPRequestMethod = eHTTPRequestMethod, .pchAbsoluteURL = pchAbsoluteURL, }; @@ -300,11 +300,11 @@ uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateHTTPReque return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue(struct w_steam_iface *_this, uint32_t hRequest, uint64_t ulContextValue) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue(struct w_iface *_this, uint32_t hRequest, uint64_t ulContextValue) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestContextValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .ulContextValue = ulContextValue, }; @@ -313,11 +313,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCon return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unTimeoutSeconds) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout(struct w_iface *_this, uint32_t hRequest, uint32_t unTimeoutSeconds) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNetworkActivityTimeout_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .unTimeoutSeconds = unTimeoutSeconds, }; @@ -326,11 +326,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestNet return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, const char *pchHeaderValue) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue(struct w_iface *_this, uint32_t hRequest, const char *pchHeaderName, const char *pchHeaderValue) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHeaderValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pchHeaderName = pchHeaderName, .pchHeaderValue = pchHeaderValue, @@ -342,11 +342,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestHea return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter(struct w_steam_iface *_this, uint32_t hRequest, const char *pchParamName, const char *pchParamValue) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter(struct w_iface *_this, uint32_t hRequest, const char *pchParamName, const char *pchParamValue) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGetOrPostParameter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pchParamName = pchParamName, .pchParamValue = pchParamValue, @@ -358,11 +358,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestGet return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest(struct w_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pCallHandle = pCallHandle, }; @@ -371,11 +371,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequest(s return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse(struct w_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAndStreamResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pCallHandle = pCallHandle, }; @@ -384,11 +384,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SendHTTPRequestAn return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest(struct w_iface *_this, uint32_t hRequest) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); @@ -396,11 +396,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_DeferHTTPRequest( return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest(struct w_iface *_this, uint32_t hRequest) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); @@ -408,11 +408,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_PrioritizeHTTPReq return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint32_t *unResponseHeaderSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize(struct w_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint32_t *unResponseHeaderSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pchHeaderName = pchHeaderName, .unResponseHeaderSize = unResponseHeaderSize, @@ -423,11 +423,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHe return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint8_t *pHeaderValueBuffer, uint32_t unBufferSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue(struct w_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint8_t *pHeaderValueBuffer, uint32_t unBufferSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHeaderValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pchHeaderName = pchHeaderName, .pHeaderValueBuffer = pHeaderValueBuffer, @@ -439,11 +439,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseHe return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize(struct w_steam_iface *_this, uint32_t hRequest, uint32_t *unBodySize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize(struct w_iface *_this, uint32_t hRequest, uint32_t *unBodySize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodySize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .unBodySize = unBodySize, }; @@ -452,11 +452,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBo return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData(struct w_iface *_this, uint32_t hRequest, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBodyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pBodyDataBuffer = pBodyDataBuffer, .unBufferSize = unBufferSize, @@ -466,11 +466,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPResponseBo return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint32_t cOffset, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData(struct w_iface *_this, uint32_t hRequest, uint32_t cOffset, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingResponseBodyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .cOffset = cOffset, .pBodyDataBuffer = pBodyDataBuffer, @@ -481,11 +481,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPStreamingR return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest(struct w_iface *_this, uint32_t hRequest) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); @@ -493,11 +493,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseHTTPReques return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct(struct w_steam_iface *_this, uint32_t hRequest, float *pflPercentOut) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct(struct w_iface *_this, uint32_t hRequest, float *pflPercentOut) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadProgressPct_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pflPercentOut = pflPercentOut, }; @@ -506,11 +506,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPDownloadPr return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody(struct w_steam_iface *_this, uint32_t hRequest, const char *pchContentType, uint8_t *pubBody, uint32_t unBodyLen) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody(struct w_iface *_this, uint32_t hRequest, const char *pchContentType, uint8_t *pubBody, uint32_t unBodyLen) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRawPostBody_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pchContentType = pchContentType, .pubBody = pubBody, @@ -522,11 +522,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRaw return params._ret; } -uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer(struct w_steam_iface *_this, int8_t bAllowResponsesToModify) +uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer(struct w_iface *_this, int8_t bAllowResponsesToModify) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieContainer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bAllowResponsesToModify = bAllowResponsesToModify, }; TRACE("%p\n", _this); @@ -534,11 +534,11 @@ uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_CreateCookieCon return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer(struct w_steam_iface *_this, uint32_t hCookieContainer) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer(struct w_iface *_this, uint32_t hCookieContainer) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieContainer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hCookieContainer = hCookieContainer, }; TRACE("%p\n", _this); @@ -546,11 +546,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_ReleaseCookieCont return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie(struct w_steam_iface *_this, uint32_t hCookieContainer, const char *pchHost, const char *pchUrl, const char *pchCookie) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie(struct w_iface *_this, uint32_t hCookieContainer, const char *pchHost, const char *pchUrl, const char *pchCookie) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hCookieContainer = hCookieContainer, .pchHost = pchHost, .pchUrl = pchUrl, @@ -564,11 +564,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetCookie(struct return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer(struct w_steam_iface *_this, uint32_t hRequest, uint32_t hCookieContainer) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer(struct w_iface *_this, uint32_t hRequest, uint32_t hCookieContainer) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCookieContainer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .hCookieContainer = hCookieContainer, }; @@ -577,11 +577,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestCoo return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo(struct w_steam_iface *_this, uint32_t hRequest, const char *pchUserAgentInfo) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo(struct w_iface *_this, uint32_t hRequest, const char *pchUserAgentInfo) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUserAgentInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pchUserAgentInfo = pchUserAgentInfo, }; @@ -591,11 +591,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestUse return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate(struct w_steam_iface *_this, uint32_t hRequest, int8_t bRequireVerifiedCertificate) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate(struct w_iface *_this, uint32_t hRequest, int8_t bRequireVerifiedCertificate) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestRequiresVerifiedCertificate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .bRequireVerifiedCertificate = bRequireVerifiedCertificate, }; @@ -604,11 +604,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestReq return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unMilliseconds) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS(struct w_iface *_this, uint32_t hRequest, uint32_t unMilliseconds) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbsoluteTimeoutMS_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .unMilliseconds = unMilliseconds, }; @@ -617,11 +617,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_SetHTTPRequestAbs return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut(struct w_steam_iface *_this, uint32_t hRequest, int8_t *pbWasTimedOut) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut(struct w_iface *_this, uint32_t hRequest, int8_t *pbWasTimedOut) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_GetHTTPRequestWasTimedOut_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pbWasTimedOut = pbWasTimedOut, }; @@ -664,9 +664,9 @@ __ASM_BLOCK_BEGIN(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002(void *u_iface) +struct w_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMHTTP_INTERFACE_VERSION002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMHTTP_INTERFACE_VERSION002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamHTTP_STEAMHTTP_INTERFACE_VERSION002_vtable, 25, "STEAMHTTP_INTERFACE_VERSION002"); r->u_iface = u_iface; @@ -699,11 +699,11 @@ DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequ DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS, 12) DEFINE_THISCALL_WRAPPER(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut, 12) -uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest(struct w_steam_iface *_this, uint32_t eHTTPRequestMethod, const char *pchAbsoluteURL) +uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest(struct w_iface *_this, uint32_t eHTTPRequestMethod, const char *pchAbsoluteURL) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eHTTPRequestMethod = eHTTPRequestMethod, .pchAbsoluteURL = pchAbsoluteURL, }; @@ -713,11 +713,11 @@ uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateHTTPReque return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue(struct w_steam_iface *_this, uint32_t hRequest, uint64_t ulContextValue) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue(struct w_iface *_this, uint32_t hRequest, uint64_t ulContextValue) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestContextValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .ulContextValue = ulContextValue, }; @@ -726,11 +726,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCon return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unTimeoutSeconds) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout(struct w_iface *_this, uint32_t hRequest, uint32_t unTimeoutSeconds) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNetworkActivityTimeout_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .unTimeoutSeconds = unTimeoutSeconds, }; @@ -739,11 +739,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestNet return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, const char *pchHeaderValue) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue(struct w_iface *_this, uint32_t hRequest, const char *pchHeaderName, const char *pchHeaderValue) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHeaderValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pchHeaderName = pchHeaderName, .pchHeaderValue = pchHeaderValue, @@ -755,11 +755,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestHea return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter(struct w_steam_iface *_this, uint32_t hRequest, const char *pchParamName, const char *pchParamValue) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter(struct w_iface *_this, uint32_t hRequest, const char *pchParamName, const char *pchParamValue) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGetOrPostParameter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pchParamName = pchParamName, .pchParamValue = pchParamValue, @@ -771,11 +771,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestGet return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest(struct w_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pCallHandle = pCallHandle, }; @@ -784,11 +784,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequest(s return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse(struct w_steam_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse(struct w_iface *_this, uint32_t hRequest, uint64_t *pCallHandle) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAndStreamResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pCallHandle = pCallHandle, }; @@ -797,11 +797,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SendHTTPRequestAn return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest(struct w_iface *_this, uint32_t hRequest) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); @@ -809,11 +809,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_DeferHTTPRequest( return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest(struct w_iface *_this, uint32_t hRequest) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); @@ -821,11 +821,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_PrioritizeHTTPReq return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint32_t *unResponseHeaderSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize(struct w_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint32_t *unResponseHeaderSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pchHeaderName = pchHeaderName, .unResponseHeaderSize = unResponseHeaderSize, @@ -836,11 +836,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHe return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue(struct w_steam_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint8_t *pHeaderValueBuffer, uint32_t unBufferSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue(struct w_iface *_this, uint32_t hRequest, const char *pchHeaderName, uint8_t *pHeaderValueBuffer, uint32_t unBufferSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHeaderValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pchHeaderName = pchHeaderName, .pHeaderValueBuffer = pHeaderValueBuffer, @@ -852,11 +852,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseHe return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize(struct w_steam_iface *_this, uint32_t hRequest, uint32_t *unBodySize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize(struct w_iface *_this, uint32_t hRequest, uint32_t *unBodySize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodySize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .unBodySize = unBodySize, }; @@ -865,11 +865,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBo return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData(struct w_iface *_this, uint32_t hRequest, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBodyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pBodyDataBuffer = pBodyDataBuffer, .unBufferSize = unBufferSize, @@ -879,11 +879,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPResponseBo return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData(struct w_steam_iface *_this, uint32_t hRequest, uint32_t cOffset, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData(struct w_iface *_this, uint32_t hRequest, uint32_t cOffset, uint8_t *pBodyDataBuffer, uint32_t unBufferSize) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingResponseBodyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .cOffset = cOffset, .pBodyDataBuffer = pBodyDataBuffer, @@ -894,11 +894,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPStreamingR return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest(struct w_steam_iface *_this, uint32_t hRequest) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest(struct w_iface *_this, uint32_t hRequest) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); @@ -906,11 +906,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseHTTPReques return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct(struct w_steam_iface *_this, uint32_t hRequest, float *pflPercentOut) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct(struct w_iface *_this, uint32_t hRequest, float *pflPercentOut) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadProgressPct_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pflPercentOut = pflPercentOut, }; @@ -919,11 +919,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPDownloadPr return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody(struct w_steam_iface *_this, uint32_t hRequest, const char *pchContentType, uint8_t *pubBody, uint32_t unBodyLen) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody(struct w_iface *_this, uint32_t hRequest, const char *pchContentType, uint8_t *pubBody, uint32_t unBodyLen) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRawPostBody_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pchContentType = pchContentType, .pubBody = pubBody, @@ -935,11 +935,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRaw return params._ret; } -uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer(struct w_steam_iface *_this, int8_t bAllowResponsesToModify) +uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer(struct w_iface *_this, int8_t bAllowResponsesToModify) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieContainer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bAllowResponsesToModify = bAllowResponsesToModify, }; TRACE("%p\n", _this); @@ -947,11 +947,11 @@ uint32_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_CreateCookieCon return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer(struct w_steam_iface *_this, uint32_t hCookieContainer) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer(struct w_iface *_this, uint32_t hCookieContainer) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieContainer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hCookieContainer = hCookieContainer, }; TRACE("%p\n", _this); @@ -959,11 +959,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_ReleaseCookieCont return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie(struct w_steam_iface *_this, uint32_t hCookieContainer, const char *pchHost, const char *pchUrl, const char *pchCookie) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie(struct w_iface *_this, uint32_t hCookieContainer, const char *pchHost, const char *pchUrl, const char *pchCookie) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hCookieContainer = hCookieContainer, .pchHost = pchHost, .pchUrl = pchUrl, @@ -977,11 +977,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetCookie(struct return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer(struct w_steam_iface *_this, uint32_t hRequest, uint32_t hCookieContainer) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer(struct w_iface *_this, uint32_t hRequest, uint32_t hCookieContainer) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCookieContainer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .hCookieContainer = hCookieContainer, }; @@ -990,11 +990,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestCoo return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo(struct w_steam_iface *_this, uint32_t hRequest, const char *pchUserAgentInfo) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo(struct w_iface *_this, uint32_t hRequest, const char *pchUserAgentInfo) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUserAgentInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pchUserAgentInfo = pchUserAgentInfo, }; @@ -1004,11 +1004,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestUse return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate(struct w_steam_iface *_this, uint32_t hRequest, int8_t bRequireVerifiedCertificate) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate(struct w_iface *_this, uint32_t hRequest, int8_t bRequireVerifiedCertificate) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestRequiresVerifiedCertificate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .bRequireVerifiedCertificate = bRequireVerifiedCertificate, }; @@ -1017,11 +1017,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestReq return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS(struct w_steam_iface *_this, uint32_t hRequest, uint32_t unMilliseconds) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS(struct w_iface *_this, uint32_t hRequest, uint32_t unMilliseconds) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbsoluteTimeoutMS_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .unMilliseconds = unMilliseconds, }; @@ -1030,11 +1030,11 @@ int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_SetHTTPRequestAbs return params._ret; } -int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut(struct w_steam_iface *_this, uint32_t hRequest, int8_t *pbWasTimedOut) +int8_t __thiscall winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut(struct w_iface *_this, uint32_t hRequest, int8_t *pbWasTimedOut) { struct ISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_GetHTTPRequestWasTimedOut_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .pbWasTimedOut = pbWasTimedOut, }; @@ -1077,9 +1077,9 @@ __ASM_BLOCK_BEGIN(winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003(void *u_iface) +struct w_iface *create_winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMHTTP_INTERFACE_VERSION003"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMHTTP_INTERFACE_VERSION003"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamHTTP_STEAMHTTP_INTERFACE_VERSION003_vtable, 25, "STEAMHTTP_INTERFACE_VERSION003"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamInput.c b/lsteamclient/winISteamInput.c index 90e9663a..ca1db32b 100644 --- a/lsteamclient/winISteamInput.c +++ b/lsteamclient/winISteamInput.c @@ -39,43 +39,43 @@ DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput001_TranslateActionOrigin, 12) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput001_GetDeviceBindingRevision, 20) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput001_GetRemotePlaySessionID, 12) -int8_t __thiscall winISteamInput_SteamInput001_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamInput_SteamInput001_Init(struct w_iface *_this) { struct ISteamInput_SteamInput001_Init_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput001_Init, ¶ms ); return params._ret; } -int8_t __thiscall winISteamInput_SteamInput001_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamInput_SteamInput001_Shutdown(struct w_iface *_this) { struct ISteamInput_SteamInput001_Shutdown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput001_Shutdown, ¶ms ); return params._ret; } -void __thiscall winISteamInput_SteamInput001_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamInput_SteamInput001_RunFrame(struct w_iface *_this) { struct ISteamInput_SteamInput001_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput001_RunFrame, ¶ms ); } -int32_t __thiscall winISteamInput_SteamInput001_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) +int32_t __thiscall winISteamInput_SteamInput001_GetConnectedControllers(struct w_iface *_this, uint64_t *handlesOut) { struct ISteamInput_SteamInput001_GetConnectedControllers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); @@ -83,11 +83,11 @@ int32_t __thiscall winISteamInput_SteamInput001_GetConnectedControllers(struct w return params._ret; } -uint64_t __thiscall winISteamInput_SteamInput001_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) +uint64_t __thiscall winISteamInput_SteamInput001_GetActionSetHandle(struct w_iface *_this, const char *pszActionSetName) { struct ISteamInput_SteamInput001_GetActionSetHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); @@ -96,11 +96,11 @@ uint64_t __thiscall winISteamInput_SteamInput001_GetActionSetHandle(struct w_ste return params._ret; } -void __thiscall winISteamInput_SteamInput001_ActivateActionSet(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle) +void __thiscall winISteamInput_SteamInput001_ActivateActionSet(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle) { struct ISteamInput_SteamInput001_ActivateActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetHandle = actionSetHandle, }; @@ -108,11 +108,11 @@ void __thiscall winISteamInput_SteamInput001_ActivateActionSet(struct w_steam_if STEAMCLIENT_CALL( ISteamInput_SteamInput001_ActivateActionSet, ¶ms ); } -uint64_t __thiscall winISteamInput_SteamInput001_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t inputHandle) +uint64_t __thiscall winISteamInput_SteamInput001_GetCurrentActionSet(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput001_GetCurrentActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); @@ -120,11 +120,11 @@ uint64_t __thiscall winISteamInput_SteamInput001_GetCurrentActionSet(struct w_st return params._ret; } -void __thiscall winISteamInput_SteamInput001_ActivateActionSetLayer(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) +void __thiscall winISteamInput_SteamInput001_ActivateActionSetLayer(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) { struct ISteamInput_SteamInput001_ActivateActionSetLayer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetLayerHandle = actionSetLayerHandle, }; @@ -132,11 +132,11 @@ void __thiscall winISteamInput_SteamInput001_ActivateActionSetLayer(struct w_ste STEAMCLIENT_CALL( ISteamInput_SteamInput001_ActivateActionSetLayer, ¶ms ); } -void __thiscall winISteamInput_SteamInput001_DeactivateActionSetLayer(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) +void __thiscall winISteamInput_SteamInput001_DeactivateActionSetLayer(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) { struct ISteamInput_SteamInput001_DeactivateActionSetLayer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetLayerHandle = actionSetLayerHandle, }; @@ -144,22 +144,22 @@ void __thiscall winISteamInput_SteamInput001_DeactivateActionSetLayer(struct w_s STEAMCLIENT_CALL( ISteamInput_SteamInput001_DeactivateActionSetLayer, ¶ms ); } -void __thiscall winISteamInput_SteamInput001_DeactivateAllActionSetLayers(struct w_steam_iface *_this, uint64_t inputHandle) +void __thiscall winISteamInput_SteamInput001_DeactivateAllActionSetLayers(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput001_DeactivateAllActionSetLayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput001_DeactivateAllActionSetLayers, ¶ms ); } -int32_t __thiscall winISteamInput_SteamInput001_GetActiveActionSetLayers(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t *handlesOut) +int32_t __thiscall winISteamInput_SteamInput001_GetActiveActionSetLayers(struct w_iface *_this, uint64_t inputHandle, uint64_t *handlesOut) { struct ISteamInput_SteamInput001_GetActiveActionSetLayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .handlesOut = handlesOut, }; @@ -168,11 +168,11 @@ int32_t __thiscall winISteamInput_SteamInput001_GetActiveActionSetLayers(struct return params._ret; } -uint64_t __thiscall winISteamInput_SteamInput001_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamInput_SteamInput001_GetDigitalActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamInput_SteamInput001_GetDigitalActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -181,11 +181,11 @@ uint64_t __thiscall winISteamInput_SteamInput001_GetDigitalActionHandle(struct w return params._ret; } -InputDigitalActionData_t * __thiscall winISteamInput_SteamInput001_GetDigitalActionData(struct w_steam_iface *_this, InputDigitalActionData_t *_ret, uint64_t inputHandle, uint64_t digitalActionHandle) +InputDigitalActionData_t * __thiscall winISteamInput_SteamInput001_GetDigitalActionData(struct w_iface *_this, InputDigitalActionData_t *_ret, uint64_t inputHandle, uint64_t digitalActionHandle) { struct ISteamInput_SteamInput001_GetDigitalActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .inputHandle = inputHandle, .digitalActionHandle = digitalActionHandle, @@ -195,11 +195,11 @@ InputDigitalActionData_t * __thiscall winISteamInput_SteamInput001_GetDigitalAct return params._ret; } -int32_t __thiscall winISteamInput_SteamInput001_GetDigitalActionOrigins(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamInput_SteamInput001_GetDigitalActionOrigins(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) { struct ISteamInput_SteamInput001_GetDigitalActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetHandle = actionSetHandle, .digitalActionHandle = digitalActionHandle, @@ -210,11 +210,11 @@ int32_t __thiscall winISteamInput_SteamInput001_GetDigitalActionOrigins(struct w return params._ret; } -uint64_t __thiscall winISteamInput_SteamInput001_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamInput_SteamInput001_GetAnalogActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamInput_SteamInput001_GetAnalogActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -223,11 +223,11 @@ uint64_t __thiscall winISteamInput_SteamInput001_GetAnalogActionHandle(struct w_ return params._ret; } -InputAnalogActionData_t * __thiscall winISteamInput_SteamInput001_GetAnalogActionData(struct w_steam_iface *_this, InputAnalogActionData_t *_ret, uint64_t inputHandle, uint64_t analogActionHandle) +InputAnalogActionData_t * __thiscall winISteamInput_SteamInput001_GetAnalogActionData(struct w_iface *_this, InputAnalogActionData_t *_ret, uint64_t inputHandle, uint64_t analogActionHandle) { struct ISteamInput_SteamInput001_GetAnalogActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .inputHandle = inputHandle, .analogActionHandle = analogActionHandle, @@ -237,11 +237,11 @@ InputAnalogActionData_t * __thiscall winISteamInput_SteamInput001_GetAnalogActio return params._ret; } -int32_t __thiscall winISteamInput_SteamInput001_GetAnalogActionOrigins(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamInput_SteamInput001_GetAnalogActionOrigins(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) { struct ISteamInput_SteamInput001_GetAnalogActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetHandle = actionSetHandle, .analogActionHandle = analogActionHandle, @@ -252,11 +252,11 @@ int32_t __thiscall winISteamInput_SteamInput001_GetAnalogActionOrigins(struct w_ return params._ret; } -const char * __thiscall winISteamInput_SteamInput001_GetStringForActionOrigin(struct w_steam_iface *_this, uint32_t eOrigin) +const char * __thiscall winISteamInput_SteamInput001_GetStringForActionOrigin(struct w_iface *_this, uint32_t eOrigin) { struct ISteamInput_SteamInput001_GetStringForActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); @@ -264,11 +264,11 @@ const char * __thiscall winISteamInput_SteamInput001_GetStringForActionOrigin(st return params._ret; } -void __thiscall winISteamInput_SteamInput001_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t eAction) +void __thiscall winISteamInput_SteamInput001_StopAnalogActionMomentum(struct w_iface *_this, uint64_t inputHandle, uint64_t eAction) { struct ISteamInput_SteamInput001_StopAnalogActionMomentum_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .eAction = eAction, }; @@ -276,11 +276,11 @@ void __thiscall winISteamInput_SteamInput001_StopAnalogActionMomentum(struct w_s STEAMCLIENT_CALL( ISteamInput_SteamInput001_StopAnalogActionMomentum, ¶ms ); } -InputMotionData_t * __thiscall winISteamInput_SteamInput001_GetMotionData(struct w_steam_iface *_this, InputMotionData_t *_ret, uint64_t inputHandle) +InputMotionData_t * __thiscall winISteamInput_SteamInput001_GetMotionData(struct w_iface *_this, InputMotionData_t *_ret, uint64_t inputHandle) { struct ISteamInput_SteamInput001_GetMotionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .inputHandle = inputHandle, }; @@ -289,11 +289,11 @@ InputMotionData_t * __thiscall winISteamInput_SteamInput001_GetMotionData(struct return params._ret; } -void __thiscall winISteamInput_SteamInput001_TriggerVibration(struct w_steam_iface *_this, uint64_t inputHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) +void __thiscall winISteamInput_SteamInput001_TriggerVibration(struct w_iface *_this, uint64_t inputHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) { struct ISteamInput_SteamInput001_TriggerVibration_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .usLeftSpeed = usLeftSpeed, .usRightSpeed = usRightSpeed, @@ -302,11 +302,11 @@ void __thiscall winISteamInput_SteamInput001_TriggerVibration(struct w_steam_ifa STEAMCLIENT_CALL( ISteamInput_SteamInput001_TriggerVibration, ¶ms ); } -void __thiscall winISteamInput_SteamInput001_SetLEDColor(struct w_steam_iface *_this, uint64_t inputHandle, uint8_t nColorR, uint8_t nColorG, uint8_t nColorB, uint32_t nFlags) +void __thiscall winISteamInput_SteamInput001_SetLEDColor(struct w_iface *_this, uint64_t inputHandle, uint8_t nColorR, uint8_t nColorG, uint8_t nColorB, uint32_t nFlags) { struct ISteamInput_SteamInput001_SetLEDColor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .nColorR = nColorR, .nColorG = nColorG, @@ -317,11 +317,11 @@ void __thiscall winISteamInput_SteamInput001_SetLEDColor(struct w_steam_iface *_ STEAMCLIENT_CALL( ISteamInput_SteamInput001_SetLEDColor, ¶ms ); } -void __thiscall winISteamInput_SteamInput001_TriggerHapticPulse(struct w_steam_iface *_this, uint64_t inputHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) +void __thiscall winISteamInput_SteamInput001_TriggerHapticPulse(struct w_iface *_this, uint64_t inputHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) { struct ISteamInput_SteamInput001_TriggerHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -330,11 +330,11 @@ void __thiscall winISteamInput_SteamInput001_TriggerHapticPulse(struct w_steam_i STEAMCLIENT_CALL( ISteamInput_SteamInput001_TriggerHapticPulse, ¶ms ); } -void __thiscall winISteamInput_SteamInput001_TriggerRepeatedHapticPulse(struct w_steam_iface *_this, uint64_t inputHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) +void __thiscall winISteamInput_SteamInput001_TriggerRepeatedHapticPulse(struct w_iface *_this, uint64_t inputHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) { struct ISteamInput_SteamInput001_TriggerRepeatedHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -346,11 +346,11 @@ void __thiscall winISteamInput_SteamInput001_TriggerRepeatedHapticPulse(struct w STEAMCLIENT_CALL( ISteamInput_SteamInput001_TriggerRepeatedHapticPulse, ¶ms ); } -int8_t __thiscall winISteamInput_SteamInput001_ShowBindingPanel(struct w_steam_iface *_this, uint64_t inputHandle) +int8_t __thiscall winISteamInput_SteamInput001_ShowBindingPanel(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput001_ShowBindingPanel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); @@ -358,11 +358,11 @@ int8_t __thiscall winISteamInput_SteamInput001_ShowBindingPanel(struct w_steam_i return params._ret; } -uint32_t __thiscall winISteamInput_SteamInput001_GetInputTypeForHandle(struct w_steam_iface *_this, uint64_t inputHandle) +uint32_t __thiscall winISteamInput_SteamInput001_GetInputTypeForHandle(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput001_GetInputTypeForHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); @@ -370,11 +370,11 @@ uint32_t __thiscall winISteamInput_SteamInput001_GetInputTypeForHandle(struct w_ return params._ret; } -uint64_t __thiscall winISteamInput_SteamInput001_GetControllerForGamepadIndex(struct w_steam_iface *_this, int32_t nIndex) +uint64_t __thiscall winISteamInput_SteamInput001_GetControllerForGamepadIndex(struct w_iface *_this, int32_t nIndex) { struct ISteamInput_SteamInput001_GetControllerForGamepadIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nIndex = nIndex, }; TRACE("%p\n", _this); @@ -382,11 +382,11 @@ uint64_t __thiscall winISteamInput_SteamInput001_GetControllerForGamepadIndex(st return params._ret; } -int32_t __thiscall winISteamInput_SteamInput001_GetGamepadIndexForController(struct w_steam_iface *_this, uint64_t ulinputHandle) +int32_t __thiscall winISteamInput_SteamInput001_GetGamepadIndexForController(struct w_iface *_this, uint64_t ulinputHandle) { struct ISteamInput_SteamInput001_GetGamepadIndexForController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulinputHandle = ulinputHandle, }; TRACE("%p\n", _this); @@ -394,11 +394,11 @@ int32_t __thiscall winISteamInput_SteamInput001_GetGamepadIndexForController(str return params._ret; } -const char * __thiscall winISteamInput_SteamInput001_GetStringForXboxOrigin(struct w_steam_iface *_this, uint32_t eOrigin) +const char * __thiscall winISteamInput_SteamInput001_GetStringForXboxOrigin(struct w_iface *_this, uint32_t eOrigin) { struct ISteamInput_SteamInput001_GetStringForXboxOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); @@ -406,11 +406,11 @@ const char * __thiscall winISteamInput_SteamInput001_GetStringForXboxOrigin(stru return params._ret; } -uint32_t __thiscall winISteamInput_SteamInput001_GetActionOriginFromXboxOrigin(struct w_steam_iface *_this, uint64_t inputHandle, uint32_t eOrigin) +uint32_t __thiscall winISteamInput_SteamInput001_GetActionOriginFromXboxOrigin(struct w_iface *_this, uint64_t inputHandle, uint32_t eOrigin) { struct ISteamInput_SteamInput001_GetActionOriginFromXboxOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .eOrigin = eOrigin, }; @@ -419,11 +419,11 @@ uint32_t __thiscall winISteamInput_SteamInput001_GetActionOriginFromXboxOrigin(s return params._ret; } -uint32_t __thiscall winISteamInput_SteamInput001_TranslateActionOrigin(struct w_steam_iface *_this, uint32_t eDestinationInputType, uint32_t eSourceOrigin) +uint32_t __thiscall winISteamInput_SteamInput001_TranslateActionOrigin(struct w_iface *_this, uint32_t eDestinationInputType, uint32_t eSourceOrigin) { struct ISteamInput_SteamInput001_TranslateActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eDestinationInputType = eDestinationInputType, .eSourceOrigin = eSourceOrigin, }; @@ -432,11 +432,11 @@ uint32_t __thiscall winISteamInput_SteamInput001_TranslateActionOrigin(struct w_ return params._ret; } -int8_t __thiscall winISteamInput_SteamInput001_GetDeviceBindingRevision(struct w_steam_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) +int8_t __thiscall winISteamInput_SteamInput001_GetDeviceBindingRevision(struct w_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) { struct ISteamInput_SteamInput001_GetDeviceBindingRevision_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .pMajor = pMajor, .pMinor = pMinor, @@ -446,11 +446,11 @@ int8_t __thiscall winISteamInput_SteamInput001_GetDeviceBindingRevision(struct w return params._ret; } -uint32_t __thiscall winISteamInput_SteamInput001_GetRemotePlaySessionID(struct w_steam_iface *_this, uint64_t inputHandle) +uint32_t __thiscall winISteamInput_SteamInput001_GetRemotePlaySessionID(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput001_GetRemotePlaySessionID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); @@ -502,9 +502,9 @@ __ASM_BLOCK_BEGIN(winISteamInput_SteamInput001_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamInput_SteamInput001(void *u_iface) +struct w_iface *create_winISteamInput_SteamInput001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamInput001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamInput001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamInput_SteamInput001_vtable, 35, "SteamInput001"); r->u_iface = u_iface; @@ -547,43 +547,43 @@ DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput002_TranslateActionOrigin, 12) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput002_GetDeviceBindingRevision, 20) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput002_GetRemotePlaySessionID, 12) -int8_t __thiscall winISteamInput_SteamInput002_Init(struct w_steam_iface *_this) +int8_t __thiscall winISteamInput_SteamInput002_Init(struct w_iface *_this) { struct ISteamInput_SteamInput002_Init_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput002_Init, ¶ms ); return params._ret; } -int8_t __thiscall winISteamInput_SteamInput002_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamInput_SteamInput002_Shutdown(struct w_iface *_this) { struct ISteamInput_SteamInput002_Shutdown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput002_Shutdown, ¶ms ); return params._ret; } -void __thiscall winISteamInput_SteamInput002_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamInput_SteamInput002_RunFrame(struct w_iface *_this) { struct ISteamInput_SteamInput002_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput002_RunFrame, ¶ms ); } -int32_t __thiscall winISteamInput_SteamInput002_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) +int32_t __thiscall winISteamInput_SteamInput002_GetConnectedControllers(struct w_iface *_this, uint64_t *handlesOut) { struct ISteamInput_SteamInput002_GetConnectedControllers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); @@ -591,11 +591,11 @@ int32_t __thiscall winISteamInput_SteamInput002_GetConnectedControllers(struct w return params._ret; } -uint64_t __thiscall winISteamInput_SteamInput002_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) +uint64_t __thiscall winISteamInput_SteamInput002_GetActionSetHandle(struct w_iface *_this, const char *pszActionSetName) { struct ISteamInput_SteamInput002_GetActionSetHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); @@ -604,11 +604,11 @@ uint64_t __thiscall winISteamInput_SteamInput002_GetActionSetHandle(struct w_ste return params._ret; } -void __thiscall winISteamInput_SteamInput002_ActivateActionSet(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle) +void __thiscall winISteamInput_SteamInput002_ActivateActionSet(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle) { struct ISteamInput_SteamInput002_ActivateActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetHandle = actionSetHandle, }; @@ -616,11 +616,11 @@ void __thiscall winISteamInput_SteamInput002_ActivateActionSet(struct w_steam_if STEAMCLIENT_CALL( ISteamInput_SteamInput002_ActivateActionSet, ¶ms ); } -uint64_t __thiscall winISteamInput_SteamInput002_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t inputHandle) +uint64_t __thiscall winISteamInput_SteamInput002_GetCurrentActionSet(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput002_GetCurrentActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); @@ -628,11 +628,11 @@ uint64_t __thiscall winISteamInput_SteamInput002_GetCurrentActionSet(struct w_st return params._ret; } -void __thiscall winISteamInput_SteamInput002_ActivateActionSetLayer(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) +void __thiscall winISteamInput_SteamInput002_ActivateActionSetLayer(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) { struct ISteamInput_SteamInput002_ActivateActionSetLayer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetLayerHandle = actionSetLayerHandle, }; @@ -640,11 +640,11 @@ void __thiscall winISteamInput_SteamInput002_ActivateActionSetLayer(struct w_ste STEAMCLIENT_CALL( ISteamInput_SteamInput002_ActivateActionSetLayer, ¶ms ); } -void __thiscall winISteamInput_SteamInput002_DeactivateActionSetLayer(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) +void __thiscall winISteamInput_SteamInput002_DeactivateActionSetLayer(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) { struct ISteamInput_SteamInput002_DeactivateActionSetLayer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetLayerHandle = actionSetLayerHandle, }; @@ -652,22 +652,22 @@ void __thiscall winISteamInput_SteamInput002_DeactivateActionSetLayer(struct w_s STEAMCLIENT_CALL( ISteamInput_SteamInput002_DeactivateActionSetLayer, ¶ms ); } -void __thiscall winISteamInput_SteamInput002_DeactivateAllActionSetLayers(struct w_steam_iface *_this, uint64_t inputHandle) +void __thiscall winISteamInput_SteamInput002_DeactivateAllActionSetLayers(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput002_DeactivateAllActionSetLayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput002_DeactivateAllActionSetLayers, ¶ms ); } -int32_t __thiscall winISteamInput_SteamInput002_GetActiveActionSetLayers(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t *handlesOut) +int32_t __thiscall winISteamInput_SteamInput002_GetActiveActionSetLayers(struct w_iface *_this, uint64_t inputHandle, uint64_t *handlesOut) { struct ISteamInput_SteamInput002_GetActiveActionSetLayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .handlesOut = handlesOut, }; @@ -676,11 +676,11 @@ int32_t __thiscall winISteamInput_SteamInput002_GetActiveActionSetLayers(struct return params._ret; } -uint64_t __thiscall winISteamInput_SteamInput002_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamInput_SteamInput002_GetDigitalActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamInput_SteamInput002_GetDigitalActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -689,11 +689,11 @@ uint64_t __thiscall winISteamInput_SteamInput002_GetDigitalActionHandle(struct w return params._ret; } -InputDigitalActionData_t * __thiscall winISteamInput_SteamInput002_GetDigitalActionData(struct w_steam_iface *_this, InputDigitalActionData_t *_ret, uint64_t inputHandle, uint64_t digitalActionHandle) +InputDigitalActionData_t * __thiscall winISteamInput_SteamInput002_GetDigitalActionData(struct w_iface *_this, InputDigitalActionData_t *_ret, uint64_t inputHandle, uint64_t digitalActionHandle) { struct ISteamInput_SteamInput002_GetDigitalActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .inputHandle = inputHandle, .digitalActionHandle = digitalActionHandle, @@ -703,11 +703,11 @@ InputDigitalActionData_t * __thiscall winISteamInput_SteamInput002_GetDigitalAct return params._ret; } -int32_t __thiscall winISteamInput_SteamInput002_GetDigitalActionOrigins(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamInput_SteamInput002_GetDigitalActionOrigins(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) { struct ISteamInput_SteamInput002_GetDigitalActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetHandle = actionSetHandle, .digitalActionHandle = digitalActionHandle, @@ -718,11 +718,11 @@ int32_t __thiscall winISteamInput_SteamInput002_GetDigitalActionOrigins(struct w return params._ret; } -uint64_t __thiscall winISteamInput_SteamInput002_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamInput_SteamInput002_GetAnalogActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamInput_SteamInput002_GetAnalogActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -731,11 +731,11 @@ uint64_t __thiscall winISteamInput_SteamInput002_GetAnalogActionHandle(struct w_ return params._ret; } -InputAnalogActionData_t * __thiscall winISteamInput_SteamInput002_GetAnalogActionData(struct w_steam_iface *_this, InputAnalogActionData_t *_ret, uint64_t inputHandle, uint64_t analogActionHandle) +InputAnalogActionData_t * __thiscall winISteamInput_SteamInput002_GetAnalogActionData(struct w_iface *_this, InputAnalogActionData_t *_ret, uint64_t inputHandle, uint64_t analogActionHandle) { struct ISteamInput_SteamInput002_GetAnalogActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .inputHandle = inputHandle, .analogActionHandle = analogActionHandle, @@ -745,11 +745,11 @@ InputAnalogActionData_t * __thiscall winISteamInput_SteamInput002_GetAnalogActio return params._ret; } -int32_t __thiscall winISteamInput_SteamInput002_GetAnalogActionOrigins(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamInput_SteamInput002_GetAnalogActionOrigins(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) { struct ISteamInput_SteamInput002_GetAnalogActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetHandle = actionSetHandle, .analogActionHandle = analogActionHandle, @@ -760,11 +760,11 @@ int32_t __thiscall winISteamInput_SteamInput002_GetAnalogActionOrigins(struct w_ return params._ret; } -const char * __thiscall winISteamInput_SteamInput002_GetStringForActionOrigin(struct w_steam_iface *_this, uint32_t eOrigin) +const char * __thiscall winISteamInput_SteamInput002_GetStringForActionOrigin(struct w_iface *_this, uint32_t eOrigin) { struct ISteamInput_SteamInput002_GetStringForActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); @@ -772,11 +772,11 @@ const char * __thiscall winISteamInput_SteamInput002_GetStringForActionOrigin(st return params._ret; } -void __thiscall winISteamInput_SteamInput002_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t eAction) +void __thiscall winISteamInput_SteamInput002_StopAnalogActionMomentum(struct w_iface *_this, uint64_t inputHandle, uint64_t eAction) { struct ISteamInput_SteamInput002_StopAnalogActionMomentum_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .eAction = eAction, }; @@ -784,11 +784,11 @@ void __thiscall winISteamInput_SteamInput002_StopAnalogActionMomentum(struct w_s STEAMCLIENT_CALL( ISteamInput_SteamInput002_StopAnalogActionMomentum, ¶ms ); } -InputMotionData_t * __thiscall winISteamInput_SteamInput002_GetMotionData(struct w_steam_iface *_this, InputMotionData_t *_ret, uint64_t inputHandle) +InputMotionData_t * __thiscall winISteamInput_SteamInput002_GetMotionData(struct w_iface *_this, InputMotionData_t *_ret, uint64_t inputHandle) { struct ISteamInput_SteamInput002_GetMotionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .inputHandle = inputHandle, }; @@ -797,11 +797,11 @@ InputMotionData_t * __thiscall winISteamInput_SteamInput002_GetMotionData(struct return params._ret; } -void __thiscall winISteamInput_SteamInput002_TriggerVibration(struct w_steam_iface *_this, uint64_t inputHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) +void __thiscall winISteamInput_SteamInput002_TriggerVibration(struct w_iface *_this, uint64_t inputHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) { struct ISteamInput_SteamInput002_TriggerVibration_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .usLeftSpeed = usLeftSpeed, .usRightSpeed = usRightSpeed, @@ -810,11 +810,11 @@ void __thiscall winISteamInput_SteamInput002_TriggerVibration(struct w_steam_ifa STEAMCLIENT_CALL( ISteamInput_SteamInput002_TriggerVibration, ¶ms ); } -void __thiscall winISteamInput_SteamInput002_SetLEDColor(struct w_steam_iface *_this, uint64_t inputHandle, uint8_t nColorR, uint8_t nColorG, uint8_t nColorB, uint32_t nFlags) +void __thiscall winISteamInput_SteamInput002_SetLEDColor(struct w_iface *_this, uint64_t inputHandle, uint8_t nColorR, uint8_t nColorG, uint8_t nColorB, uint32_t nFlags) { struct ISteamInput_SteamInput002_SetLEDColor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .nColorR = nColorR, .nColorG = nColorG, @@ -825,11 +825,11 @@ void __thiscall winISteamInput_SteamInput002_SetLEDColor(struct w_steam_iface *_ STEAMCLIENT_CALL( ISteamInput_SteamInput002_SetLEDColor, ¶ms ); } -void __thiscall winISteamInput_SteamInput002_TriggerHapticPulse(struct w_steam_iface *_this, uint64_t inputHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) +void __thiscall winISteamInput_SteamInput002_TriggerHapticPulse(struct w_iface *_this, uint64_t inputHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) { struct ISteamInput_SteamInput002_TriggerHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -838,11 +838,11 @@ void __thiscall winISteamInput_SteamInput002_TriggerHapticPulse(struct w_steam_i STEAMCLIENT_CALL( ISteamInput_SteamInput002_TriggerHapticPulse, ¶ms ); } -void __thiscall winISteamInput_SteamInput002_TriggerRepeatedHapticPulse(struct w_steam_iface *_this, uint64_t inputHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) +void __thiscall winISteamInput_SteamInput002_TriggerRepeatedHapticPulse(struct w_iface *_this, uint64_t inputHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) { struct ISteamInput_SteamInput002_TriggerRepeatedHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -854,11 +854,11 @@ void __thiscall winISteamInput_SteamInput002_TriggerRepeatedHapticPulse(struct w STEAMCLIENT_CALL( ISteamInput_SteamInput002_TriggerRepeatedHapticPulse, ¶ms ); } -int8_t __thiscall winISteamInput_SteamInput002_ShowBindingPanel(struct w_steam_iface *_this, uint64_t inputHandle) +int8_t __thiscall winISteamInput_SteamInput002_ShowBindingPanel(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput002_ShowBindingPanel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); @@ -866,11 +866,11 @@ int8_t __thiscall winISteamInput_SteamInput002_ShowBindingPanel(struct w_steam_i return params._ret; } -uint32_t __thiscall winISteamInput_SteamInput002_GetInputTypeForHandle(struct w_steam_iface *_this, uint64_t inputHandle) +uint32_t __thiscall winISteamInput_SteamInput002_GetInputTypeForHandle(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput002_GetInputTypeForHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); @@ -878,11 +878,11 @@ uint32_t __thiscall winISteamInput_SteamInput002_GetInputTypeForHandle(struct w_ return params._ret; } -uint64_t __thiscall winISteamInput_SteamInput002_GetControllerForGamepadIndex(struct w_steam_iface *_this, int32_t nIndex) +uint64_t __thiscall winISteamInput_SteamInput002_GetControllerForGamepadIndex(struct w_iface *_this, int32_t nIndex) { struct ISteamInput_SteamInput002_GetControllerForGamepadIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nIndex = nIndex, }; TRACE("%p\n", _this); @@ -890,11 +890,11 @@ uint64_t __thiscall winISteamInput_SteamInput002_GetControllerForGamepadIndex(st return params._ret; } -int32_t __thiscall winISteamInput_SteamInput002_GetGamepadIndexForController(struct w_steam_iface *_this, uint64_t ulinputHandle) +int32_t __thiscall winISteamInput_SteamInput002_GetGamepadIndexForController(struct w_iface *_this, uint64_t ulinputHandle) { struct ISteamInput_SteamInput002_GetGamepadIndexForController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulinputHandle = ulinputHandle, }; TRACE("%p\n", _this); @@ -902,11 +902,11 @@ int32_t __thiscall winISteamInput_SteamInput002_GetGamepadIndexForController(str return params._ret; } -const char * __thiscall winISteamInput_SteamInput002_GetStringForXboxOrigin(struct w_steam_iface *_this, uint32_t eOrigin) +const char * __thiscall winISteamInput_SteamInput002_GetStringForXboxOrigin(struct w_iface *_this, uint32_t eOrigin) { struct ISteamInput_SteamInput002_GetStringForXboxOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); @@ -914,11 +914,11 @@ const char * __thiscall winISteamInput_SteamInput002_GetStringForXboxOrigin(stru return params._ret; } -uint32_t __thiscall winISteamInput_SteamInput002_GetActionOriginFromXboxOrigin(struct w_steam_iface *_this, uint64_t inputHandle, uint32_t eOrigin) +uint32_t __thiscall winISteamInput_SteamInput002_GetActionOriginFromXboxOrigin(struct w_iface *_this, uint64_t inputHandle, uint32_t eOrigin) { struct ISteamInput_SteamInput002_GetActionOriginFromXboxOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .eOrigin = eOrigin, }; @@ -927,11 +927,11 @@ uint32_t __thiscall winISteamInput_SteamInput002_GetActionOriginFromXboxOrigin(s return params._ret; } -uint32_t __thiscall winISteamInput_SteamInput002_TranslateActionOrigin(struct w_steam_iface *_this, uint32_t eDestinationInputType, uint32_t eSourceOrigin) +uint32_t __thiscall winISteamInput_SteamInput002_TranslateActionOrigin(struct w_iface *_this, uint32_t eDestinationInputType, uint32_t eSourceOrigin) { struct ISteamInput_SteamInput002_TranslateActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eDestinationInputType = eDestinationInputType, .eSourceOrigin = eSourceOrigin, }; @@ -940,11 +940,11 @@ uint32_t __thiscall winISteamInput_SteamInput002_TranslateActionOrigin(struct w_ return params._ret; } -int8_t __thiscall winISteamInput_SteamInput002_GetDeviceBindingRevision(struct w_steam_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) +int8_t __thiscall winISteamInput_SteamInput002_GetDeviceBindingRevision(struct w_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) { struct ISteamInput_SteamInput002_GetDeviceBindingRevision_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .pMajor = pMajor, .pMinor = pMinor, @@ -954,11 +954,11 @@ int8_t __thiscall winISteamInput_SteamInput002_GetDeviceBindingRevision(struct w return params._ret; } -uint32_t __thiscall winISteamInput_SteamInput002_GetRemotePlaySessionID(struct w_steam_iface *_this, uint64_t inputHandle) +uint32_t __thiscall winISteamInput_SteamInput002_GetRemotePlaySessionID(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput002_GetRemotePlaySessionID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); @@ -1010,9 +1010,9 @@ __ASM_BLOCK_BEGIN(winISteamInput_SteamInput002_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamInput_SteamInput002(void *u_iface) +struct w_iface *create_winISteamInput_SteamInput002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamInput002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamInput002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamInput_SteamInput002_vtable, 35, "SteamInput002"); r->u_iface = u_iface; @@ -1067,11 +1067,11 @@ DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput005_GetDeviceBindingRevision, 2 DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput005_GetRemotePlaySessionID, 12) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput005_GetSessionInputConfigurationSettings, 4) -int8_t __thiscall winISteamInput_SteamInput005_Init(struct w_steam_iface *_this, int8_t bExplicitlyCallRunFrame) +int8_t __thiscall winISteamInput_SteamInput005_Init(struct w_iface *_this, int8_t bExplicitlyCallRunFrame) { struct ISteamInput_SteamInput005_Init_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bExplicitlyCallRunFrame = bExplicitlyCallRunFrame, }; TRACE("%p\n", _this); @@ -1079,22 +1079,22 @@ int8_t __thiscall winISteamInput_SteamInput005_Init(struct w_steam_iface *_this, return params._ret; } -int8_t __thiscall winISteamInput_SteamInput005_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamInput_SteamInput005_Shutdown(struct w_iface *_this) { struct ISteamInput_SteamInput005_Shutdown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput005_Shutdown, ¶ms ); return params._ret; } -int8_t __thiscall winISteamInput_SteamInput005_SetInputActionManifestFilePath(struct w_steam_iface *_this, const char *pchInputActionManifestAbsolutePath) +int8_t __thiscall winISteamInput_SteamInput005_SetInputActionManifestFilePath(struct w_iface *_this, const char *pchInputActionManifestAbsolutePath) { struct ISteamInput_SteamInput005_SetInputActionManifestFilePath_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchInputActionManifestAbsolutePath = pchInputActionManifestAbsolutePath, }; TRACE("%p\n", _this); @@ -1103,22 +1103,22 @@ int8_t __thiscall winISteamInput_SteamInput005_SetInputActionManifestFilePath(st return params._ret; } -void __thiscall winISteamInput_SteamInput005_RunFrame(struct w_steam_iface *_this, int8_t bReservedValue) +void __thiscall winISteamInput_SteamInput005_RunFrame(struct w_iface *_this, int8_t bReservedValue) { struct ISteamInput_SteamInput005_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bReservedValue = bReservedValue, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput005_RunFrame, ¶ms ); } -int8_t __thiscall winISteamInput_SteamInput005_BWaitForData(struct w_steam_iface *_this, int8_t bWaitForever, uint32_t unTimeout) +int8_t __thiscall winISteamInput_SteamInput005_BWaitForData(struct w_iface *_this, int8_t bWaitForever, uint32_t unTimeout) { struct ISteamInput_SteamInput005_BWaitForData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bWaitForever = bWaitForever, .unTimeout = unTimeout, }; @@ -1127,22 +1127,22 @@ int8_t __thiscall winISteamInput_SteamInput005_BWaitForData(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamInput_SteamInput005_BNewDataAvailable(struct w_steam_iface *_this) +int8_t __thiscall winISteamInput_SteamInput005_BNewDataAvailable(struct w_iface *_this) { struct ISteamInput_SteamInput005_BNewDataAvailable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput005_BNewDataAvailable, ¶ms ); return params._ret; } -int32_t __thiscall winISteamInput_SteamInput005_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) +int32_t __thiscall winISteamInput_SteamInput005_GetConnectedControllers(struct w_iface *_this, uint64_t *handlesOut) { struct ISteamInput_SteamInput005_GetConnectedControllers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); @@ -1150,32 +1150,32 @@ int32_t __thiscall winISteamInput_SteamInput005_GetConnectedControllers(struct w return params._ret; } -void __thiscall winISteamInput_SteamInput005_EnableDeviceCallbacks(struct w_steam_iface *_this) +void __thiscall winISteamInput_SteamInput005_EnableDeviceCallbacks(struct w_iface *_this) { struct ISteamInput_SteamInput005_EnableDeviceCallbacks_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput005_EnableDeviceCallbacks, ¶ms ); } -void __thiscall winISteamInput_SteamInput005_EnableActionEventCallbacks(struct w_steam_iface *_this, void (*W_CDECL pCallback)(SteamInputActionEvent_t *)) +void __thiscall winISteamInput_SteamInput005_EnableActionEventCallbacks(struct w_iface *_this, void (*W_CDECL pCallback)(SteamInputActionEvent_t *)) { struct ISteamInput_SteamInput005_EnableActionEventCallbacks_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pCallback = pCallback, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput005_EnableActionEventCallbacks, ¶ms ); } -uint64_t __thiscall winISteamInput_SteamInput005_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) +uint64_t __thiscall winISteamInput_SteamInput005_GetActionSetHandle(struct w_iface *_this, const char *pszActionSetName) { struct ISteamInput_SteamInput005_GetActionSetHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); @@ -1184,11 +1184,11 @@ uint64_t __thiscall winISteamInput_SteamInput005_GetActionSetHandle(struct w_ste return params._ret; } -void __thiscall winISteamInput_SteamInput005_ActivateActionSet(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle) +void __thiscall winISteamInput_SteamInput005_ActivateActionSet(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle) { struct ISteamInput_SteamInput005_ActivateActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetHandle = actionSetHandle, }; @@ -1196,11 +1196,11 @@ void __thiscall winISteamInput_SteamInput005_ActivateActionSet(struct w_steam_if STEAMCLIENT_CALL( ISteamInput_SteamInput005_ActivateActionSet, ¶ms ); } -uint64_t __thiscall winISteamInput_SteamInput005_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t inputHandle) +uint64_t __thiscall winISteamInput_SteamInput005_GetCurrentActionSet(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput005_GetCurrentActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); @@ -1208,11 +1208,11 @@ uint64_t __thiscall winISteamInput_SteamInput005_GetCurrentActionSet(struct w_st return params._ret; } -void __thiscall winISteamInput_SteamInput005_ActivateActionSetLayer(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) +void __thiscall winISteamInput_SteamInput005_ActivateActionSetLayer(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) { struct ISteamInput_SteamInput005_ActivateActionSetLayer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetLayerHandle = actionSetLayerHandle, }; @@ -1220,11 +1220,11 @@ void __thiscall winISteamInput_SteamInput005_ActivateActionSetLayer(struct w_ste STEAMCLIENT_CALL( ISteamInput_SteamInput005_ActivateActionSetLayer, ¶ms ); } -void __thiscall winISteamInput_SteamInput005_DeactivateActionSetLayer(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) +void __thiscall winISteamInput_SteamInput005_DeactivateActionSetLayer(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) { struct ISteamInput_SteamInput005_DeactivateActionSetLayer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetLayerHandle = actionSetLayerHandle, }; @@ -1232,22 +1232,22 @@ void __thiscall winISteamInput_SteamInput005_DeactivateActionSetLayer(struct w_s STEAMCLIENT_CALL( ISteamInput_SteamInput005_DeactivateActionSetLayer, ¶ms ); } -void __thiscall winISteamInput_SteamInput005_DeactivateAllActionSetLayers(struct w_steam_iface *_this, uint64_t inputHandle) +void __thiscall winISteamInput_SteamInput005_DeactivateAllActionSetLayers(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput005_DeactivateAllActionSetLayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput005_DeactivateAllActionSetLayers, ¶ms ); } -int32_t __thiscall winISteamInput_SteamInput005_GetActiveActionSetLayers(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t *handlesOut) +int32_t __thiscall winISteamInput_SteamInput005_GetActiveActionSetLayers(struct w_iface *_this, uint64_t inputHandle, uint64_t *handlesOut) { struct ISteamInput_SteamInput005_GetActiveActionSetLayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .handlesOut = handlesOut, }; @@ -1256,11 +1256,11 @@ int32_t __thiscall winISteamInput_SteamInput005_GetActiveActionSetLayers(struct return params._ret; } -uint64_t __thiscall winISteamInput_SteamInput005_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamInput_SteamInput005_GetDigitalActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamInput_SteamInput005_GetDigitalActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -1269,11 +1269,11 @@ uint64_t __thiscall winISteamInput_SteamInput005_GetDigitalActionHandle(struct w return params._ret; } -InputDigitalActionData_t * __thiscall winISteamInput_SteamInput005_GetDigitalActionData(struct w_steam_iface *_this, InputDigitalActionData_t *_ret, uint64_t inputHandle, uint64_t digitalActionHandle) +InputDigitalActionData_t * __thiscall winISteamInput_SteamInput005_GetDigitalActionData(struct w_iface *_this, InputDigitalActionData_t *_ret, uint64_t inputHandle, uint64_t digitalActionHandle) { struct ISteamInput_SteamInput005_GetDigitalActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .inputHandle = inputHandle, .digitalActionHandle = digitalActionHandle, @@ -1283,11 +1283,11 @@ InputDigitalActionData_t * __thiscall winISteamInput_SteamInput005_GetDigitalAct return params._ret; } -int32_t __thiscall winISteamInput_SteamInput005_GetDigitalActionOrigins(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamInput_SteamInput005_GetDigitalActionOrigins(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) { struct ISteamInput_SteamInput005_GetDigitalActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetHandle = actionSetHandle, .digitalActionHandle = digitalActionHandle, @@ -1298,11 +1298,11 @@ int32_t __thiscall winISteamInput_SteamInput005_GetDigitalActionOrigins(struct w return params._ret; } -const char * __thiscall winISteamInput_SteamInput005_GetStringForDigitalActionName(struct w_steam_iface *_this, uint64_t eActionHandle) +const char * __thiscall winISteamInput_SteamInput005_GetStringForDigitalActionName(struct w_iface *_this, uint64_t eActionHandle) { struct ISteamInput_SteamInput005_GetStringForDigitalActionName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eActionHandle = eActionHandle, }; TRACE("%p\n", _this); @@ -1310,11 +1310,11 @@ const char * __thiscall winISteamInput_SteamInput005_GetStringForDigitalActionNa return params._ret; } -uint64_t __thiscall winISteamInput_SteamInput005_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamInput_SteamInput005_GetAnalogActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamInput_SteamInput005_GetAnalogActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -1323,11 +1323,11 @@ uint64_t __thiscall winISteamInput_SteamInput005_GetAnalogActionHandle(struct w_ return params._ret; } -InputAnalogActionData_t * __thiscall winISteamInput_SteamInput005_GetAnalogActionData(struct w_steam_iface *_this, InputAnalogActionData_t *_ret, uint64_t inputHandle, uint64_t analogActionHandle) +InputAnalogActionData_t * __thiscall winISteamInput_SteamInput005_GetAnalogActionData(struct w_iface *_this, InputAnalogActionData_t *_ret, uint64_t inputHandle, uint64_t analogActionHandle) { struct ISteamInput_SteamInput005_GetAnalogActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .inputHandle = inputHandle, .analogActionHandle = analogActionHandle, @@ -1337,11 +1337,11 @@ InputAnalogActionData_t * __thiscall winISteamInput_SteamInput005_GetAnalogActio return params._ret; } -int32_t __thiscall winISteamInput_SteamInput005_GetAnalogActionOrigins(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamInput_SteamInput005_GetAnalogActionOrigins(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) { struct ISteamInput_SteamInput005_GetAnalogActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetHandle = actionSetHandle, .analogActionHandle = analogActionHandle, @@ -1352,11 +1352,11 @@ int32_t __thiscall winISteamInput_SteamInput005_GetAnalogActionOrigins(struct w_ return params._ret; } -const char * __thiscall winISteamInput_SteamInput005_GetStringForActionOrigin(struct w_steam_iface *_this, uint32_t eOrigin) +const char * __thiscall winISteamInput_SteamInput005_GetStringForActionOrigin(struct w_iface *_this, uint32_t eOrigin) { struct ISteamInput_SteamInput005_GetStringForActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); @@ -1364,11 +1364,11 @@ const char * __thiscall winISteamInput_SteamInput005_GetStringForActionOrigin(st return params._ret; } -const char * __thiscall winISteamInput_SteamInput005_GetStringForAnalogActionName(struct w_steam_iface *_this, uint64_t eActionHandle) +const char * __thiscall winISteamInput_SteamInput005_GetStringForAnalogActionName(struct w_iface *_this, uint64_t eActionHandle) { struct ISteamInput_SteamInput005_GetStringForAnalogActionName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eActionHandle = eActionHandle, }; TRACE("%p\n", _this); @@ -1376,11 +1376,11 @@ const char * __thiscall winISteamInput_SteamInput005_GetStringForAnalogActionNam return params._ret; } -void __thiscall winISteamInput_SteamInput005_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t eAction) +void __thiscall winISteamInput_SteamInput005_StopAnalogActionMomentum(struct w_iface *_this, uint64_t inputHandle, uint64_t eAction) { struct ISteamInput_SteamInput005_StopAnalogActionMomentum_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .eAction = eAction, }; @@ -1388,11 +1388,11 @@ void __thiscall winISteamInput_SteamInput005_StopAnalogActionMomentum(struct w_s STEAMCLIENT_CALL( ISteamInput_SteamInput005_StopAnalogActionMomentum, ¶ms ); } -InputMotionData_t * __thiscall winISteamInput_SteamInput005_GetMotionData(struct w_steam_iface *_this, InputMotionData_t *_ret, uint64_t inputHandle) +InputMotionData_t * __thiscall winISteamInput_SteamInput005_GetMotionData(struct w_iface *_this, InputMotionData_t *_ret, uint64_t inputHandle) { struct ISteamInput_SteamInput005_GetMotionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .inputHandle = inputHandle, }; @@ -1401,11 +1401,11 @@ InputMotionData_t * __thiscall winISteamInput_SteamInput005_GetMotionData(struct return params._ret; } -void __thiscall winISteamInput_SteamInput005_TriggerVibration(struct w_steam_iface *_this, uint64_t inputHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) +void __thiscall winISteamInput_SteamInput005_TriggerVibration(struct w_iface *_this, uint64_t inputHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) { struct ISteamInput_SteamInput005_TriggerVibration_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .usLeftSpeed = usLeftSpeed, .usRightSpeed = usRightSpeed, @@ -1414,11 +1414,11 @@ void __thiscall winISteamInput_SteamInput005_TriggerVibration(struct w_steam_ifa STEAMCLIENT_CALL( ISteamInput_SteamInput005_TriggerVibration, ¶ms ); } -void __thiscall winISteamInput_SteamInput005_TriggerVibrationExtended(struct w_steam_iface *_this, uint64_t inputHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed, uint16_t usLeftTriggerSpeed, uint16_t usRightTriggerSpeed) +void __thiscall winISteamInput_SteamInput005_TriggerVibrationExtended(struct w_iface *_this, uint64_t inputHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed, uint16_t usLeftTriggerSpeed, uint16_t usRightTriggerSpeed) { struct ISteamInput_SteamInput005_TriggerVibrationExtended_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .usLeftSpeed = usLeftSpeed, .usRightSpeed = usRightSpeed, @@ -1429,11 +1429,11 @@ void __thiscall winISteamInput_SteamInput005_TriggerVibrationExtended(struct w_s STEAMCLIENT_CALL( ISteamInput_SteamInput005_TriggerVibrationExtended, ¶ms ); } -void __thiscall winISteamInput_SteamInput005_TriggerSimpleHapticEvent(struct w_steam_iface *_this, uint64_t inputHandle, uint32_t eHapticLocation, uint8_t nIntensity, char nGainDB, uint8_t nOtherIntensity, char nOtherGainDB) +void __thiscall winISteamInput_SteamInput005_TriggerSimpleHapticEvent(struct w_iface *_this, uint64_t inputHandle, uint32_t eHapticLocation, uint8_t nIntensity, char nGainDB, uint8_t nOtherIntensity, char nOtherGainDB) { struct ISteamInput_SteamInput005_TriggerSimpleHapticEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .eHapticLocation = eHapticLocation, .nIntensity = nIntensity, @@ -1445,11 +1445,11 @@ void __thiscall winISteamInput_SteamInput005_TriggerSimpleHapticEvent(struct w_s STEAMCLIENT_CALL( ISteamInput_SteamInput005_TriggerSimpleHapticEvent, ¶ms ); } -void __thiscall winISteamInput_SteamInput005_SetLEDColor(struct w_steam_iface *_this, uint64_t inputHandle, uint8_t nColorR, uint8_t nColorG, uint8_t nColorB, uint32_t nFlags) +void __thiscall winISteamInput_SteamInput005_SetLEDColor(struct w_iface *_this, uint64_t inputHandle, uint8_t nColorR, uint8_t nColorG, uint8_t nColorB, uint32_t nFlags) { struct ISteamInput_SteamInput005_SetLEDColor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .nColorR = nColorR, .nColorG = nColorG, @@ -1460,11 +1460,11 @@ void __thiscall winISteamInput_SteamInput005_SetLEDColor(struct w_steam_iface *_ STEAMCLIENT_CALL( ISteamInput_SteamInput005_SetLEDColor, ¶ms ); } -void __thiscall winISteamInput_SteamInput005_Legacy_TriggerHapticPulse(struct w_steam_iface *_this, uint64_t inputHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) +void __thiscall winISteamInput_SteamInput005_Legacy_TriggerHapticPulse(struct w_iface *_this, uint64_t inputHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) { struct ISteamInput_SteamInput005_Legacy_TriggerHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -1473,11 +1473,11 @@ void __thiscall winISteamInput_SteamInput005_Legacy_TriggerHapticPulse(struct w_ STEAMCLIENT_CALL( ISteamInput_SteamInput005_Legacy_TriggerHapticPulse, ¶ms ); } -void __thiscall winISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse(struct w_steam_iface *_this, uint64_t inputHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) +void __thiscall winISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse(struct w_iface *_this, uint64_t inputHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) { struct ISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -1489,11 +1489,11 @@ void __thiscall winISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse(s STEAMCLIENT_CALL( ISteamInput_SteamInput005_Legacy_TriggerRepeatedHapticPulse, ¶ms ); } -int8_t __thiscall winISteamInput_SteamInput005_ShowBindingPanel(struct w_steam_iface *_this, uint64_t inputHandle) +int8_t __thiscall winISteamInput_SteamInput005_ShowBindingPanel(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput005_ShowBindingPanel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); @@ -1501,11 +1501,11 @@ int8_t __thiscall winISteamInput_SteamInput005_ShowBindingPanel(struct w_steam_i return params._ret; } -uint32_t __thiscall winISteamInput_SteamInput005_GetInputTypeForHandle(struct w_steam_iface *_this, uint64_t inputHandle) +uint32_t __thiscall winISteamInput_SteamInput005_GetInputTypeForHandle(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput005_GetInputTypeForHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); @@ -1513,11 +1513,11 @@ uint32_t __thiscall winISteamInput_SteamInput005_GetInputTypeForHandle(struct w_ return params._ret; } -uint64_t __thiscall winISteamInput_SteamInput005_GetControllerForGamepadIndex(struct w_steam_iface *_this, int32_t nIndex) +uint64_t __thiscall winISteamInput_SteamInput005_GetControllerForGamepadIndex(struct w_iface *_this, int32_t nIndex) { struct ISteamInput_SteamInput005_GetControllerForGamepadIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nIndex = nIndex, }; TRACE("%p\n", _this); @@ -1525,11 +1525,11 @@ uint64_t __thiscall winISteamInput_SteamInput005_GetControllerForGamepadIndex(st return params._ret; } -int32_t __thiscall winISteamInput_SteamInput005_GetGamepadIndexForController(struct w_steam_iface *_this, uint64_t ulinputHandle) +int32_t __thiscall winISteamInput_SteamInput005_GetGamepadIndexForController(struct w_iface *_this, uint64_t ulinputHandle) { struct ISteamInput_SteamInput005_GetGamepadIndexForController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulinputHandle = ulinputHandle, }; TRACE("%p\n", _this); @@ -1537,11 +1537,11 @@ int32_t __thiscall winISteamInput_SteamInput005_GetGamepadIndexForController(str return params._ret; } -const char * __thiscall winISteamInput_SteamInput005_GetStringForXboxOrigin(struct w_steam_iface *_this, uint32_t eOrigin) +const char * __thiscall winISteamInput_SteamInput005_GetStringForXboxOrigin(struct w_iface *_this, uint32_t eOrigin) { struct ISteamInput_SteamInput005_GetStringForXboxOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); @@ -1549,11 +1549,11 @@ const char * __thiscall winISteamInput_SteamInput005_GetStringForXboxOrigin(stru return params._ret; } -uint32_t __thiscall winISteamInput_SteamInput005_GetActionOriginFromXboxOrigin(struct w_steam_iface *_this, uint64_t inputHandle, uint32_t eOrigin) +uint32_t __thiscall winISteamInput_SteamInput005_GetActionOriginFromXboxOrigin(struct w_iface *_this, uint64_t inputHandle, uint32_t eOrigin) { struct ISteamInput_SteamInput005_GetActionOriginFromXboxOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .eOrigin = eOrigin, }; @@ -1562,11 +1562,11 @@ uint32_t __thiscall winISteamInput_SteamInput005_GetActionOriginFromXboxOrigin(s return params._ret; } -uint32_t __thiscall winISteamInput_SteamInput005_TranslateActionOrigin(struct w_steam_iface *_this, uint32_t eDestinationInputType, uint32_t eSourceOrigin) +uint32_t __thiscall winISteamInput_SteamInput005_TranslateActionOrigin(struct w_iface *_this, uint32_t eDestinationInputType, uint32_t eSourceOrigin) { struct ISteamInput_SteamInput005_TranslateActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eDestinationInputType = eDestinationInputType, .eSourceOrigin = eSourceOrigin, }; @@ -1575,11 +1575,11 @@ uint32_t __thiscall winISteamInput_SteamInput005_TranslateActionOrigin(struct w_ return params._ret; } -int8_t __thiscall winISteamInput_SteamInput005_GetDeviceBindingRevision(struct w_steam_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) +int8_t __thiscall winISteamInput_SteamInput005_GetDeviceBindingRevision(struct w_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) { struct ISteamInput_SteamInput005_GetDeviceBindingRevision_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .pMajor = pMajor, .pMinor = pMinor, @@ -1589,11 +1589,11 @@ int8_t __thiscall winISteamInput_SteamInput005_GetDeviceBindingRevision(struct w return params._ret; } -uint32_t __thiscall winISteamInput_SteamInput005_GetRemotePlaySessionID(struct w_steam_iface *_this, uint64_t inputHandle) +uint32_t __thiscall winISteamInput_SteamInput005_GetRemotePlaySessionID(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput005_GetRemotePlaySessionID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); @@ -1601,11 +1601,11 @@ uint32_t __thiscall winISteamInput_SteamInput005_GetRemotePlaySessionID(struct w return params._ret; } -uint16_t __thiscall winISteamInput_SteamInput005_GetSessionInputConfigurationSettings(struct w_steam_iface *_this) +uint16_t __thiscall winISteamInput_SteamInput005_GetSessionInputConfigurationSettings(struct w_iface *_this) { struct ISteamInput_SteamInput005_GetSessionInputConfigurationSettings_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput005_GetSessionInputConfigurationSettings, ¶ms ); @@ -1668,9 +1668,9 @@ __ASM_BLOCK_BEGIN(winISteamInput_SteamInput005_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamInput_SteamInput005(void *u_iface) +struct w_iface *create_winISteamInput_SteamInput005( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamInput005"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamInput005"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamInput_SteamInput005_vtable, 47, "SteamInput005"); r->u_iface = u_iface; @@ -1726,11 +1726,11 @@ DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput006_GetRemotePlaySessionID, 12) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput006_GetSessionInputConfigurationSettings, 4) DEFINE_THISCALL_WRAPPER(winISteamInput_SteamInput006_SetDualSenseTriggerEffect, 16) -int8_t __thiscall winISteamInput_SteamInput006_Init(struct w_steam_iface *_this, int8_t bExplicitlyCallRunFrame) +int8_t __thiscall winISteamInput_SteamInput006_Init(struct w_iface *_this, int8_t bExplicitlyCallRunFrame) { struct ISteamInput_SteamInput006_Init_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bExplicitlyCallRunFrame = bExplicitlyCallRunFrame, }; TRACE("%p\n", _this); @@ -1738,22 +1738,22 @@ int8_t __thiscall winISteamInput_SteamInput006_Init(struct w_steam_iface *_this, return params._ret; } -int8_t __thiscall winISteamInput_SteamInput006_Shutdown(struct w_steam_iface *_this) +int8_t __thiscall winISteamInput_SteamInput006_Shutdown(struct w_iface *_this) { struct ISteamInput_SteamInput006_Shutdown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput006_Shutdown, ¶ms ); return params._ret; } -int8_t __thiscall winISteamInput_SteamInput006_SetInputActionManifestFilePath(struct w_steam_iface *_this, const char *pchInputActionManifestAbsolutePath) +int8_t __thiscall winISteamInput_SteamInput006_SetInputActionManifestFilePath(struct w_iface *_this, const char *pchInputActionManifestAbsolutePath) { struct ISteamInput_SteamInput006_SetInputActionManifestFilePath_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchInputActionManifestAbsolutePath = pchInputActionManifestAbsolutePath, }; TRACE("%p\n", _this); @@ -1762,22 +1762,22 @@ int8_t __thiscall winISteamInput_SteamInput006_SetInputActionManifestFilePath(st return params._ret; } -void __thiscall winISteamInput_SteamInput006_RunFrame(struct w_steam_iface *_this, int8_t bReservedValue) +void __thiscall winISteamInput_SteamInput006_RunFrame(struct w_iface *_this, int8_t bReservedValue) { struct ISteamInput_SteamInput006_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bReservedValue = bReservedValue, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput006_RunFrame, ¶ms ); } -int8_t __thiscall winISteamInput_SteamInput006_BWaitForData(struct w_steam_iface *_this, int8_t bWaitForever, uint32_t unTimeout) +int8_t __thiscall winISteamInput_SteamInput006_BWaitForData(struct w_iface *_this, int8_t bWaitForever, uint32_t unTimeout) { struct ISteamInput_SteamInput006_BWaitForData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bWaitForever = bWaitForever, .unTimeout = unTimeout, }; @@ -1786,22 +1786,22 @@ int8_t __thiscall winISteamInput_SteamInput006_BWaitForData(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamInput_SteamInput006_BNewDataAvailable(struct w_steam_iface *_this) +int8_t __thiscall winISteamInput_SteamInput006_BNewDataAvailable(struct w_iface *_this) { struct ISteamInput_SteamInput006_BNewDataAvailable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput006_BNewDataAvailable, ¶ms ); return params._ret; } -int32_t __thiscall winISteamInput_SteamInput006_GetConnectedControllers(struct w_steam_iface *_this, uint64_t *handlesOut) +int32_t __thiscall winISteamInput_SteamInput006_GetConnectedControllers(struct w_iface *_this, uint64_t *handlesOut) { struct ISteamInput_SteamInput006_GetConnectedControllers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handlesOut = handlesOut, }; TRACE("%p\n", _this); @@ -1809,32 +1809,32 @@ int32_t __thiscall winISteamInput_SteamInput006_GetConnectedControllers(struct w return params._ret; } -void __thiscall winISteamInput_SteamInput006_EnableDeviceCallbacks(struct w_steam_iface *_this) +void __thiscall winISteamInput_SteamInput006_EnableDeviceCallbacks(struct w_iface *_this) { struct ISteamInput_SteamInput006_EnableDeviceCallbacks_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput006_EnableDeviceCallbacks, ¶ms ); } -void __thiscall winISteamInput_SteamInput006_EnableActionEventCallbacks(struct w_steam_iface *_this, void (*W_CDECL pCallback)(SteamInputActionEvent_t *)) +void __thiscall winISteamInput_SteamInput006_EnableActionEventCallbacks(struct w_iface *_this, void (*W_CDECL pCallback)(SteamInputActionEvent_t *)) { struct ISteamInput_SteamInput006_EnableActionEventCallbacks_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pCallback = pCallback, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput006_EnableActionEventCallbacks, ¶ms ); } -uint64_t __thiscall winISteamInput_SteamInput006_GetActionSetHandle(struct w_steam_iface *_this, const char *pszActionSetName) +uint64_t __thiscall winISteamInput_SteamInput006_GetActionSetHandle(struct w_iface *_this, const char *pszActionSetName) { struct ISteamInput_SteamInput006_GetActionSetHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionSetName = pszActionSetName, }; TRACE("%p\n", _this); @@ -1843,11 +1843,11 @@ uint64_t __thiscall winISteamInput_SteamInput006_GetActionSetHandle(struct w_ste return params._ret; } -void __thiscall winISteamInput_SteamInput006_ActivateActionSet(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle) +void __thiscall winISteamInput_SteamInput006_ActivateActionSet(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle) { struct ISteamInput_SteamInput006_ActivateActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetHandle = actionSetHandle, }; @@ -1855,11 +1855,11 @@ void __thiscall winISteamInput_SteamInput006_ActivateActionSet(struct w_steam_if STEAMCLIENT_CALL( ISteamInput_SteamInput006_ActivateActionSet, ¶ms ); } -uint64_t __thiscall winISteamInput_SteamInput006_GetCurrentActionSet(struct w_steam_iface *_this, uint64_t inputHandle) +uint64_t __thiscall winISteamInput_SteamInput006_GetCurrentActionSet(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput006_GetCurrentActionSet_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); @@ -1867,11 +1867,11 @@ uint64_t __thiscall winISteamInput_SteamInput006_GetCurrentActionSet(struct w_st return params._ret; } -void __thiscall winISteamInput_SteamInput006_ActivateActionSetLayer(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) +void __thiscall winISteamInput_SteamInput006_ActivateActionSetLayer(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) { struct ISteamInput_SteamInput006_ActivateActionSetLayer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetLayerHandle = actionSetLayerHandle, }; @@ -1879,11 +1879,11 @@ void __thiscall winISteamInput_SteamInput006_ActivateActionSetLayer(struct w_ste STEAMCLIENT_CALL( ISteamInput_SteamInput006_ActivateActionSetLayer, ¶ms ); } -void __thiscall winISteamInput_SteamInput006_DeactivateActionSetLayer(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) +void __thiscall winISteamInput_SteamInput006_DeactivateActionSetLayer(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetLayerHandle) { struct ISteamInput_SteamInput006_DeactivateActionSetLayer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetLayerHandle = actionSetLayerHandle, }; @@ -1891,22 +1891,22 @@ void __thiscall winISteamInput_SteamInput006_DeactivateActionSetLayer(struct w_s STEAMCLIENT_CALL( ISteamInput_SteamInput006_DeactivateActionSetLayer, ¶ms ); } -void __thiscall winISteamInput_SteamInput006_DeactivateAllActionSetLayers(struct w_steam_iface *_this, uint64_t inputHandle) +void __thiscall winISteamInput_SteamInput006_DeactivateAllActionSetLayers(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput006_DeactivateAllActionSetLayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput006_DeactivateAllActionSetLayers, ¶ms ); } -int32_t __thiscall winISteamInput_SteamInput006_GetActiveActionSetLayers(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t *handlesOut) +int32_t __thiscall winISteamInput_SteamInput006_GetActiveActionSetLayers(struct w_iface *_this, uint64_t inputHandle, uint64_t *handlesOut) { struct ISteamInput_SteamInput006_GetActiveActionSetLayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .handlesOut = handlesOut, }; @@ -1915,11 +1915,11 @@ int32_t __thiscall winISteamInput_SteamInput006_GetActiveActionSetLayers(struct return params._ret; } -uint64_t __thiscall winISteamInput_SteamInput006_GetDigitalActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamInput_SteamInput006_GetDigitalActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamInput_SteamInput006_GetDigitalActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -1928,11 +1928,11 @@ uint64_t __thiscall winISteamInput_SteamInput006_GetDigitalActionHandle(struct w return params._ret; } -InputDigitalActionData_t * __thiscall winISteamInput_SteamInput006_GetDigitalActionData(struct w_steam_iface *_this, InputDigitalActionData_t *_ret, uint64_t inputHandle, uint64_t digitalActionHandle) +InputDigitalActionData_t * __thiscall winISteamInput_SteamInput006_GetDigitalActionData(struct w_iface *_this, InputDigitalActionData_t *_ret, uint64_t inputHandle, uint64_t digitalActionHandle) { struct ISteamInput_SteamInput006_GetDigitalActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .inputHandle = inputHandle, .digitalActionHandle = digitalActionHandle, @@ -1942,11 +1942,11 @@ InputDigitalActionData_t * __thiscall winISteamInput_SteamInput006_GetDigitalAct return params._ret; } -int32_t __thiscall winISteamInput_SteamInput006_GetDigitalActionOrigins(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamInput_SteamInput006_GetDigitalActionOrigins(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle, uint64_t digitalActionHandle, uint32_t *originsOut) { struct ISteamInput_SteamInput006_GetDigitalActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetHandle = actionSetHandle, .digitalActionHandle = digitalActionHandle, @@ -1957,11 +1957,11 @@ int32_t __thiscall winISteamInput_SteamInput006_GetDigitalActionOrigins(struct w return params._ret; } -const char * __thiscall winISteamInput_SteamInput006_GetStringForDigitalActionName(struct w_steam_iface *_this, uint64_t eActionHandle) +const char * __thiscall winISteamInput_SteamInput006_GetStringForDigitalActionName(struct w_iface *_this, uint64_t eActionHandle) { struct ISteamInput_SteamInput006_GetStringForDigitalActionName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eActionHandle = eActionHandle, }; TRACE("%p\n", _this); @@ -1969,11 +1969,11 @@ const char * __thiscall winISteamInput_SteamInput006_GetStringForDigitalActionNa return params._ret; } -uint64_t __thiscall winISteamInput_SteamInput006_GetAnalogActionHandle(struct w_steam_iface *_this, const char *pszActionName) +uint64_t __thiscall winISteamInput_SteamInput006_GetAnalogActionHandle(struct w_iface *_this, const char *pszActionName) { struct ISteamInput_SteamInput006_GetAnalogActionHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszActionName = pszActionName, }; TRACE("%p\n", _this); @@ -1982,11 +1982,11 @@ uint64_t __thiscall winISteamInput_SteamInput006_GetAnalogActionHandle(struct w_ return params._ret; } -InputAnalogActionData_t * __thiscall winISteamInput_SteamInput006_GetAnalogActionData(struct w_steam_iface *_this, InputAnalogActionData_t *_ret, uint64_t inputHandle, uint64_t analogActionHandle) +InputAnalogActionData_t * __thiscall winISteamInput_SteamInput006_GetAnalogActionData(struct w_iface *_this, InputAnalogActionData_t *_ret, uint64_t inputHandle, uint64_t analogActionHandle) { struct ISteamInput_SteamInput006_GetAnalogActionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .inputHandle = inputHandle, .analogActionHandle = analogActionHandle, @@ -1996,11 +1996,11 @@ InputAnalogActionData_t * __thiscall winISteamInput_SteamInput006_GetAnalogActio return params._ret; } -int32_t __thiscall winISteamInput_SteamInput006_GetAnalogActionOrigins(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) +int32_t __thiscall winISteamInput_SteamInput006_GetAnalogActionOrigins(struct w_iface *_this, uint64_t inputHandle, uint64_t actionSetHandle, uint64_t analogActionHandle, uint32_t *originsOut) { struct ISteamInput_SteamInput006_GetAnalogActionOrigins_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .actionSetHandle = actionSetHandle, .analogActionHandle = analogActionHandle, @@ -2011,11 +2011,11 @@ int32_t __thiscall winISteamInput_SteamInput006_GetAnalogActionOrigins(struct w_ return params._ret; } -const char * __thiscall winISteamInput_SteamInput006_GetStringForActionOrigin(struct w_steam_iface *_this, uint32_t eOrigin) +const char * __thiscall winISteamInput_SteamInput006_GetStringForActionOrigin(struct w_iface *_this, uint32_t eOrigin) { struct ISteamInput_SteamInput006_GetStringForActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); @@ -2023,11 +2023,11 @@ const char * __thiscall winISteamInput_SteamInput006_GetStringForActionOrigin(st return params._ret; } -const char * __thiscall winISteamInput_SteamInput006_GetStringForAnalogActionName(struct w_steam_iface *_this, uint64_t eActionHandle) +const char * __thiscall winISteamInput_SteamInput006_GetStringForAnalogActionName(struct w_iface *_this, uint64_t eActionHandle) { struct ISteamInput_SteamInput006_GetStringForAnalogActionName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eActionHandle = eActionHandle, }; TRACE("%p\n", _this); @@ -2035,11 +2035,11 @@ const char * __thiscall winISteamInput_SteamInput006_GetStringForAnalogActionNam return params._ret; } -void __thiscall winISteamInput_SteamInput006_StopAnalogActionMomentum(struct w_steam_iface *_this, uint64_t inputHandle, uint64_t eAction) +void __thiscall winISteamInput_SteamInput006_StopAnalogActionMomentum(struct w_iface *_this, uint64_t inputHandle, uint64_t eAction) { struct ISteamInput_SteamInput006_StopAnalogActionMomentum_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .eAction = eAction, }; @@ -2047,11 +2047,11 @@ void __thiscall winISteamInput_SteamInput006_StopAnalogActionMomentum(struct w_s STEAMCLIENT_CALL( ISteamInput_SteamInput006_StopAnalogActionMomentum, ¶ms ); } -InputMotionData_t * __thiscall winISteamInput_SteamInput006_GetMotionData(struct w_steam_iface *_this, InputMotionData_t *_ret, uint64_t inputHandle) +InputMotionData_t * __thiscall winISteamInput_SteamInput006_GetMotionData(struct w_iface *_this, InputMotionData_t *_ret, uint64_t inputHandle) { struct ISteamInput_SteamInput006_GetMotionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .inputHandle = inputHandle, }; @@ -2060,11 +2060,11 @@ InputMotionData_t * __thiscall winISteamInput_SteamInput006_GetMotionData(struct return params._ret; } -void __thiscall winISteamInput_SteamInput006_TriggerVibration(struct w_steam_iface *_this, uint64_t inputHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) +void __thiscall winISteamInput_SteamInput006_TriggerVibration(struct w_iface *_this, uint64_t inputHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed) { struct ISteamInput_SteamInput006_TriggerVibration_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .usLeftSpeed = usLeftSpeed, .usRightSpeed = usRightSpeed, @@ -2073,11 +2073,11 @@ void __thiscall winISteamInput_SteamInput006_TriggerVibration(struct w_steam_ifa STEAMCLIENT_CALL( ISteamInput_SteamInput006_TriggerVibration, ¶ms ); } -void __thiscall winISteamInput_SteamInput006_TriggerVibrationExtended(struct w_steam_iface *_this, uint64_t inputHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed, uint16_t usLeftTriggerSpeed, uint16_t usRightTriggerSpeed) +void __thiscall winISteamInput_SteamInput006_TriggerVibrationExtended(struct w_iface *_this, uint64_t inputHandle, uint16_t usLeftSpeed, uint16_t usRightSpeed, uint16_t usLeftTriggerSpeed, uint16_t usRightTriggerSpeed) { struct ISteamInput_SteamInput006_TriggerVibrationExtended_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .usLeftSpeed = usLeftSpeed, .usRightSpeed = usRightSpeed, @@ -2088,11 +2088,11 @@ void __thiscall winISteamInput_SteamInput006_TriggerVibrationExtended(struct w_s STEAMCLIENT_CALL( ISteamInput_SteamInput006_TriggerVibrationExtended, ¶ms ); } -void __thiscall winISteamInput_SteamInput006_TriggerSimpleHapticEvent(struct w_steam_iface *_this, uint64_t inputHandle, uint32_t eHapticLocation, uint8_t nIntensity, char nGainDB, uint8_t nOtherIntensity, char nOtherGainDB) +void __thiscall winISteamInput_SteamInput006_TriggerSimpleHapticEvent(struct w_iface *_this, uint64_t inputHandle, uint32_t eHapticLocation, uint8_t nIntensity, char nGainDB, uint8_t nOtherIntensity, char nOtherGainDB) { struct ISteamInput_SteamInput006_TriggerSimpleHapticEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .eHapticLocation = eHapticLocation, .nIntensity = nIntensity, @@ -2104,11 +2104,11 @@ void __thiscall winISteamInput_SteamInput006_TriggerSimpleHapticEvent(struct w_s STEAMCLIENT_CALL( ISteamInput_SteamInput006_TriggerSimpleHapticEvent, ¶ms ); } -void __thiscall winISteamInput_SteamInput006_SetLEDColor(struct w_steam_iface *_this, uint64_t inputHandle, uint8_t nColorR, uint8_t nColorG, uint8_t nColorB, uint32_t nFlags) +void __thiscall winISteamInput_SteamInput006_SetLEDColor(struct w_iface *_this, uint64_t inputHandle, uint8_t nColorR, uint8_t nColorG, uint8_t nColorB, uint32_t nFlags) { struct ISteamInput_SteamInput006_SetLEDColor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .nColorR = nColorR, .nColorG = nColorG, @@ -2119,11 +2119,11 @@ void __thiscall winISteamInput_SteamInput006_SetLEDColor(struct w_steam_iface *_ STEAMCLIENT_CALL( ISteamInput_SteamInput006_SetLEDColor, ¶ms ); } -void __thiscall winISteamInput_SteamInput006_Legacy_TriggerHapticPulse(struct w_steam_iface *_this, uint64_t inputHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) +void __thiscall winISteamInput_SteamInput006_Legacy_TriggerHapticPulse(struct w_iface *_this, uint64_t inputHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec) { struct ISteamInput_SteamInput006_Legacy_TriggerHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -2132,11 +2132,11 @@ void __thiscall winISteamInput_SteamInput006_Legacy_TriggerHapticPulse(struct w_ STEAMCLIENT_CALL( ISteamInput_SteamInput006_Legacy_TriggerHapticPulse, ¶ms ); } -void __thiscall winISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse(struct w_steam_iface *_this, uint64_t inputHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) +void __thiscall winISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse(struct w_iface *_this, uint64_t inputHandle, uint32_t eTargetPad, uint16_t usDurationMicroSec, uint16_t usOffMicroSec, uint16_t unRepeat, uint32_t nFlags) { struct ISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .eTargetPad = eTargetPad, .usDurationMicroSec = usDurationMicroSec, @@ -2148,11 +2148,11 @@ void __thiscall winISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse(s STEAMCLIENT_CALL( ISteamInput_SteamInput006_Legacy_TriggerRepeatedHapticPulse, ¶ms ); } -int8_t __thiscall winISteamInput_SteamInput006_ShowBindingPanel(struct w_steam_iface *_this, uint64_t inputHandle) +int8_t __thiscall winISteamInput_SteamInput006_ShowBindingPanel(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput006_ShowBindingPanel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); @@ -2160,11 +2160,11 @@ int8_t __thiscall winISteamInput_SteamInput006_ShowBindingPanel(struct w_steam_i return params._ret; } -uint32_t __thiscall winISteamInput_SteamInput006_GetInputTypeForHandle(struct w_steam_iface *_this, uint64_t inputHandle) +uint32_t __thiscall winISteamInput_SteamInput006_GetInputTypeForHandle(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput006_GetInputTypeForHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); @@ -2172,11 +2172,11 @@ uint32_t __thiscall winISteamInput_SteamInput006_GetInputTypeForHandle(struct w_ return params._ret; } -uint64_t __thiscall winISteamInput_SteamInput006_GetControllerForGamepadIndex(struct w_steam_iface *_this, int32_t nIndex) +uint64_t __thiscall winISteamInput_SteamInput006_GetControllerForGamepadIndex(struct w_iface *_this, int32_t nIndex) { struct ISteamInput_SteamInput006_GetControllerForGamepadIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nIndex = nIndex, }; TRACE("%p\n", _this); @@ -2184,11 +2184,11 @@ uint64_t __thiscall winISteamInput_SteamInput006_GetControllerForGamepadIndex(st return params._ret; } -int32_t __thiscall winISteamInput_SteamInput006_GetGamepadIndexForController(struct w_steam_iface *_this, uint64_t ulinputHandle) +int32_t __thiscall winISteamInput_SteamInput006_GetGamepadIndexForController(struct w_iface *_this, uint64_t ulinputHandle) { struct ISteamInput_SteamInput006_GetGamepadIndexForController_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulinputHandle = ulinputHandle, }; TRACE("%p\n", _this); @@ -2196,11 +2196,11 @@ int32_t __thiscall winISteamInput_SteamInput006_GetGamepadIndexForController(str return params._ret; } -const char * __thiscall winISteamInput_SteamInput006_GetStringForXboxOrigin(struct w_steam_iface *_this, uint32_t eOrigin) +const char * __thiscall winISteamInput_SteamInput006_GetStringForXboxOrigin(struct w_iface *_this, uint32_t eOrigin) { struct ISteamInput_SteamInput006_GetStringForXboxOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eOrigin = eOrigin, }; TRACE("%p\n", _this); @@ -2208,11 +2208,11 @@ const char * __thiscall winISteamInput_SteamInput006_GetStringForXboxOrigin(stru return params._ret; } -uint32_t __thiscall winISteamInput_SteamInput006_GetActionOriginFromXboxOrigin(struct w_steam_iface *_this, uint64_t inputHandle, uint32_t eOrigin) +uint32_t __thiscall winISteamInput_SteamInput006_GetActionOriginFromXboxOrigin(struct w_iface *_this, uint64_t inputHandle, uint32_t eOrigin) { struct ISteamInput_SteamInput006_GetActionOriginFromXboxOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .eOrigin = eOrigin, }; @@ -2221,11 +2221,11 @@ uint32_t __thiscall winISteamInput_SteamInput006_GetActionOriginFromXboxOrigin(s return params._ret; } -uint32_t __thiscall winISteamInput_SteamInput006_TranslateActionOrigin(struct w_steam_iface *_this, uint32_t eDestinationInputType, uint32_t eSourceOrigin) +uint32_t __thiscall winISteamInput_SteamInput006_TranslateActionOrigin(struct w_iface *_this, uint32_t eDestinationInputType, uint32_t eSourceOrigin) { struct ISteamInput_SteamInput006_TranslateActionOrigin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eDestinationInputType = eDestinationInputType, .eSourceOrigin = eSourceOrigin, }; @@ -2234,11 +2234,11 @@ uint32_t __thiscall winISteamInput_SteamInput006_TranslateActionOrigin(struct w_ return params._ret; } -int8_t __thiscall winISteamInput_SteamInput006_GetDeviceBindingRevision(struct w_steam_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) +int8_t __thiscall winISteamInput_SteamInput006_GetDeviceBindingRevision(struct w_iface *_this, uint64_t inputHandle, int32_t *pMajor, int32_t *pMinor) { struct ISteamInput_SteamInput006_GetDeviceBindingRevision_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .pMajor = pMajor, .pMinor = pMinor, @@ -2248,11 +2248,11 @@ int8_t __thiscall winISteamInput_SteamInput006_GetDeviceBindingRevision(struct w return params._ret; } -uint32_t __thiscall winISteamInput_SteamInput006_GetRemotePlaySessionID(struct w_steam_iface *_this, uint64_t inputHandle) +uint32_t __thiscall winISteamInput_SteamInput006_GetRemotePlaySessionID(struct w_iface *_this, uint64_t inputHandle) { struct ISteamInput_SteamInput006_GetRemotePlaySessionID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, }; TRACE("%p\n", _this); @@ -2260,22 +2260,22 @@ uint32_t __thiscall winISteamInput_SteamInput006_GetRemotePlaySessionID(struct w return params._ret; } -uint16_t __thiscall winISteamInput_SteamInput006_GetSessionInputConfigurationSettings(struct w_steam_iface *_this) +uint16_t __thiscall winISteamInput_SteamInput006_GetSessionInputConfigurationSettings(struct w_iface *_this) { struct ISteamInput_SteamInput006_GetSessionInputConfigurationSettings_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInput_SteamInput006_GetSessionInputConfigurationSettings, ¶ms ); return params._ret; } -void __thiscall winISteamInput_SteamInput006_SetDualSenseTriggerEffect(struct w_steam_iface *_this, uint64_t inputHandle, const ScePadTriggerEffectParam *pParam) +void __thiscall winISteamInput_SteamInput006_SetDualSenseTriggerEffect(struct w_iface *_this, uint64_t inputHandle, const ScePadTriggerEffectParam *pParam) { struct ISteamInput_SteamInput006_SetDualSenseTriggerEffect_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .inputHandle = inputHandle, .pParam = pParam, }; @@ -2340,9 +2340,9 @@ __ASM_BLOCK_BEGIN(winISteamInput_SteamInput006_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamInput_SteamInput006(void *u_iface) +struct w_iface *create_winISteamInput_SteamInput006( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamInput006"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamInput006"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamInput_SteamInput006_vtable, 48, "SteamInput006"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamInventory.c b/lsteamclient/winISteamInventory.c index 053b1afa..846a7103 100644 --- a/lsteamclient/winISteamInventory.c +++ b/lsteamclient/winISteamInventory.c @@ -28,11 +28,11 @@ DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItem DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs, 12) DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs, 20) -uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus(struct w_steam_iface *_this, int32_t resultHandle) +uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus(struct w_iface *_this, int32_t resultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, }; TRACE("%p\n", _this); @@ -40,11 +40,11 @@ uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultSt return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems(struct w_steam_iface *_this, int32_t resultHandle, SteamItemDetails_t *pOutItemsArray, uint32_t *punOutItemsArraySize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems(struct w_iface *_this, int32_t resultHandle, SteamItemDetails_t *pOutItemsArray, uint32_t *punOutItemsArraySize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, .pOutItemsArray = pOutItemsArray, .punOutItemsArraySize = punOutItemsArraySize, @@ -54,11 +54,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultItem return params._ret; } -uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp(struct w_steam_iface *_this, int32_t resultHandle) +uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp(struct w_iface *_this, int32_t resultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, }; TRACE("%p\n", _this); @@ -66,11 +66,11 @@ uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetResultTi return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID(struct w_steam_iface *_this, int32_t resultHandle, CSteamID steamIDExpected) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID(struct w_iface *_this, int32_t resultHandle, CSteamID steamIDExpected) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, .steamIDExpected = steamIDExpected, }; @@ -79,22 +79,22 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_CheckResultSt return params._ret; } -void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult(struct w_steam_iface *_this, int32_t resultHandle) +void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult(struct w_iface *_this, int32_t resultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DestroyResult, ¶ms ); } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems(struct w_steam_iface *_this, int32_t *pResultHandle) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems(struct w_iface *_this, int32_t *pResultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, }; TRACE("%p\n", _this); @@ -102,11 +102,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetAllItems(s return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID(struct w_steam_iface *_this, int32_t *pResultHandle, const uint64_t *pInstanceIDs, uint32_t unCountInstanceIDs) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID(struct w_iface *_this, int32_t *pResultHandle, const uint64_t *pInstanceIDs, uint32_t unCountInstanceIDs) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .pInstanceIDs = pInstanceIDs, .unCountInstanceIDs = unCountInstanceIDs, @@ -116,11 +116,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemsByID( return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult(struct w_steam_iface *_this, int32_t resultHandle, void *pOutBuffer, uint32_t *punOutBufferSize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult(struct w_iface *_this, int32_t resultHandle, void *pOutBuffer, uint32_t *punOutBufferSize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, .pOutBuffer = pOutBuffer, .punOutBufferSize = punOutBufferSize, @@ -130,11 +130,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_SerializeResu return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult(struct w_steam_iface *_this, int32_t *pOutResultHandle, const void *pBuffer, uint32_t unBufferSize, int8_t bRESERVED_MUST_BE_FALSE) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult(struct w_iface *_this, int32_t *pOutResultHandle, const void *pBuffer, uint32_t unBufferSize, int8_t bRESERVED_MUST_BE_FALSE) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pOutResultHandle = pOutResultHandle, .pBuffer = pBuffer, .unBufferSize = unBufferSize, @@ -145,11 +145,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_DeserializeRe return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems(struct w_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .pArrayItemDefs = pArrayItemDefs, .punArrayQuantity = punArrayQuantity, @@ -160,11 +160,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GenerateItems return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems(struct w_iface *_this, int32_t *pResultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, }; TRACE("%p\n", _this); @@ -172,11 +172,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GrantPromoIte return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t itemDef) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem(struct w_iface *_this, int32_t *pResultHandle, int32_t itemDef) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .itemDef = itemDef, }; @@ -185,11 +185,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItem( return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, uint32_t unArrayLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems(struct w_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, uint32_t unArrayLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .pArrayItemDefs = pArrayItemDefs, .unArrayLength = unArrayLength, @@ -199,11 +199,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_AddPromoItems return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemConsume, uint32_t unQuantity) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem(struct w_iface *_this, int32_t *pResultHandle, uint64_t itemConsume, uint32_t unQuantity) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .itemConsume = itemConsume, .unQuantity = unQuantity, @@ -213,11 +213,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_ConsumeItem(s return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayGenerate, const uint32_t *punArrayGenerateQuantity, uint32_t unArrayGenerateLength, const uint64_t *pArrayDestroy, const uint32_t *punArrayDestroyQuantity, uint32_t unArrayDestroyLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems(struct w_iface *_this, int32_t *pResultHandle, const int32_t *pArrayGenerate, const uint32_t *punArrayGenerateQuantity, uint32_t unArrayGenerateLength, const uint64_t *pArrayDestroy, const uint32_t *punArrayDestroyQuantity, uint32_t unArrayDestroyLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .pArrayGenerate = pArrayGenerate, .punArrayGenerateQuantity = punArrayGenerateQuantity, @@ -231,11 +231,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_ExchangeItems return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemIdSource, uint32_t unQuantity, uint64_t itemIdDest) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity(struct w_iface *_this, int32_t *pResultHandle, uint64_t itemIdSource, uint32_t unQuantity, uint64_t itemIdDest) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQuantity_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .itemIdSource = itemIdSource, .unQuantity = unQuantity, @@ -246,21 +246,21 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TransferItemQ return params._ret; } -void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat(struct w_steam_iface *_this) +void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat(struct w_iface *_this) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_SendItemDropHeartbeat, ¶ms ); } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t dropListDefinition) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop(struct w_iface *_this, int32_t *pResultHandle, int32_t dropListDefinition) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDrop_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .dropListDefinition = dropListDefinition, }; @@ -269,11 +269,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TriggerItemDr return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems(struct w_steam_iface *_this, int32_t *pResultHandle, CSteamID steamIDTradePartner, const uint64_t *pArrayGive, const uint32_t *pArrayGiveQuantity, uint32_t nArrayGiveLength, const uint64_t *pArrayGet, const uint32_t *pArrayGetQuantity, uint32_t nArrayGetLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems(struct w_iface *_this, int32_t *pResultHandle, CSteamID steamIDTradePartner, const uint64_t *pArrayGive, const uint32_t *pArrayGiveQuantity, uint32_t nArrayGiveLength, const uint64_t *pArrayGet, const uint32_t *pArrayGetQuantity, uint32_t nArrayGetLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .steamIDTradePartner = steamIDTradePartner, .pArrayGive = pArrayGive, @@ -288,22 +288,22 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_TradeItems(st return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions(struct w_steam_iface *_this) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions(struct w_iface *_this) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V001_LoadItemDefinitions, ¶ms ); return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs(struct w_steam_iface *_this, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs(struct w_iface *_this, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pItemDefIDs = pItemDefIDs, .punItemDefIDsArraySize = punItemDefIDsArraySize, }; @@ -312,11 +312,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefini return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty(struct w_steam_iface *_this, int32_t iDefinition, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty(struct w_iface *_this, int32_t iDefinition, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefinitionProperty_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iDefinition = iDefinition, .pchPropertyName = pchPropertyName, .pchValueBuffer = pchValueBuffer, @@ -328,11 +328,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetItemDefini return params._ret; } -uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs(struct w_iface *_this, CSteamID steamID) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestEligiblePromoItemDefinitionsIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -340,11 +340,11 @@ uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_RequestElig return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs(struct w_steam_iface *_this, CSteamID steamID, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs(struct w_iface *_this, CSteamID steamID, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V001_GetEligiblePromoItemDefinitionIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .pItemDefIDs = pItemDefIDs, .punItemDefIDsArraySize = punItemDefIDsArraySize, @@ -387,9 +387,9 @@ __ASM_BLOCK_BEGIN(winISteamInventory_STEAMINVENTORY_INTERFACE_V001_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V001(void *u_iface) +struct w_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMINVENTORY_INTERFACE_V001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMINVENTORY_INTERFACE_V001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamInventory_STEAMINVENTORY_INTERFACE_V001_vtable, 24, "STEAMINVENTORY_INTERFACE_V001"); r->u_iface = u_iface; @@ -434,11 +434,11 @@ DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProp DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4, 28) DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties, 16) -uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus(struct w_steam_iface *_this, int32_t resultHandle) +uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus(struct w_iface *_this, int32_t resultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, }; TRACE("%p\n", _this); @@ -446,11 +446,11 @@ uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultSt return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems(struct w_steam_iface *_this, int32_t resultHandle, SteamItemDetails_t *pOutItemsArray, uint32_t *punOutItemsArraySize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems(struct w_iface *_this, int32_t resultHandle, SteamItemDetails_t *pOutItemsArray, uint32_t *punOutItemsArraySize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, .pOutItemsArray = pOutItemsArray, .punOutItemsArraySize = punOutItemsArraySize, @@ -460,11 +460,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItem return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty(struct w_steam_iface *_this, int32_t resultHandle, uint32_t unItemIndex, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty(struct w_iface *_this, int32_t resultHandle, uint32_t unItemIndex, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItemProperty_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, .unItemIndex = unItemIndex, .pchPropertyName = pchPropertyName, @@ -477,11 +477,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultItem return params._ret; } -uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp(struct w_steam_iface *_this, int32_t resultHandle) +uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp(struct w_iface *_this, int32_t resultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, }; TRACE("%p\n", _this); @@ -489,11 +489,11 @@ uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetResultTi return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID(struct w_steam_iface *_this, int32_t resultHandle, CSteamID steamIDExpected) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID(struct w_iface *_this, int32_t resultHandle, CSteamID steamIDExpected) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, .steamIDExpected = steamIDExpected, }; @@ -502,22 +502,22 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_CheckResultSt return params._ret; } -void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult(struct w_steam_iface *_this, int32_t resultHandle) +void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult(struct w_iface *_this, int32_t resultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DestroyResult, ¶ms ); } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems(struct w_steam_iface *_this, int32_t *pResultHandle) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems(struct w_iface *_this, int32_t *pResultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, }; TRACE("%p\n", _this); @@ -525,11 +525,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetAllItems(s return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID(struct w_steam_iface *_this, int32_t *pResultHandle, const uint64_t *pInstanceIDs, uint32_t unCountInstanceIDs) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID(struct w_iface *_this, int32_t *pResultHandle, const uint64_t *pInstanceIDs, uint32_t unCountInstanceIDs) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .pInstanceIDs = pInstanceIDs, .unCountInstanceIDs = unCountInstanceIDs, @@ -539,11 +539,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsByID( return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult(struct w_steam_iface *_this, int32_t resultHandle, void *pOutBuffer, uint32_t *punOutBufferSize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult(struct w_iface *_this, int32_t resultHandle, void *pOutBuffer, uint32_t *punOutBufferSize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, .pOutBuffer = pOutBuffer, .punOutBufferSize = punOutBufferSize, @@ -553,11 +553,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SerializeResu return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult(struct w_steam_iface *_this, int32_t *pOutResultHandle, const void *pBuffer, uint32_t unBufferSize, int8_t bRESERVED_MUST_BE_FALSE) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult(struct w_iface *_this, int32_t *pOutResultHandle, const void *pBuffer, uint32_t unBufferSize, int8_t bRESERVED_MUST_BE_FALSE) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pOutResultHandle = pOutResultHandle, .pBuffer = pBuffer, .unBufferSize = unBufferSize, @@ -568,11 +568,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_DeserializeRe return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems(struct w_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .pArrayItemDefs = pArrayItemDefs, .punArrayQuantity = punArrayQuantity, @@ -583,11 +583,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GenerateItems return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems(struct w_iface *_this, int32_t *pResultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, }; TRACE("%p\n", _this); @@ -595,11 +595,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GrantPromoIte return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t itemDef) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem(struct w_iface *_this, int32_t *pResultHandle, int32_t itemDef) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .itemDef = itemDef, }; @@ -608,11 +608,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItem( return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, uint32_t unArrayLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems(struct w_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, uint32_t unArrayLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .pArrayItemDefs = pArrayItemDefs, .unArrayLength = unArrayLength, @@ -622,11 +622,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_AddPromoItems return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemConsume, uint32_t unQuantity) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem(struct w_iface *_this, int32_t *pResultHandle, uint64_t itemConsume, uint32_t unQuantity) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .itemConsume = itemConsume, .unQuantity = unQuantity, @@ -636,11 +636,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_ConsumeItem(s return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayGenerate, const uint32_t *punArrayGenerateQuantity, uint32_t unArrayGenerateLength, const uint64_t *pArrayDestroy, const uint32_t *punArrayDestroyQuantity, uint32_t unArrayDestroyLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems(struct w_iface *_this, int32_t *pResultHandle, const int32_t *pArrayGenerate, const uint32_t *punArrayGenerateQuantity, uint32_t unArrayGenerateLength, const uint64_t *pArrayDestroy, const uint32_t *punArrayDestroyQuantity, uint32_t unArrayDestroyLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .pArrayGenerate = pArrayGenerate, .punArrayGenerateQuantity = punArrayGenerateQuantity, @@ -654,11 +654,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_ExchangeItems return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemIdSource, uint32_t unQuantity, uint64_t itemIdDest) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity(struct w_iface *_this, int32_t *pResultHandle, uint64_t itemIdSource, uint32_t unQuantity, uint64_t itemIdDest) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQuantity_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .itemIdSource = itemIdSource, .unQuantity = unQuantity, @@ -669,21 +669,21 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TransferItemQ return params._ret; } -void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat(struct w_steam_iface *_this) +void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat(struct w_iface *_this) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SendItemDropHeartbeat, ¶ms ); } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t dropListDefinition) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop(struct w_iface *_this, int32_t *pResultHandle, int32_t dropListDefinition) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDrop_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .dropListDefinition = dropListDefinition, }; @@ -692,11 +692,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TriggerItemDr return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems(struct w_steam_iface *_this, int32_t *pResultHandle, CSteamID steamIDTradePartner, const uint64_t *pArrayGive, const uint32_t *pArrayGiveQuantity, uint32_t nArrayGiveLength, const uint64_t *pArrayGet, const uint32_t *pArrayGetQuantity, uint32_t nArrayGetLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems(struct w_iface *_this, int32_t *pResultHandle, CSteamID steamIDTradePartner, const uint64_t *pArrayGive, const uint32_t *pArrayGiveQuantity, uint32_t nArrayGiveLength, const uint64_t *pArrayGet, const uint32_t *pArrayGetQuantity, uint32_t nArrayGetLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .steamIDTradePartner = steamIDTradePartner, .pArrayGive = pArrayGive, @@ -711,22 +711,22 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_TradeItems(st return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions(struct w_steam_iface *_this) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions(struct w_iface *_this) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_LoadItemDefinitions, ¶ms ); return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs(struct w_steam_iface *_this, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs(struct w_iface *_this, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pItemDefIDs = pItemDefIDs, .punItemDefIDsArraySize = punItemDefIDsArraySize, }; @@ -735,11 +735,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefini return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty(struct w_steam_iface *_this, int32_t iDefinition, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty(struct w_iface *_this, int32_t iDefinition, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefinitionProperty_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iDefinition = iDefinition, .pchPropertyName = pchPropertyName, .pchValueBuffer = pchValueBuffer, @@ -751,11 +751,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemDefini return params._ret; } -uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs(struct w_iface *_this, CSteamID steamID) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestEligiblePromoItemDefinitionsIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -763,11 +763,11 @@ uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestElig return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs(struct w_steam_iface *_this, CSteamID steamID, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs(struct w_iface *_this, CSteamID steamID, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePromoItemDefinitionIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .pItemDefIDs = pItemDefIDs, .punItemDefIDsArraySize = punItemDefIDsArraySize, @@ -777,11 +777,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetEligiblePr return params._ret; } -uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase(struct w_steam_iface *_this, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) +uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase(struct w_iface *_this, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurchase_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pArrayItemDefs = pArrayItemDefs, .punArrayQuantity = punArrayQuantity, .unArrayLength = unArrayLength, @@ -791,33 +791,33 @@ uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartPurcha return params._ret; } -uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices(struct w_steam_iface *_this) +uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices(struct w_iface *_this) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RequestPrices, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices(struct w_steam_iface *_this) +uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices(struct w_iface *_this) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetNumItemsWithPrices, ¶ms ); return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices(struct w_steam_iface *_this, int32_t *pArrayItemDefs, uint64_t *pPrices, uint32_t unArrayLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices(struct w_iface *_this, int32_t *pArrayItemDefs, uint64_t *pPrices, uint32_t unArrayLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithPrices_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pArrayItemDefs = pArrayItemDefs, .pPrices = pPrices, .unArrayLength = unArrayLength, @@ -827,11 +827,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemsWithP return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice(struct w_steam_iface *_this, int32_t iDefinition, uint64_t *pPrice) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice(struct w_iface *_this, int32_t iDefinition, uint64_t *pPrice) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iDefinition = iDefinition, .pPrice = pPrice, }; @@ -840,22 +840,22 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_GetItemPrice( return params._ret; } -uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties(struct w_steam_iface *_this) +uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties(struct w_iface *_this) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V002_StartUpdateProperties, ¶ms ); return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty(struct w_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemoveProperty_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .nItemID = nItemID, .pchPropertyName = pchPropertyName, @@ -866,11 +866,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_RemovePropert return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, const char *pchPropertyValue) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty(struct w_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, const char *pchPropertyValue) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .nItemID = nItemID, .pchPropertyName = pchPropertyName, @@ -883,11 +883,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty(s return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, int8_t bValue) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2(struct w_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, int8_t bValue) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .nItemID = nItemID, .pchPropertyName = pchPropertyName, @@ -899,11 +899,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_2 return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, int64_t nValue) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3(struct w_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, int64_t nValue) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .nItemID = nItemID, .pchPropertyName = pchPropertyName, @@ -915,11 +915,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_3 return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, float flValue) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4(struct w_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, float flValue) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .nItemID = nItemID, .pchPropertyName = pchPropertyName, @@ -931,11 +931,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SetProperty_4 return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties(struct w_steam_iface *_this, uint64_t handle, int32_t *pResultHandle) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties(struct w_iface *_this, uint64_t handle, int32_t *pResultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V002_SubmitUpdateProperties_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pResultHandle = pResultHandle, }; @@ -990,9 +990,9 @@ __ASM_BLOCK_BEGIN(winISteamInventory_STEAMINVENTORY_INTERFACE_V002_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V002(void *u_iface) +struct w_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMINVENTORY_INTERFACE_V002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMINVENTORY_INTERFACE_V002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamInventory_STEAMINVENTORY_INTERFACE_V002_vtable, 37, "STEAMINVENTORY_INTERFACE_V002"); r->u_iface = u_iface; @@ -1038,11 +1038,11 @@ DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProp DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties, 16) DEFINE_THISCALL_WRAPPER(winISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem, 12) -uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus(struct w_steam_iface *_this, int32_t resultHandle) +uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus(struct w_iface *_this, int32_t resultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, }; TRACE("%p\n", _this); @@ -1050,11 +1050,11 @@ uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultSt return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems(struct w_steam_iface *_this, int32_t resultHandle, SteamItemDetails_t *pOutItemsArray, uint32_t *punOutItemsArraySize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems(struct w_iface *_this, int32_t resultHandle, SteamItemDetails_t *pOutItemsArray, uint32_t *punOutItemsArraySize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, .pOutItemsArray = pOutItemsArray, .punOutItemsArraySize = punOutItemsArraySize, @@ -1064,11 +1064,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItem return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty(struct w_steam_iface *_this, int32_t resultHandle, uint32_t unItemIndex, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty(struct w_iface *_this, int32_t resultHandle, uint32_t unItemIndex, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItemProperty_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, .unItemIndex = unItemIndex, .pchPropertyName = pchPropertyName, @@ -1081,11 +1081,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultItem return params._ret; } -uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp(struct w_steam_iface *_this, int32_t resultHandle) +uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp(struct w_iface *_this, int32_t resultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, }; TRACE("%p\n", _this); @@ -1093,11 +1093,11 @@ uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetResultTi return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID(struct w_steam_iface *_this, int32_t resultHandle, CSteamID steamIDExpected) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID(struct w_iface *_this, int32_t resultHandle, CSteamID steamIDExpected) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, .steamIDExpected = steamIDExpected, }; @@ -1106,22 +1106,22 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_CheckResultSt return params._ret; } -void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult(struct w_steam_iface *_this, int32_t resultHandle) +void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult(struct w_iface *_this, int32_t resultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DestroyResult, ¶ms ); } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems(struct w_steam_iface *_this, int32_t *pResultHandle) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems(struct w_iface *_this, int32_t *pResultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, }; TRACE("%p\n", _this); @@ -1129,11 +1129,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetAllItems(s return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID(struct w_steam_iface *_this, int32_t *pResultHandle, const uint64_t *pInstanceIDs, uint32_t unCountInstanceIDs) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID(struct w_iface *_this, int32_t *pResultHandle, const uint64_t *pInstanceIDs, uint32_t unCountInstanceIDs) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .pInstanceIDs = pInstanceIDs, .unCountInstanceIDs = unCountInstanceIDs, @@ -1143,11 +1143,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsByID( return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult(struct w_steam_iface *_this, int32_t resultHandle, void *pOutBuffer, uint32_t *punOutBufferSize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult(struct w_iface *_this, int32_t resultHandle, void *pOutBuffer, uint32_t *punOutBufferSize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .resultHandle = resultHandle, .pOutBuffer = pOutBuffer, .punOutBufferSize = punOutBufferSize, @@ -1157,11 +1157,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SerializeResu return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult(struct w_steam_iface *_this, int32_t *pOutResultHandle, const void *pBuffer, uint32_t unBufferSize, int8_t bRESERVED_MUST_BE_FALSE) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult(struct w_iface *_this, int32_t *pOutResultHandle, const void *pBuffer, uint32_t unBufferSize, int8_t bRESERVED_MUST_BE_FALSE) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pOutResultHandle = pOutResultHandle, .pBuffer = pBuffer, .unBufferSize = unBufferSize, @@ -1172,11 +1172,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_DeserializeRe return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems(struct w_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .pArrayItemDefs = pArrayItemDefs, .punArrayQuantity = punArrayQuantity, @@ -1187,11 +1187,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GenerateItems return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems(struct w_iface *_this, int32_t *pResultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, }; TRACE("%p\n", _this); @@ -1199,11 +1199,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GrantPromoIte return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t itemDef) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem(struct w_iface *_this, int32_t *pResultHandle, int32_t itemDef) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .itemDef = itemDef, }; @@ -1212,11 +1212,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItem( return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, uint32_t unArrayLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems(struct w_iface *_this, int32_t *pResultHandle, const int32_t *pArrayItemDefs, uint32_t unArrayLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .pArrayItemDefs = pArrayItemDefs, .unArrayLength = unArrayLength, @@ -1226,11 +1226,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_AddPromoItems return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemConsume, uint32_t unQuantity) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem(struct w_iface *_this, int32_t *pResultHandle, uint64_t itemConsume, uint32_t unQuantity) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .itemConsume = itemConsume, .unQuantity = unQuantity, @@ -1240,11 +1240,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_ConsumeItem(s return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems(struct w_steam_iface *_this, int32_t *pResultHandle, const int32_t *pArrayGenerate, const uint32_t *punArrayGenerateQuantity, uint32_t unArrayGenerateLength, const uint64_t *pArrayDestroy, const uint32_t *punArrayDestroyQuantity, uint32_t unArrayDestroyLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems(struct w_iface *_this, int32_t *pResultHandle, const int32_t *pArrayGenerate, const uint32_t *punArrayGenerateQuantity, uint32_t unArrayGenerateLength, const uint64_t *pArrayDestroy, const uint32_t *punArrayDestroyQuantity, uint32_t unArrayDestroyLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .pArrayGenerate = pArrayGenerate, .punArrayGenerateQuantity = punArrayGenerateQuantity, @@ -1258,11 +1258,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_ExchangeItems return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity(struct w_steam_iface *_this, int32_t *pResultHandle, uint64_t itemIdSource, uint32_t unQuantity, uint64_t itemIdDest) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity(struct w_iface *_this, int32_t *pResultHandle, uint64_t itemIdSource, uint32_t unQuantity, uint64_t itemIdDest) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQuantity_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .itemIdSource = itemIdSource, .unQuantity = unQuantity, @@ -1273,21 +1273,21 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TransferItemQ return params._ret; } -void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat(struct w_steam_iface *_this) +void __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat(struct w_iface *_this) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SendItemDropHeartbeat, ¶ms ); } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop(struct w_steam_iface *_this, int32_t *pResultHandle, int32_t dropListDefinition) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop(struct w_iface *_this, int32_t *pResultHandle, int32_t dropListDefinition) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDrop_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .dropListDefinition = dropListDefinition, }; @@ -1296,11 +1296,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TriggerItemDr return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems(struct w_steam_iface *_this, int32_t *pResultHandle, CSteamID steamIDTradePartner, const uint64_t *pArrayGive, const uint32_t *pArrayGiveQuantity, uint32_t nArrayGiveLength, const uint64_t *pArrayGet, const uint32_t *pArrayGetQuantity, uint32_t nArrayGetLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems(struct w_iface *_this, int32_t *pResultHandle, CSteamID steamIDTradePartner, const uint64_t *pArrayGive, const uint32_t *pArrayGiveQuantity, uint32_t nArrayGiveLength, const uint64_t *pArrayGet, const uint32_t *pArrayGetQuantity, uint32_t nArrayGetLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .steamIDTradePartner = steamIDTradePartner, .pArrayGive = pArrayGive, @@ -1315,22 +1315,22 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_TradeItems(st return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions(struct w_steam_iface *_this) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions(struct w_iface *_this) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_LoadItemDefinitions, ¶ms ); return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs(struct w_steam_iface *_this, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs(struct w_iface *_this, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pItemDefIDs = pItemDefIDs, .punItemDefIDsArraySize = punItemDefIDsArraySize, }; @@ -1339,11 +1339,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefini return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty(struct w_steam_iface *_this, int32_t iDefinition, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty(struct w_iface *_this, int32_t iDefinition, const char *pchPropertyName, char *pchValueBuffer, uint32_t *punValueBufferSizeOut) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefinitionProperty_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iDefinition = iDefinition, .pchPropertyName = pchPropertyName, .pchValueBuffer = pchValueBuffer, @@ -1355,11 +1355,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemDefini return params._ret; } -uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs(struct w_steam_iface *_this, CSteamID steamID) +uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs(struct w_iface *_this, CSteamID steamID) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestEligiblePromoItemDefinitionsIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); @@ -1367,11 +1367,11 @@ uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestElig return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs(struct w_steam_iface *_this, CSteamID steamID, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs(struct w_iface *_this, CSteamID steamID, int32_t *pItemDefIDs, uint32_t *punItemDefIDsArraySize) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePromoItemDefinitionIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .pItemDefIDs = pItemDefIDs, .punItemDefIDsArraySize = punItemDefIDsArraySize, @@ -1381,11 +1381,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetEligiblePr return params._ret; } -uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase(struct w_steam_iface *_this, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) +uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase(struct w_iface *_this, const int32_t *pArrayItemDefs, const uint32_t *punArrayQuantity, uint32_t unArrayLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurchase_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pArrayItemDefs = pArrayItemDefs, .punArrayQuantity = punArrayQuantity, .unArrayLength = unArrayLength, @@ -1395,33 +1395,33 @@ uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartPurcha return params._ret; } -uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices(struct w_steam_iface *_this) +uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices(struct w_iface *_this) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RequestPrices, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices(struct w_steam_iface *_this) +uint32_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices(struct w_iface *_this) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetNumItemsWithPrices, ¶ms ); return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices(struct w_steam_iface *_this, int32_t *pArrayItemDefs, uint64_t *pCurrentPrices, uint64_t *pBasePrices, uint32_t unArrayLength) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices(struct w_iface *_this, int32_t *pArrayItemDefs, uint64_t *pCurrentPrices, uint64_t *pBasePrices, uint32_t unArrayLength) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithPrices_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pArrayItemDefs = pArrayItemDefs, .pCurrentPrices = pCurrentPrices, .pBasePrices = pBasePrices, @@ -1432,11 +1432,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemsWithP return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice(struct w_steam_iface *_this, int32_t iDefinition, uint64_t *pCurrentPrice, uint64_t *pBasePrice) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice(struct w_iface *_this, int32_t iDefinition, uint64_t *pCurrentPrice, uint64_t *pBasePrice) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iDefinition = iDefinition, .pCurrentPrice = pCurrentPrice, .pBasePrice = pBasePrice, @@ -1446,22 +1446,22 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_GetItemPrice( return params._ret; } -uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties(struct w_steam_iface *_this) +uint64_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties(struct w_iface *_this) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamInventory_STEAMINVENTORY_INTERFACE_V003_StartUpdateProperties, ¶ms ); return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty(struct w_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemoveProperty_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .nItemID = nItemID, .pchPropertyName = pchPropertyName, @@ -1472,11 +1472,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_RemovePropert return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, const char *pchPropertyValue) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty(struct w_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, const char *pchPropertyValue) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .nItemID = nItemID, .pchPropertyName = pchPropertyName, @@ -1489,11 +1489,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty(s return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, int8_t bValue) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2(struct w_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, int8_t bValue) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .nItemID = nItemID, .pchPropertyName = pchPropertyName, @@ -1505,11 +1505,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_2 return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, int64_t nValue) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3(struct w_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, int64_t nValue) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .nItemID = nItemID, .pchPropertyName = pchPropertyName, @@ -1521,11 +1521,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_3 return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4(struct w_steam_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, float flValue) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4(struct w_iface *_this, uint64_t handle, uint64_t nItemID, const char *pchPropertyName, float flValue) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .nItemID = nItemID, .pchPropertyName = pchPropertyName, @@ -1537,11 +1537,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SetProperty_4 return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties(struct w_steam_iface *_this, uint64_t handle, int32_t *pResultHandle) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties(struct w_iface *_this, uint64_t handle, int32_t *pResultHandle) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateProperties_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pResultHandle = pResultHandle, }; @@ -1550,11 +1550,11 @@ int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_SubmitUpdateP return params._ret; } -int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem(struct w_steam_iface *_this, int32_t *pResultHandle, const char *pchItemToken) +int8_t __thiscall winISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem(struct w_iface *_this, int32_t *pResultHandle, const char *pchItemToken) { struct ISteamInventory_STEAMINVENTORY_INTERFACE_V003_InspectItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pResultHandle = pResultHandle, .pchItemToken = pchItemToken, }; @@ -1611,9 +1611,9 @@ __ASM_BLOCK_BEGIN(winISteamInventory_STEAMINVENTORY_INTERFACE_V003_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V003(void *u_iface) +struct w_iface *create_winISteamInventory_STEAMINVENTORY_INTERFACE_V003( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMINVENTORY_INTERFACE_V003"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMINVENTORY_INTERFACE_V003"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamInventory_STEAMINVENTORY_INTERFACE_V003_vtable, 38, "STEAMINVENTORY_INTERFACE_V003"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamMasterServerUpdater.c b/lsteamclient/winISteamMasterServerUpdater.c index 8bc6b122..58c12222 100644 --- a/lsteamclient/winISteamMasterServerUpdater.c +++ b/lsteamclient/winISteamMasterServerUpdater.c @@ -18,33 +18,33 @@ DEFINE_THISCALL_WRAPPER(winISteamMasterServerUpdater_SteamMasterServerUpdater001 DEFINE_THISCALL_WRAPPER(winISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers, 4) DEFINE_THISCALL_WRAPPER(winISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress, 16) -void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive(struct w_steam_iface *_this, int8_t bActive) +void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive(struct w_iface *_this, int8_t bActive) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bActive = bActive, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetActive, ¶ms ); } -void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval(struct w_steam_iface *_this, int32_t iHeartbeatInterval) +void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval(struct w_iface *_this, int32_t iHeartbeatInterval) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iHeartbeatInterval = iHeartbeatInterval, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetHeartbeatInterval, ¶ms ); } -int8_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket(struct w_steam_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) +int8_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket(struct w_iface *_this, const void *pData, int32_t cbData, uint32_t srcIP, uint16_t srcPort) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_HandleIncomingPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pData = pData, .cbData = cbData, .srcIP = srcIP, @@ -55,11 +55,11 @@ int8_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_Handl return params._ret; } -int32_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket(struct w_steam_iface *_this, void *pOut, int32_t cbMaxOut, uint32_t *pNetAdr, uint16_t *pPort) +int32_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket(struct w_iface *_this, void *pOut, int32_t cbMaxOut, uint32_t *pNetAdr, uint16_t *pPort) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNextOutgoingPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pOut = pOut, .cbMaxOut = cbMaxOut, .pNetAdr = pNetAdr, @@ -70,11 +70,11 @@ int32_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_GetN return params._ret; } -void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData(struct w_steam_iface *_this, uint16_t nProtocolVersion, int8_t bDedicatedServer, const char *pRegionName, const char *pProductName, uint16_t nMaxReportedClients, int8_t bPasswordProtected, const char *pGameDescription) +void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData(struct w_iface *_this, uint16_t nProtocolVersion, int8_t bDedicatedServer, const char *pRegionName, const char *pProductName, uint16_t nMaxReportedClients, int8_t bPasswordProtected, const char *pGameDescription) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nProtocolVersion = nProtocolVersion, .bDedicatedServer = bDedicatedServer, .pRegionName = pRegionName, @@ -90,21 +90,21 @@ void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasi STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetBasicServerData, ¶ms ); } -void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues(struct w_steam_iface *_this) +void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues(struct w_iface *_this) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_ClearAllKeyValues, ¶ms ); } -void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue(struct w_steam_iface *_this, const char *pKey, const char *pValue) +void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue(struct w_iface *_this, const char *pKey, const char *pValue) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pKey = pKey, .pValue = pValue, }; @@ -114,42 +114,42 @@ void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyV STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_SetKeyValue, ¶ms ); } -void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown(struct w_steam_iface *_this) +void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown(struct w_iface *_this) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_NotifyShutdown, ¶ms ); } -int8_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested(struct w_steam_iface *_this) +int8_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested(struct w_iface *_this) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_WasRestartRequested, ¶ms ); return params._ret; } -void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat(struct w_steam_iface *_this) +void __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat(struct w_iface *_this) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_ForceHeartbeat, ¶ms ); } -int8_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer(struct w_steam_iface *_this, const char *pServerAddress) +int8_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer(struct w_iface *_this, const char *pServerAddress) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMasterServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pServerAddress = pServerAddress, }; TRACE("%p\n", _this); @@ -158,11 +158,11 @@ int8_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_AddMa return params._ret; } -int8_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer(struct w_steam_iface *_this, const char *pServerAddress) +int8_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer(struct w_iface *_this, const char *pServerAddress) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_RemoveMasterServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pServerAddress = pServerAddress, }; TRACE("%p\n", _this); @@ -171,22 +171,22 @@ int8_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_Remov return params._ret; } -int32_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers(struct w_steam_iface *_this) +int32_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers(struct w_iface *_this) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetNumMasterServers, ¶ms ); return params._ret; } -int32_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress(struct w_steam_iface *_this, int32_t iServer, char *pOut, int32_t outBufferSize) +int32_t __thiscall winISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress(struct w_iface *_this, int32_t iServer, char *pOut, int32_t outBufferSize) { struct ISteamMasterServerUpdater_SteamMasterServerUpdater001_GetMasterServerAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iServer = iServer, .pOut = pOut, .outBufferSize = outBufferSize, @@ -219,9 +219,9 @@ __ASM_BLOCK_BEGIN(winISteamMasterServerUpdater_SteamMasterServerUpdater001_vtabl ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamMasterServerUpdater_SteamMasterServerUpdater001(void *u_iface) +struct w_iface *create_winISteamMasterServerUpdater_SteamMasterServerUpdater001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamMasterServerUpdater001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMasterServerUpdater001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamMasterServerUpdater_SteamMasterServerUpdater001_vtable, 14, "SteamMasterServerUpdater001"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamMatchmaking.c b/lsteamclient/winISteamMatchmaking.c index 07ee7e8e..c0acd673 100644 --- a/lsteamclient/winISteamMatchmaking.c +++ b/lsteamclient/winISteamMatchmaking.c @@ -26,22 +26,22 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMs DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry, 32) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking001_RequestLobbyData, 12) -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGameCount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame(struct w_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iGame = iGame, .pnAppID = pnAppID, .pnIP = pnIP, @@ -54,11 +54,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame(struc return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -70,11 +70,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame(stru return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -85,11 +85,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2(struct w_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iGame = iGame, .pnAppID = pnAppID, .pnIP = pnIP, @@ -103,11 +103,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetFavoriteGame2(stru return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -120,11 +120,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_AddFavoriteGame2(str return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -136,11 +136,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_RemoveFavoriteGame2(s return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking001_RequestLobbyList(struct w_steam_iface *_this, uint64_t ulGameID, MatchMakingKeyValuePair_t *pFilters, uint32_t nFilters) +void __thiscall winISteamMatchmaking_SteamMatchMaking001_RequestLobbyList(struct w_iface *_this, uint64_t ulGameID, MatchMakingKeyValuePair_t *pFilters, uint32_t nFilters) { struct ISteamMatchmaking_SteamMatchMaking001_RequestLobbyList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulGameID = ulGameID, .pFilters = pFilters, .nFilters = nFilters, @@ -149,11 +149,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking001_RequestLobbyList(struct STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_RequestLobbyList, ¶ms ); } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iLobby) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iLobby) { struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iLobby = iLobby, }; @@ -162,11 +162,11 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyByIndex(s return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking001_CreateLobby(struct w_steam_iface *_this, uint64_t ulGameID, int8_t bPrivate) +void __thiscall winISteamMatchmaking_SteamMatchMaking001_CreateLobby(struct w_iface *_this, uint64_t ulGameID, int8_t bPrivate) { struct ISteamMatchmaking_SteamMatchMaking001_CreateLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulGameID = ulGameID, .bPrivate = bPrivate, }; @@ -174,33 +174,33 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking001_CreateLobby(struct w_st STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_CreateLobby, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking001_JoinLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamMatchmaking_SteamMatchMaking001_JoinLobby(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking001_JoinLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_JoinLobby, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking001_LeaveLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamMatchmaking_SteamMatchMaking001_LeaveLobby(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking001_LeaveLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking001_LeaveLobby, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { struct ISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDInvitee = steamIDInvitee, }; @@ -209,11 +209,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_InviteUserToLobby(str return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -221,11 +221,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetNumLobbyMembers(s return params._ret; } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) { struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, .iMember = iMember, @@ -235,11 +235,11 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberByI return params._ret; } -const char * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyData(struct w_steam_iface *_this, CSteamID SteamIDLobby, const char *pchKey) +const char * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyData(struct w_iface *_this, CSteamID SteamIDLobby, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .SteamIDLobby = SteamIDLobby, .pchKey = pchKey, }; @@ -249,11 +249,11 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyData(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_SetLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, .pchValue = pchValue, @@ -265,11 +265,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_SetLobbyData(struct w return params._ret; } -const char * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) +const char * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDUser = steamIDUser, .pchKey = pchKey, @@ -280,11 +280,11 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyMemberD return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, .pchValue = pchValue, @@ -296,11 +296,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_SetLobbyMemberData(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg(struct w_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pvMsgBody = pvMsgBody, .cubMsgBody = cubMsgBody, @@ -310,11 +310,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_SendLobbyChatMsg(stru return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iChatID, CSteamID *pSteamIDUser, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry(struct w_iface *_this, CSteamID steamIDLobby, int32_t iChatID, CSteamID *pSteamIDUser, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .iChatID = iChatID, .pSteamIDUser = pSteamIDUser, @@ -327,11 +327,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking001_GetLobbyChatEntry(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking001_RequestLobbyData(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking001_RequestLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -370,9 +370,9 @@ __ASM_BLOCK_BEGIN(winISteamMatchmaking_SteamMatchMaking001_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking001(void *u_iface) +struct w_iface *create_winISteamMatchmaking_SteamMatchMaking001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamMatchMaking001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMaking001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamMatchmaking_SteamMatchMaking001_vtable, 22, "SteamMatchMaking001"); r->u_iface = u_iface; @@ -400,22 +400,22 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEnt DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking002_RequestLobbyData, 12) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer, 28) -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGameCount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame(struct w_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iGame = iGame, .pnAppID = pnAppID, .pnIP = pnIP, @@ -429,11 +429,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_GetFavoriteGame(struc return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -446,11 +446,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking002_AddFavoriteGame(stru return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -462,21 +462,21 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_RemoveFavoriteGame(st return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking002_RequestLobbyList(struct w_steam_iface *_this) +void __thiscall winISteamMatchmaking_SteamMatchMaking002_RequestLobbyList(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking002_RequestLobbyList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_RequestLobbyList, ¶ms ); } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iLobby) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iLobby) { struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iLobby = iLobby, }; @@ -485,44 +485,44 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyByIndex(s return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking002_CreateLobby(struct w_steam_iface *_this, int8_t bPrivate) +void __thiscall winISteamMatchmaking_SteamMatchMaking002_CreateLobby(struct w_iface *_this, int8_t bPrivate) { struct ISteamMatchmaking_SteamMatchMaking002_CreateLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bPrivate = bPrivate, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_CreateLobby, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking002_JoinLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamMatchmaking_SteamMatchMaking002_JoinLobby(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking002_JoinLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_JoinLobby, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking002_LeaveLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamMatchmaking_SteamMatchMaking002_LeaveLobby(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking002_LeaveLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_LeaveLobby, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { struct ISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDInvitee = steamIDInvitee, }; @@ -531,11 +531,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_InviteUserToLobby(str return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -543,11 +543,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking002_GetNumLobbyMembers(s return params._ret; } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) { struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, .iMember = iMember, @@ -557,11 +557,11 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByI return params._ret; } -const char * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) +const char * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; @@ -571,11 +571,11 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyData(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_SetLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, .pchValue = pchValue, @@ -587,11 +587,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_SetLobbyData(struct w return params._ret; } -const char * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) +const char * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDUser = steamIDUser, .pchKey = pchKey, @@ -602,11 +602,11 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberD return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +void __thiscall winISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, .pchValue = pchValue, @@ -617,11 +617,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking002_SetLobbyMemberData, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg(struct w_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pvMsgBody = pvMsgBody, .cubMsgBody = cubMsgBody, @@ -631,11 +631,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_SendLobbyChatMsg(stru return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iChatID, CSteamID *pSteamIDUser, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry(struct w_iface *_this, CSteamID steamIDLobby, int32_t iChatID, CSteamID *pSteamIDUser, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .iChatID = iChatID, .pSteamIDUser = pSteamIDUser, @@ -648,11 +648,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking002_GetLobbyChatEntry(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_RequestLobbyData(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking002_RequestLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -660,11 +660,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking002_RequestLobbyData(stru return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) +void __thiscall winISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer(struct w_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking002_SetLobbyGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .unGameServerIP = unGameServerIP, .unGameServerPort = unGameServerPort, @@ -703,9 +703,9 @@ __ASM_BLOCK_BEGIN(winISteamMatchmaking_SteamMatchMaking002_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking002(void *u_iface) +struct w_iface *create_winISteamMatchmaking_SteamMatchMaking002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamMatchMaking002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMaking002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamMatchmaking_SteamMatchMaking002_vtable, 20, "SteamMatchMaking002"); r->u_iface = u_iface; @@ -741,22 +741,22 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberL DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled, 16) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies, 4) -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGameCount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame(struct w_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iGame = iGame, .pnAppID = pnAppID, .pnIP = pnIP, @@ -770,11 +770,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetFavoriteGame(struc return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -787,11 +787,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_AddFavoriteGame(stru return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -803,21 +803,21 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_RemoveFavoriteGame(st return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking003_RequestLobbyList(struct w_steam_iface *_this) +void __thiscall winISteamMatchmaking_SteamMatchMaking003_RequestLobbyList(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking003_RequestLobbyList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_RequestLobbyList, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, const char *pchValueToMatch) +void __thiscall winISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter(struct w_iface *_this, const char *pchKeyToMatch, const char *pchValueToMatch) { struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .pchValueToMatch = pchValueToMatch, }; @@ -827,11 +827,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilt STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, int32_t nValueToMatch, int32_t nComparisonType) +void __thiscall winISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter(struct w_iface *_this, const char *pchKeyToMatch, int32_t nValueToMatch, int32_t nComparisonType) { struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .nValueToMatch = nValueToMatch, .nComparisonType = nComparisonType, @@ -841,21 +841,21 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNume STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListNumericalFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter(struct w_steam_iface *_this) +void __thiscall winISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_AddRequestLobbyListSlotsAvailableFilter, ¶ms ); } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iLobby) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iLobby) { struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iLobby = iLobby, }; @@ -864,44 +864,44 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyByIndex(s return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking003_CreateLobby(struct w_steam_iface *_this, int8_t bPrivate) +void __thiscall winISteamMatchmaking_SteamMatchMaking003_CreateLobby(struct w_iface *_this, int8_t bPrivate) { struct ISteamMatchmaking_SteamMatchMaking003_CreateLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bPrivate = bPrivate, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_CreateLobby, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking003_JoinLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamMatchmaking_SteamMatchMaking003_JoinLobby(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking003_JoinLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_JoinLobby, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking003_LeaveLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamMatchmaking_SteamMatchMaking003_LeaveLobby(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking003_LeaveLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_LeaveLobby, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { struct ISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDInvitee = steamIDInvitee, }; @@ -910,11 +910,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_InviteUserToLobby(str return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -922,11 +922,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetNumLobbyMembers(s return params._ret; } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) { struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, .iMember = iMember, @@ -936,11 +936,11 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberByI return params._ret; } -const char * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) +const char * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; @@ -950,11 +950,11 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyData(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, .pchValue = pchValue, @@ -966,11 +966,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyData(struct w return params._ret; } -const char * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) +const char * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDUser = steamIDUser, .pchKey = pchKey, @@ -981,11 +981,11 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberD return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, .pchValue = pchValue, @@ -996,11 +996,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberData, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg(struct w_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pvMsgBody = pvMsgBody, .cubMsgBody = cubMsgBody, @@ -1010,11 +1010,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_SendLobbyChatMsg(stru return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iChatID, CSteamID *pSteamIDUser, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry(struct w_iface *_this, CSteamID steamIDLobby, int32_t iChatID, CSteamID *pSteamIDUser, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .iChatID = iChatID, .pSteamIDUser = pSteamIDUser, @@ -1027,11 +1027,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyChatEntry(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_RequestLobbyData(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking003_RequestLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -1039,11 +1039,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_RequestLobbyData(stru return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) +void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer(struct w_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .unGameServerIP = unGameServerIP, .unGameServerPort = unGameServerPort, @@ -1053,11 +1053,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_SetLobbyGameServer, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer(struct w_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .punGameServerIP = punGameServerIP, .punGameServerPort = punGameServerPort, @@ -1068,11 +1068,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyGameServer(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit(struct w_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .cMaxMembers = cMaxMembers, }; @@ -1081,11 +1081,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyMemberLimit(s return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -1093,11 +1093,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking003_GetLobbyMemberLimit( return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled(struct w_steam_iface *_this, CSteamID steamIDLobby, int8_t bVoiceEnabled) +void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled(struct w_iface *_this, CSteamID steamIDLobby, int8_t bVoiceEnabled) { struct ISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .bVoiceEnabled = bVoiceEnabled, }; @@ -1105,11 +1105,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled(st STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_SetLobbyVoiceEnabled, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies(struct w_steam_iface *_this) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking003_RequestFriendsLobbies, ¶ms ); @@ -1153,9 +1153,9 @@ __ASM_BLOCK_BEGIN(winISteamMatchmaking_SteamMatchMaking003_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking003(void *u_iface) +struct w_iface *create_winISteamMatchmaking_SteamMatchMaking003( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamMatchMaking003"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMaking003"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamMatchmaking_SteamMatchMaking003_vtable, 28, "SteamMatchMaking003"); r->u_iface = u_iface; @@ -1190,22 +1190,22 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberL DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit, 12) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies, 4) -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGameCount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame(struct w_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iGame = iGame, .pnAppID = pnAppID, .pnIP = pnIP, @@ -1219,11 +1219,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetFavoriteGame(struc return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -1236,11 +1236,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_AddFavoriteGame(stru return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -1252,21 +1252,21 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_RemoveFavoriteGame(st return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking004_RequestLobbyList(struct w_steam_iface *_this) +void __thiscall winISteamMatchmaking_SteamMatchMaking004_RequestLobbyList(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking004_RequestLobbyList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_RequestLobbyList, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, const char *pchValueToMatch) +void __thiscall winISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter(struct w_iface *_this, const char *pchKeyToMatch, const char *pchValueToMatch) { struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .pchValueToMatch = pchValueToMatch, }; @@ -1276,11 +1276,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilt STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, int32_t nValueToMatch, int32_t nComparisonType) +void __thiscall winISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter(struct w_iface *_this, const char *pchKeyToMatch, int32_t nValueToMatch, int32_t nComparisonType) { struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .nValueToMatch = nValueToMatch, .nComparisonType = nComparisonType, @@ -1290,21 +1290,21 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNume STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListNumericalFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter(struct w_steam_iface *_this) +void __thiscall winISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_AddRequestLobbyListSlotsAvailableFilter, ¶ms ); } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iLobby) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iLobby) { struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iLobby = iLobby, }; @@ -1313,44 +1313,44 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyByIndex(s return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking004_CreateLobby(struct w_steam_iface *_this, int8_t bPrivate) +void __thiscall winISteamMatchmaking_SteamMatchMaking004_CreateLobby(struct w_iface *_this, int8_t bPrivate) { struct ISteamMatchmaking_SteamMatchMaking004_CreateLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bPrivate = bPrivate, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_CreateLobby, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking004_JoinLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamMatchmaking_SteamMatchMaking004_JoinLobby(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking004_JoinLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_JoinLobby, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking004_LeaveLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamMatchmaking_SteamMatchMaking004_LeaveLobby(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking004_LeaveLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_LeaveLobby, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { struct ISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDInvitee = steamIDInvitee, }; @@ -1359,11 +1359,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_InviteUserToLobby(str return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -1371,11 +1371,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetNumLobbyMembers(s return params._ret; } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) { struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, .iMember = iMember, @@ -1385,11 +1385,11 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberByI return params._ret; } -const char * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) +const char * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; @@ -1399,11 +1399,11 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyData(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, .pchValue = pchValue, @@ -1415,11 +1415,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyData(struct w return params._ret; } -const char * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) +const char * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDUser = steamIDUser, .pchKey = pchKey, @@ -1430,11 +1430,11 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberD return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +void __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, .pchValue = pchValue, @@ -1445,11 +1445,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberData, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg(struct w_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pvMsgBody = pvMsgBody, .cubMsgBody = cubMsgBody, @@ -1459,11 +1459,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_SendLobbyChatMsg(stru return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iChatID, CSteamID *pSteamIDUser, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry(struct w_iface *_this, CSteamID steamIDLobby, int32_t iChatID, CSteamID *pSteamIDUser, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .iChatID = iChatID, .pSteamIDUser = pSteamIDUser, @@ -1476,11 +1476,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyChatEntry(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_RequestLobbyData(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking004_RequestLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -1488,11 +1488,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_RequestLobbyData(stru return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) +void __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer(struct w_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .unGameServerIP = unGameServerIP, .unGameServerPort = unGameServerPort, @@ -1502,11 +1502,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_SetLobbyGameServer, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer(struct w_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .punGameServerIP = punGameServerIP, .punGameServerPort = punGameServerPort, @@ -1517,11 +1517,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyGameServer(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit(struct w_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { struct ISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .cMaxMembers = cMaxMembers, }; @@ -1530,11 +1530,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_SetLobbyMemberLimit(s return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -1542,11 +1542,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking004_GetLobbyMemberLimit( return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies(struct w_steam_iface *_this) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking004_RequestFriendsLobbies, ¶ms ); @@ -1589,9 +1589,9 @@ __ASM_BLOCK_BEGIN(winISteamMatchmaking_SteamMatchMaking004_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking004(void *u_iface) +struct w_iface *create_winISteamMatchmaking_SteamMatchMaking004( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamMatchMaking004"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMaking004"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamMatchmaking_SteamMatchMaking004_vtable, 27, "SteamMatchMaking004"); r->u_iface = u_iface; @@ -1630,22 +1630,22 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking005_SetLobbyType, 1 DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner, 16) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance, 12) -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGameCount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame(struct w_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iGame = iGame, .pnAppID = pnAppID, .pnIP = pnIP, @@ -1659,11 +1659,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetFavoriteGame(struc return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -1676,11 +1676,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_AddFavoriteGame(stru return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -1692,21 +1692,21 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_RemoveFavoriteGame(st return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking005_RequestLobbyList(struct w_steam_iface *_this) +void __thiscall winISteamMatchmaking_SteamMatchMaking005_RequestLobbyList(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking005_RequestLobbyList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_RequestLobbyList, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, const char *pchValueToMatch) +void __thiscall winISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter(struct w_iface *_this, const char *pchKeyToMatch, const char *pchValueToMatch) { struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .pchValueToMatch = pchValueToMatch, }; @@ -1716,11 +1716,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilt STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, int32_t nValueToMatch, int32_t nComparisonType) +void __thiscall winISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter(struct w_iface *_this, const char *pchKeyToMatch, int32_t nValueToMatch, int32_t nComparisonType) { struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .nValueToMatch = nValueToMatch, .nComparisonType = nComparisonType, @@ -1730,21 +1730,21 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNume STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNumericalFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter(struct w_steam_iface *_this) +void __thiscall winISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListSlotsAvailableFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, int32_t nValueToBeCloseTo) +void __thiscall winISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter(struct w_iface *_this, const char *pchKeyToMatch, int32_t nValueToBeCloseTo) { struct ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .nValueToBeCloseTo = nValueToBeCloseTo, }; @@ -1753,11 +1753,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNear STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_AddRequestLobbyListNearValueFilter, ¶ms ); } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iLobby) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iLobby) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iLobby = iLobby, }; @@ -1766,44 +1766,44 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyByIndex(s return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking005_CreateLobby(struct w_steam_iface *_this, uint32_t eLobbyType) +void __thiscall winISteamMatchmaking_SteamMatchMaking005_CreateLobby(struct w_iface *_this, uint32_t eLobbyType) { struct ISteamMatchmaking_SteamMatchMaking005_CreateLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eLobbyType = eLobbyType, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_CreateLobby, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking005_JoinLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamMatchmaking_SteamMatchMaking005_JoinLobby(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking005_JoinLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_JoinLobby, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking005_LeaveLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamMatchmaking_SteamMatchMaking005_LeaveLobby(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking005_LeaveLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_LeaveLobby, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { struct ISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDInvitee = steamIDInvitee, }; @@ -1812,11 +1812,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_InviteUserToLobby(str return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -1824,11 +1824,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetNumLobbyMembers(s return params._ret; } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, .iMember = iMember, @@ -1838,11 +1838,11 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberByI return params._ret; } -const char * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) +const char * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; @@ -1852,11 +1852,11 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyData(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, .pchValue = pchValue, @@ -1868,11 +1868,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyData(struct w return params._ret; } -const char * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) +const char * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDUser = steamIDUser, .pchKey = pchKey, @@ -1883,11 +1883,11 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberD return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +void __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, .pchValue = pchValue, @@ -1898,11 +1898,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberData, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg(struct w_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pvMsgBody = pvMsgBody, .cubMsgBody = cubMsgBody, @@ -1912,11 +1912,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_SendLobbyChatMsg(stru return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iChatID, CSteamID *pSteamIDUser, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry(struct w_iface *_this, CSteamID steamIDLobby, int32_t iChatID, CSteamID *pSteamIDUser, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .iChatID = iChatID, .pSteamIDUser = pSteamIDUser, @@ -1929,11 +1929,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyChatEntry(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_RequestLobbyData(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking005_RequestLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -1941,11 +1941,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_RequestLobbyData(stru return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) +void __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer(struct w_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .unGameServerIP = unGameServerIP, .unGameServerPort = unGameServerPort, @@ -1955,11 +1955,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_SetLobbyGameServer, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer(struct w_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .punGameServerIP = punGameServerIP, .punGameServerPort = punGameServerPort, @@ -1970,11 +1970,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyGameServer(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit(struct w_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .cMaxMembers = cMaxMembers, }; @@ -1983,11 +1983,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyMemberLimit(s return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -1995,22 +1995,22 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyMemberLimit( return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies(struct w_steam_iface *_this) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking005_RequestFriendsLobbies, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyType(struct w_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) { struct ISteamMatchmaking_SteamMatchMaking005_SetLobbyType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .eLobbyType = eLobbyType, }; @@ -2019,11 +2019,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking005_SetLobbyType(struct w return params._ret; } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, }; @@ -2032,11 +2032,11 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyOwner(str return params._ret; } -float __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance(struct w_steam_iface *_this, CSteamID steamIDLobby) +float __thiscall winISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking005_GetLobbyDistance_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -2084,9 +2084,9 @@ __ASM_BLOCK_BEGIN(winISteamMatchmaking_SteamMatchMaking005_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking005(void *u_iface) +struct w_iface *create_winISteamMatchmaking_SteamMatchMaking005( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamMatchMaking005"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMaking005"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamMatchmaking_SteamMatchMaking005_vtable, 31, "SteamMatchMaking005"); r->u_iface = u_iface; @@ -2122,22 +2122,22 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberL DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking006_SetLobbyType, 16) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner, 16) -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGameCount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame(struct w_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iGame = iGame, .pnAppID = pnAppID, .pnIP = pnIP, @@ -2151,11 +2151,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetFavoriteGame(struc return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -2168,11 +2168,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_AddFavoriteGame(stru return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -2184,22 +2184,22 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_RemoveFavoriteGame(st return params._ret; } -uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking006_RequestLobbyList(struct w_steam_iface *_this) +uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking006_RequestLobbyList(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking006_RequestLobbyList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_RequestLobbyList, ¶ms ); return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, const char *pchValueToMatch) +void __thiscall winISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter(struct w_iface *_this, const char *pchKeyToMatch, const char *pchValueToMatch) { struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .pchValueToMatch = pchValueToMatch, }; @@ -2209,11 +2209,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilt STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, int32_t nValueToMatch, int32_t nComparisonType) +void __thiscall winISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter(struct w_iface *_this, const char *pchKeyToMatch, int32_t nValueToMatch, int32_t nComparisonType) { struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .nValueToMatch = nValueToMatch, .nComparisonType = nComparisonType, @@ -2223,11 +2223,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNume STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNumericalFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, int32_t nValueToBeCloseTo) +void __thiscall winISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter(struct w_iface *_this, const char *pchKeyToMatch, int32_t nValueToBeCloseTo) { struct ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .nValueToBeCloseTo = nValueToBeCloseTo, }; @@ -2236,11 +2236,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNear STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_AddRequestLobbyListNearValueFilter, ¶ms ); } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iLobby) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iLobby) { struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iLobby = iLobby, }; @@ -2249,11 +2249,11 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyByIndex(s return params._ret; } -uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking006_CreateLobby(struct w_steam_iface *_this, uint32_t eLobbyType) +uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking006_CreateLobby(struct w_iface *_this, uint32_t eLobbyType) { struct ISteamMatchmaking_SteamMatchMaking006_CreateLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eLobbyType = eLobbyType, }; TRACE("%p\n", _this); @@ -2261,11 +2261,11 @@ uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking006_CreateLobby(struct return params._ret; } -uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking006_JoinLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) +uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking006_JoinLobby(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking006_JoinLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -2273,22 +2273,22 @@ uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking006_JoinLobby(struct w_ return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking006_LeaveLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamMatchmaking_SteamMatchMaking006_LeaveLobby(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking006_LeaveLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_LeaveLobby, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { struct ISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDInvitee = steamIDInvitee, }; @@ -2297,11 +2297,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_InviteUserToLobby(str return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -2309,11 +2309,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetNumLobbyMembers(s return params._ret; } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) { struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, .iMember = iMember, @@ -2323,11 +2323,11 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberByI return params._ret; } -const char * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) +const char * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; @@ -2337,11 +2337,11 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyData(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, .pchValue = pchValue, @@ -2353,11 +2353,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyData(struct w return params._ret; } -const char * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) +const char * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDUser = steamIDUser, .pchKey = pchKey, @@ -2368,11 +2368,11 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberD return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +void __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, .pchValue = pchValue, @@ -2383,11 +2383,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberData, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg(struct w_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pvMsgBody = pvMsgBody, .cubMsgBody = cubMsgBody, @@ -2397,11 +2397,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_SendLobbyChatMsg(stru return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iChatID, CSteamID *pSteamIDUser, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry(struct w_iface *_this, CSteamID steamIDLobby, int32_t iChatID, CSteamID *pSteamIDUser, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .iChatID = iChatID, .pSteamIDUser = pSteamIDUser, @@ -2414,11 +2414,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyChatEntry(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_RequestLobbyData(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking006_RequestLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -2426,11 +2426,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_RequestLobbyData(stru return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) +void __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer(struct w_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .unGameServerIP = unGameServerIP, .unGameServerPort = unGameServerPort, @@ -2440,11 +2440,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking006_SetLobbyGameServer, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer(struct w_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .punGameServerIP = punGameServerIP, .punGameServerPort = punGameServerPort, @@ -2455,11 +2455,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyGameServer(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit(struct w_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .cMaxMembers = cMaxMembers, }; @@ -2468,11 +2468,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyMemberLimit(s return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -2480,11 +2480,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyMemberLimit( return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyType(struct w_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) { struct ISteamMatchmaking_SteamMatchMaking006_SetLobbyType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .eLobbyType = eLobbyType, }; @@ -2493,11 +2493,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking006_SetLobbyType(struct w return params._ret; } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking006_GetLobbyOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, }; @@ -2543,9 +2543,9 @@ __ASM_BLOCK_BEGIN(winISteamMatchmaking_SteamMatchMaking006_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking006(void *u_iface) +struct w_iface *create_winISteamMatchmaking_SteamMatchMaking006( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamMatchMaking006"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMaking006"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamMatchmaking_SteamMatchMaking006_vtable, 28, "SteamMatchMaking006"); r->u_iface = u_iface; @@ -2587,22 +2587,22 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinabl DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner, 16) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner, 20) -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGameCount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame(struct w_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iGame = iGame, .pnAppID = pnAppID, .pnIP = pnIP, @@ -2616,11 +2616,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetFavoriteGame(struc return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -2633,11 +2633,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_AddFavoriteGame(stru return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -2649,22 +2649,22 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_RemoveFavoriteGame(st return params._ret; } -uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking007_RequestLobbyList(struct w_steam_iface *_this) +uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking007_RequestLobbyList(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking007_RequestLobbyList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_RequestLobbyList, ¶ms ); return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, const char *pchValueToMatch, uint32_t eComparisonType) +void __thiscall winISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter(struct w_iface *_this, const char *pchKeyToMatch, const char *pchValueToMatch, uint32_t eComparisonType) { struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .pchValueToMatch = pchValueToMatch, .eComparisonType = eComparisonType, @@ -2675,11 +2675,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStri STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListStringFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, int32_t nValueToMatch, uint32_t eComparisonType) +void __thiscall winISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter(struct w_iface *_this, const char *pchKeyToMatch, int32_t nValueToMatch, uint32_t eComparisonType) { struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .nValueToMatch = nValueToMatch, .eComparisonType = eComparisonType, @@ -2689,11 +2689,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNume STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNumericalFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, int32_t nValueToBeCloseTo) +void __thiscall winISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter(struct w_iface *_this, const char *pchKeyToMatch, int32_t nValueToBeCloseTo) { struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .nValueToBeCloseTo = nValueToBeCloseTo, }; @@ -2702,22 +2702,22 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNear STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListNearValueFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable(struct w_steam_iface *_this, int32_t nSlotsAvailable) +void __thiscall winISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable(struct w_iface *_this, int32_t nSlotsAvailable) { struct ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nSlotsAvailable = nSlotsAvailable, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_AddRequestLobbyListFilterSlotsAvailable, ¶ms ); } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iLobby) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iLobby) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iLobby = iLobby, }; @@ -2726,11 +2726,11 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyByIndex(s return params._ret; } -uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking007_CreateLobby(struct w_steam_iface *_this, uint32_t eLobbyType, int32_t cMaxMembers) +uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking007_CreateLobby(struct w_iface *_this, uint32_t eLobbyType, int32_t cMaxMembers) { struct ISteamMatchmaking_SteamMatchMaking007_CreateLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eLobbyType = eLobbyType, .cMaxMembers = cMaxMembers, }; @@ -2739,11 +2739,11 @@ uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking007_CreateLobby(struct return params._ret; } -uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking007_JoinLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) +uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking007_JoinLobby(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking007_JoinLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -2751,22 +2751,22 @@ uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking007_JoinLobby(struct w_ return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking007_LeaveLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamMatchmaking_SteamMatchMaking007_LeaveLobby(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking007_LeaveLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_LeaveLobby, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { struct ISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDInvitee = steamIDInvitee, }; @@ -2775,11 +2775,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_InviteUserToLobby(str return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -2787,11 +2787,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetNumLobbyMembers(s return params._ret; } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, .iMember = iMember, @@ -2801,11 +2801,11 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberByI return params._ret; } -const char * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) +const char * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; @@ -2815,11 +2815,11 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyData(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, .pchValue = pchValue, @@ -2831,11 +2831,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyData(struct w return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -2843,11 +2843,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyDataCount(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iLobbyData, char *pchKey, int32_t cchKeyBufferSize, char *pchValue, int32_t cchValueBufferSize) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex(struct w_iface *_this, CSteamID steamIDLobby, int32_t iLobbyData, char *pchKey, int32_t cchKeyBufferSize, char *pchValue, int32_t cchValueBufferSize) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .iLobbyData = iLobbyData, .pchKey = pchKey, @@ -2860,11 +2860,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyDataByIndex(s return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; @@ -2874,11 +2874,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_DeleteLobbyData(struc return params._ret; } -const char * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) +const char * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDUser = steamIDUser, .pchKey = pchKey, @@ -2889,11 +2889,11 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberD return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +void __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, .pchValue = pchValue, @@ -2904,11 +2904,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberData, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg(struct w_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pvMsgBody = pvMsgBody, .cubMsgBody = cubMsgBody, @@ -2918,11 +2918,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SendLobbyChatMsg(stru return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iChatID, CSteamID *pSteamIDUser, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry(struct w_iface *_this, CSteamID steamIDLobby, int32_t iChatID, CSteamID *pSteamIDUser, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .iChatID = iChatID, .pSteamIDUser = pSteamIDUser, @@ -2935,11 +2935,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyChatEntry(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_RequestLobbyData(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking007_RequestLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -2947,11 +2947,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_RequestLobbyData(stru return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) +void __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer(struct w_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .unGameServerIP = unGameServerIP, .unGameServerPort = unGameServerPort, @@ -2961,11 +2961,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking007_SetLobbyGameServer, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer(struct w_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .punGameServerIP = punGameServerIP, .punGameServerPort = punGameServerPort, @@ -2976,11 +2976,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyGameServer(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit(struct w_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .cMaxMembers = cMaxMembers, }; @@ -2989,11 +2989,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyMemberLimit(s return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -3001,11 +3001,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyMemberLimit( return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyType(struct w_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .eLobbyType = eLobbyType, }; @@ -3014,11 +3014,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyType(struct w return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable(struct w_steam_iface *_this, CSteamID steamIDLobby, int8_t bLobbyJoinable) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable(struct w_iface *_this, CSteamID steamIDLobby, int8_t bLobbyJoinable) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .bLobbyJoinable = bLobbyJoinable, }; @@ -3027,11 +3027,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyJoinable(stru return params._ret; } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, }; @@ -3040,11 +3040,11 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking007_GetLobbyOwner(str return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDNewOwner) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDNewOwner) { struct ISteamMatchmaking_SteamMatchMaking007_SetLobbyOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDNewOwner = steamIDNewOwner, }; @@ -3096,9 +3096,9 @@ __ASM_BLOCK_BEGIN(winISteamMatchmaking_SteamMatchMaking007_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking007(void *u_iface) +struct w_iface *create_winISteamMatchmaking_SteamMatchMaking007( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamMatchMaking007"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMaking007"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamMatchmaking_SteamMatchMaking007_vtable, 34, "SteamMatchMaking007"); r->u_iface = u_iface; @@ -3142,22 +3142,22 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinabl DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner, 16) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner, 20) -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGameCount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame(struct w_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iGame = iGame, .pnAppID = pnAppID, .pnIP = pnIP, @@ -3171,11 +3171,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetFavoriteGame(struc return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -3188,11 +3188,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_AddFavoriteGame(stru return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -3204,22 +3204,22 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_RemoveFavoriteGame(st return params._ret; } -uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking008_RequestLobbyList(struct w_steam_iface *_this) +uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking008_RequestLobbyList(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking008_RequestLobbyList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_RequestLobbyList, ¶ms ); return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, const char *pchValueToMatch, uint32_t eComparisonType) +void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter(struct w_iface *_this, const char *pchKeyToMatch, const char *pchValueToMatch, uint32_t eComparisonType) { struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .pchValueToMatch = pchValueToMatch, .eComparisonType = eComparisonType, @@ -3230,11 +3230,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStri STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListStringFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, int32_t nValueToMatch, uint32_t eComparisonType) +void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter(struct w_iface *_this, const char *pchKeyToMatch, int32_t nValueToMatch, uint32_t eComparisonType) { struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .nValueToMatch = nValueToMatch, .eComparisonType = eComparisonType, @@ -3244,11 +3244,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNume STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNumericalFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, int32_t nValueToBeCloseTo) +void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter(struct w_iface *_this, const char *pchKeyToMatch, int32_t nValueToBeCloseTo) { struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .nValueToBeCloseTo = nValueToBeCloseTo, }; @@ -3257,44 +3257,44 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNear STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListNearValueFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable(struct w_steam_iface *_this, int32_t nSlotsAvailable) +void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable(struct w_iface *_this, int32_t nSlotsAvailable) { struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nSlotsAvailable = nSlotsAvailable, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListFilterSlotsAvailable, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter(struct w_steam_iface *_this, uint32_t eLobbyDistanceFilter) +void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter(struct w_iface *_this, uint32_t eLobbyDistanceFilter) { struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eLobbyDistanceFilter = eLobbyDistanceFilter, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListDistanceFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter(struct w_steam_iface *_this, int32_t cMaxResults) +void __thiscall winISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter(struct w_iface *_this, int32_t cMaxResults) { struct ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cMaxResults = cMaxResults, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_AddRequestLobbyListResultCountFilter, ¶ms ); } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iLobby) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iLobby) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iLobby = iLobby, }; @@ -3303,11 +3303,11 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyByIndex(s return params._ret; } -uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking008_CreateLobby(struct w_steam_iface *_this, uint32_t eLobbyType, int32_t cMaxMembers) +uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking008_CreateLobby(struct w_iface *_this, uint32_t eLobbyType, int32_t cMaxMembers) { struct ISteamMatchmaking_SteamMatchMaking008_CreateLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eLobbyType = eLobbyType, .cMaxMembers = cMaxMembers, }; @@ -3316,11 +3316,11 @@ uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking008_CreateLobby(struct return params._ret; } -uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking008_JoinLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) +uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking008_JoinLobby(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking008_JoinLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -3328,22 +3328,22 @@ uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking008_JoinLobby(struct w_ return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking008_LeaveLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamMatchmaking_SteamMatchMaking008_LeaveLobby(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking008_LeaveLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_LeaveLobby, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { struct ISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDInvitee = steamIDInvitee, }; @@ -3352,11 +3352,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_InviteUserToLobby(str return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -3364,11 +3364,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetNumLobbyMembers(s return params._ret; } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, .iMember = iMember, @@ -3378,11 +3378,11 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberByI return params._ret; } -const char * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) +const char * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; @@ -3392,11 +3392,11 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyData(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, .pchValue = pchValue, @@ -3408,11 +3408,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyData(struct w return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -3420,11 +3420,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyDataCount(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iLobbyData, char *pchKey, int32_t cchKeyBufferSize, char *pchValue, int32_t cchValueBufferSize) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex(struct w_iface *_this, CSteamID steamIDLobby, int32_t iLobbyData, char *pchKey, int32_t cchKeyBufferSize, char *pchValue, int32_t cchValueBufferSize) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .iLobbyData = iLobbyData, .pchKey = pchKey, @@ -3437,11 +3437,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyDataByIndex(s return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; @@ -3451,11 +3451,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_DeleteLobbyData(struc return params._ret; } -const char * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) +const char * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDUser = steamIDUser, .pchKey = pchKey, @@ -3466,11 +3466,11 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberD return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +void __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, .pchValue = pchValue, @@ -3481,11 +3481,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberData, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg(struct w_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pvMsgBody = pvMsgBody, .cubMsgBody = cubMsgBody, @@ -3495,11 +3495,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SendLobbyChatMsg(stru return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iChatID, CSteamID *pSteamIDUser, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry(struct w_iface *_this, CSteamID steamIDLobby, int32_t iChatID, CSteamID *pSteamIDUser, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .iChatID = iChatID, .pSteamIDUser = pSteamIDUser, @@ -3512,11 +3512,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyChatEntry(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_RequestLobbyData(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking008_RequestLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -3524,11 +3524,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_RequestLobbyData(stru return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) +void __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer(struct w_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .unGameServerIP = unGameServerIP, .unGameServerPort = unGameServerPort, @@ -3538,11 +3538,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking008_SetLobbyGameServer, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer(struct w_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .punGameServerIP = punGameServerIP, .punGameServerPort = punGameServerPort, @@ -3553,11 +3553,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyGameServer(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit(struct w_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .cMaxMembers = cMaxMembers, }; @@ -3566,11 +3566,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyMemberLimit(s return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -3578,11 +3578,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyMemberLimit( return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyType(struct w_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .eLobbyType = eLobbyType, }; @@ -3591,11 +3591,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyType(struct w return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable(struct w_steam_iface *_this, CSteamID steamIDLobby, int8_t bLobbyJoinable) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable(struct w_iface *_this, CSteamID steamIDLobby, int8_t bLobbyJoinable) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .bLobbyJoinable = bLobbyJoinable, }; @@ -3604,11 +3604,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyJoinable(stru return params._ret; } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, }; @@ -3617,11 +3617,11 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking008_GetLobbyOwner(str return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDNewOwner) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDNewOwner) { struct ISteamMatchmaking_SteamMatchMaking008_SetLobbyOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDNewOwner = steamIDNewOwner, }; @@ -3675,9 +3675,9 @@ __ASM_BLOCK_BEGIN(winISteamMatchmaking_SteamMatchMaking008_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking008(void *u_iface) +struct w_iface *create_winISteamMatchmaking_SteamMatchMaking008( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamMatchMaking008"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMaking008"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamMatchmaking_SteamMatchMaking008_vtable, 36, "SteamMatchMaking008"); r->u_iface = u_iface; @@ -3723,22 +3723,22 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner, DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner, 20) DEFINE_THISCALL_WRAPPER(winISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby, 20) -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGameCount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame(struct w_steam_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame(struct w_iface *_this, int32_t iGame, uint32_t *pnAppID, uint32_t *pnIP, uint16_t *pnConnPort, uint16_t *pnQueryPort, uint32_t *punFlags, uint32_t *pRTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iGame = iGame, .pnAppID = pnAppID, .pnIP = pnIP, @@ -3752,11 +3752,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetFavoriteGame(struc return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags, uint32_t rTime32LastPlayedOnServer) { struct ISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -3769,11 +3769,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_AddFavoriteGame(stru return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame(struct w_steam_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame(struct w_iface *_this, uint32_t nAppID, uint32_t nIP, uint16_t nConnPort, uint16_t nQueryPort, uint32_t unFlags) { struct ISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, .nIP = nIP, .nConnPort = nConnPort, @@ -3785,22 +3785,22 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_RemoveFavoriteGame(st return params._ret; } -uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking009_RequestLobbyList(struct w_steam_iface *_this) +uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking009_RequestLobbyList(struct w_iface *_this) { struct ISteamMatchmaking_SteamMatchMaking009_RequestLobbyList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_RequestLobbyList, ¶ms ); return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, const char *pchValueToMatch, uint32_t eComparisonType) +void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter(struct w_iface *_this, const char *pchKeyToMatch, const char *pchValueToMatch, uint32_t eComparisonType) { struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .pchValueToMatch = pchValueToMatch, .eComparisonType = eComparisonType, @@ -3811,11 +3811,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStri STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListStringFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, int32_t nValueToMatch, uint32_t eComparisonType) +void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter(struct w_iface *_this, const char *pchKeyToMatch, int32_t nValueToMatch, uint32_t eComparisonType) { struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .nValueToMatch = nValueToMatch, .eComparisonType = eComparisonType, @@ -3825,11 +3825,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNume STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNumericalFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter(struct w_steam_iface *_this, const char *pchKeyToMatch, int32_t nValueToBeCloseTo) +void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter(struct w_iface *_this, const char *pchKeyToMatch, int32_t nValueToBeCloseTo) { struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchKeyToMatch = pchKeyToMatch, .nValueToBeCloseTo = nValueToBeCloseTo, }; @@ -3838,55 +3838,55 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNear STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListNearValueFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable(struct w_steam_iface *_this, int32_t nSlotsAvailable) +void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable(struct w_iface *_this, int32_t nSlotsAvailable) { struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nSlotsAvailable = nSlotsAvailable, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListFilterSlotsAvailable, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter(struct w_steam_iface *_this, uint32_t eLobbyDistanceFilter) +void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter(struct w_iface *_this, uint32_t eLobbyDistanceFilter) { struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eLobbyDistanceFilter = eLobbyDistanceFilter, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListDistanceFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter(struct w_steam_iface *_this, int32_t cMaxResults) +void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter(struct w_iface *_this, int32_t cMaxResults) { struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .cMaxResults = cMaxResults, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListResultCountFilter, ¶ms ); } -void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_AddRequestLobbyListCompatibleMembersFilter, ¶ms ); } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex(struct w_steam_iface *_this, CSteamID *_ret, int32_t iLobby) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex(struct w_iface *_this, CSteamID *_ret, int32_t iLobby) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .iLobby = iLobby, }; @@ -3895,11 +3895,11 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyByIndex(s return params._ret; } -uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking009_CreateLobby(struct w_steam_iface *_this, uint32_t eLobbyType, int32_t cMaxMembers) +uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking009_CreateLobby(struct w_iface *_this, uint32_t eLobbyType, int32_t cMaxMembers) { struct ISteamMatchmaking_SteamMatchMaking009_CreateLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eLobbyType = eLobbyType, .cMaxMembers = cMaxMembers, }; @@ -3908,11 +3908,11 @@ uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking009_CreateLobby(struct return params._ret; } -uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking009_JoinLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) +uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking009_JoinLobby(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking009_JoinLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -3920,22 +3920,22 @@ uint64_t __thiscall winISteamMatchmaking_SteamMatchMaking009_JoinLobby(struct w_ return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking009_LeaveLobby(struct w_steam_iface *_this, CSteamID steamIDLobby) +void __thiscall winISteamMatchmaking_SteamMatchMaking009_LeaveLobby(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking009_LeaveLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_LeaveLobby, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDInvitee) { struct ISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDInvitee = steamIDInvitee, }; @@ -3944,11 +3944,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_InviteUserToLobby(str return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -3956,11 +3956,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetNumLobbyMembers(s return params._ret; } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDLobby, int32_t iMember) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, .iMember = iMember, @@ -3970,11 +3970,11 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberByI return params._ret; } -const char * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) +const char * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; @@ -3984,11 +3984,11 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyData(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, .pchValue = pchValue, @@ -4000,11 +4000,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyData(struct w return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -4012,11 +4012,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyDataCount(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iLobbyData, char *pchKey, int32_t cchKeyBufferSize, char *pchValue, int32_t cchValueBufferSize) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex(struct w_iface *_this, CSteamID steamIDLobby, int32_t iLobbyData, char *pchKey, int32_t cchKeyBufferSize, char *pchValue, int32_t cchValueBufferSize) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .iLobbyData = iLobbyData, .pchKey = pchKey, @@ -4029,11 +4029,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyDataByIndex(s return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, }; @@ -4043,11 +4043,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_DeleteLobbyData(struc return params._ret; } -const char * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) +const char * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDUser = steamIDUser, .pchKey = pchKey, @@ -4058,11 +4058,11 @@ const char * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberD return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData(struct w_steam_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) +void __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData(struct w_iface *_this, CSteamID steamIDLobby, const char *pchKey, const char *pchValue) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pchKey = pchKey, .pchValue = pchValue, @@ -4073,11 +4073,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberData, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg(struct w_steam_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg(struct w_iface *_this, CSteamID steamIDLobby, const void *pvMsgBody, int32_t cubMsgBody) { struct ISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .pvMsgBody = pvMsgBody, .cubMsgBody = cubMsgBody, @@ -4087,11 +4087,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SendLobbyChatMsg(stru return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t iChatID, CSteamID *pSteamIDUser, void *pvData, int32_t cubData, uint32_t *peChatEntryType) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry(struct w_iface *_this, CSteamID steamIDLobby, int32_t iChatID, CSteamID *pSteamIDUser, void *pvData, int32_t cubData, uint32_t *peChatEntryType) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .iChatID = iChatID, .pSteamIDUser = pSteamIDUser, @@ -4104,11 +4104,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyChatEntry(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_RequestLobbyData(struct w_steam_iface *_this, CSteamID steamIDLobby) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_RequestLobbyData(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking009_RequestLobbyData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -4116,11 +4116,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_RequestLobbyData(stru return params._ret; } -void __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) +void __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer(struct w_iface *_this, CSteamID steamIDLobby, uint32_t unGameServerIP, uint16_t unGameServerPort, CSteamID steamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .unGameServerIP = unGameServerIP, .unGameServerPort = unGameServerPort, @@ -4130,11 +4130,11 @@ void __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer(stru STEAMCLIENT_CALL( ISteamMatchmaking_SteamMatchMaking009_SetLobbyGameServer, ¶ms ); } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer(struct w_iface *_this, CSteamID steamIDLobby, uint32_t *punGameServerIP, uint16_t *punGameServerPort, CSteamID *psteamIDGameServer) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .punGameServerIP = punGameServerIP, .punGameServerPort = punGameServerPort, @@ -4145,11 +4145,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyGameServer(st return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit(struct w_iface *_this, CSteamID steamIDLobby, int32_t cMaxMembers) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .cMaxMembers = cMaxMembers, }; @@ -4158,11 +4158,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyMemberLimit(s return params._ret; } -int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit(struct w_steam_iface *_this, CSteamID steamIDLobby) +int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit(struct w_iface *_this, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, }; TRACE("%p\n", _this); @@ -4170,11 +4170,11 @@ int32_t __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyMemberLimit( return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyType(struct w_steam_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyType(struct w_iface *_this, CSteamID steamIDLobby, uint32_t eLobbyType) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .eLobbyType = eLobbyType, }; @@ -4183,11 +4183,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyType(struct w return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable(struct w_steam_iface *_this, CSteamID steamIDLobby, int8_t bLobbyJoinable) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable(struct w_iface *_this, CSteamID steamIDLobby, int8_t bLobbyJoinable) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .bLobbyJoinable = bLobbyJoinable, }; @@ -4196,11 +4196,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyJoinable(stru return params._ret; } -CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner(struct w_steam_iface *_this, CSteamID *_ret, CSteamID steamIDLobby) +CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner(struct w_iface *_this, CSteamID *_ret, CSteamID steamIDLobby) { struct ISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .steamIDLobby = steamIDLobby, }; @@ -4209,11 +4209,11 @@ CSteamID * __thiscall winISteamMatchmaking_SteamMatchMaking009_GetLobbyOwner(str return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDNewOwner) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDNewOwner) { struct ISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDNewOwner = steamIDNewOwner, }; @@ -4222,11 +4222,11 @@ int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLobbyOwner(struct return params._ret; } -int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby(struct w_steam_iface *_this, CSteamID steamIDLobby, CSteamID steamIDLobbyDependent) +int8_t __thiscall winISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby(struct w_iface *_this, CSteamID steamIDLobby, CSteamID steamIDLobbyDependent) { struct ISteamMatchmaking_SteamMatchMaking009_SetLinkedLobby_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDLobby = steamIDLobby, .steamIDLobbyDependent = steamIDLobbyDependent, }; @@ -4282,9 +4282,9 @@ __ASM_BLOCK_BEGIN(winISteamMatchmaking_SteamMatchMaking009_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamMatchmaking_SteamMatchMaking009(void *u_iface) +struct w_iface *create_winISteamMatchmaking_SteamMatchMaking009( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamMatchMaking009"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMaking009"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamMatchmaking_SteamMatchMaking009_vtable, 38, "SteamMatchMaking009"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamMatchmakingServers.c b/lsteamclient/winISteamMatchmakingServers.c index 641c65b0..88d68bc2 100644 --- a/lsteamclient/winISteamMatchmakingServers.c +++ b/lsteamclient/winISteamMatchmakingServers.c @@ -20,11 +20,11 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmakingServers_SteamMatchMakingServers001_P DEFINE_THISCALL_WRAPPER(winISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules, 16) DEFINE_THISCALL_WRAPPER(winISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery, 8) -void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList(struct w_steam_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_099u *pRequestServersResponse) +void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList(struct w_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_099u *pRequestServersResponse) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iApp = iApp, .ppchFilters = ppchFilters, .nFilters = nFilters, @@ -34,11 +34,11 @@ void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestIn STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_RequestInternetServerList, ¶ms ); } -void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList(struct w_steam_iface *_this, uint32_t iApp, w_ISteamMatchmakingServerListResponse_099u *pRequestServersResponse) +void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList(struct w_iface *_this, uint32_t iApp, w_ISteamMatchmakingServerListResponse_099u *pRequestServersResponse) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iApp = iApp, .pRequestServersResponse = pRequestServersResponse, }; @@ -46,11 +46,11 @@ void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestLA STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_RequestLANServerList, ¶ms ); } -void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList(struct w_steam_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_099u *pRequestServersResponse) +void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList(struct w_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_099u *pRequestServersResponse) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iApp = iApp, .ppchFilters = ppchFilters, .nFilters = nFilters, @@ -60,11 +60,11 @@ void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestFr STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFriendsServerList, ¶ms ); } -void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList(struct w_steam_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_099u *pRequestServersResponse) +void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList(struct w_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_099u *pRequestServersResponse) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iApp = iApp, .ppchFilters = ppchFilters, .nFilters = nFilters, @@ -74,11 +74,11 @@ void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestFa STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_RequestFavoritesServerList, ¶ms ); } -void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList(struct w_steam_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_099u *pRequestServersResponse) +void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList(struct w_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_099u *pRequestServersResponse) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iApp = iApp, .ppchFilters = ppchFilters, .nFilters = nFilters, @@ -88,11 +88,11 @@ void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestHi STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_RequestHistoryServerList, ¶ms ); } -void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList(struct w_steam_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_099u *pRequestServersResponse) +void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList(struct w_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_099u *pRequestServersResponse) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iApp = iApp, .ppchFilters = ppchFilters, .nFilters = nFilters, @@ -102,11 +102,11 @@ void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RequestSp STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_RequestSpectatorServerList, ¶ms ); } -gameserveritem_t_105 * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails(struct w_steam_iface *_this, uint32_t eType, int32_t iServer) +gameserveritem_t_105 * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails(struct w_iface *_this, uint32_t eType, int32_t iServer) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eType = eType, .iServer = iServer, }; @@ -115,33 +115,33 @@ gameserveritem_t_105 * __thiscall winISteamMatchmakingServers_SteamMatchMakingSe return params._ret; } -void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery(struct w_steam_iface *_this, uint32_t eType) +void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery(struct w_iface *_this, uint32_t eType) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eType = eType, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_CancelQuery, ¶ms ); } -void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery(struct w_steam_iface *_this, uint32_t eType) +void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery(struct w_iface *_this, uint32_t eType) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eType = eType, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshQuery, ¶ms ); } -int8_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing(struct w_steam_iface *_this, uint32_t eType) +int8_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing(struct w_iface *_this, uint32_t eType) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_IsRefreshing_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eType = eType, }; TRACE("%p\n", _this); @@ -149,11 +149,11 @@ int8_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_IsRefre return params._ret; } -int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount(struct w_steam_iface *_this, uint32_t eType) +int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount(struct w_iface *_this, uint32_t eType) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_GetServerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eType = eType, }; TRACE("%p\n", _this); @@ -161,11 +161,11 @@ int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_GetSer return params._ret; } -void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer(struct w_steam_iface *_this, uint32_t eType, int32_t iServer) +void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer(struct w_iface *_this, uint32_t eType, int32_t iServer) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eType = eType, .iServer = iServer, }; @@ -173,11 +173,11 @@ void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_RefreshSe STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers001_RefreshServer, ¶ms ); } -int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_PingServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort, w_ISteamMatchmakingPingResponse *pRequestServersResponse) +int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_PingServer(struct w_iface *_this, uint32_t unIP, uint16_t usPort, w_ISteamMatchmakingPingResponse *pRequestServersResponse) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_PingServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, .pRequestServersResponse = pRequestServersResponse, @@ -187,11 +187,11 @@ int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_PingSe return params._ret; } -int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort, w_ISteamMatchmakingPlayersResponse *pRequestServersResponse) +int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails(struct w_iface *_this, uint32_t unIP, uint16_t usPort, w_ISteamMatchmakingPlayersResponse *pRequestServersResponse) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_PlayerDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, .pRequestServersResponse = pRequestServersResponse, @@ -201,11 +201,11 @@ int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_Player return params._ret; } -int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort, w_ISteamMatchmakingRulesResponse *pRequestServersResponse) +int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules(struct w_iface *_this, uint32_t unIP, uint16_t usPort, w_ISteamMatchmakingRulesResponse *pRequestServersResponse) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_ServerRules_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, .pRequestServersResponse = pRequestServersResponse, @@ -215,11 +215,11 @@ int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_Server return params._ret; } -void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery(struct w_steam_iface *_this, int32_t hServerQuery) +void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery(struct w_iface *_this, int32_t hServerQuery) { struct ISteamMatchmakingServers_SteamMatchMakingServers001_CancelServerQuery_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hServerQuery = hServerQuery, }; TRACE("%p\n", _this); @@ -251,9 +251,9 @@ __ASM_BLOCK_BEGIN(winISteamMatchmakingServers_SteamMatchMakingServers001_vtables ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamMatchmakingServers_SteamMatchMakingServers001(void *u_iface) +struct w_iface *create_winISteamMatchmakingServers_SteamMatchMakingServers001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamMatchMakingServers001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMakingServers001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamMatchmakingServers_SteamMatchMakingServers001_vtable, 16, "SteamMatchMakingServers001"); r->u_iface = u_iface; @@ -278,11 +278,11 @@ DEFINE_THISCALL_WRAPPER(winISteamMatchmakingServers_SteamMatchMakingServers002_P DEFINE_THISCALL_WRAPPER(winISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules, 16) DEFINE_THISCALL_WRAPPER(winISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery, 8) -void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList(struct w_steam_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_106 *pRequestServersResponse) +void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList(struct w_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_106 *pRequestServersResponse) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestInternetServerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iApp = iApp, .ppchFilters = ppchFilters, .nFilters = nFilters, @@ -293,11 +293,11 @@ void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_Request return params._ret; } -void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList(struct w_steam_iface *_this, uint32_t iApp, w_ISteamMatchmakingServerListResponse_106 *pRequestServersResponse) +void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList(struct w_iface *_this, uint32_t iApp, w_ISteamMatchmakingServerListResponse_106 *pRequestServersResponse) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestLANServerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iApp = iApp, .pRequestServersResponse = pRequestServersResponse, }; @@ -306,11 +306,11 @@ void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_Request return params._ret; } -void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList(struct w_steam_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_106 *pRequestServersResponse) +void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList(struct w_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_106 *pRequestServersResponse) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFriendsServerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iApp = iApp, .ppchFilters = ppchFilters, .nFilters = nFilters, @@ -321,11 +321,11 @@ void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_Request return params._ret; } -void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList(struct w_steam_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_106 *pRequestServersResponse) +void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList(struct w_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_106 *pRequestServersResponse) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestFavoritesServerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iApp = iApp, .ppchFilters = ppchFilters, .nFilters = nFilters, @@ -336,11 +336,11 @@ void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_Request return params._ret; } -void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList(struct w_steam_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_106 *pRequestServersResponse) +void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList(struct w_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_106 *pRequestServersResponse) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestHistoryServerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iApp = iApp, .ppchFilters = ppchFilters, .nFilters = nFilters, @@ -351,11 +351,11 @@ void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_Request return params._ret; } -void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList(struct w_steam_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_106 *pRequestServersResponse) +void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList(struct w_iface *_this, uint32_t iApp, MatchMakingKeyValuePair_t **ppchFilters, uint32_t nFilters, w_ISteamMatchmakingServerListResponse_106 *pRequestServersResponse) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_RequestSpectatorServerList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iApp = iApp, .ppchFilters = ppchFilters, .nFilters = nFilters, @@ -366,11 +366,11 @@ void * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_Request return params._ret; } -gameserveritem_t_105 * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails(struct w_steam_iface *_this, void *hRequest, int32_t iServer) +gameserveritem_t_105 * __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails(struct w_iface *_this, void *hRequest, int32_t iServer) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .iServer = iServer, }; @@ -379,33 +379,33 @@ gameserveritem_t_105 * __thiscall winISteamMatchmakingServers_SteamMatchMakingSe return params._ret; } -void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery(struct w_steam_iface *_this, void *hRequest) +void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery(struct w_iface *_this, void *hRequest) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_CancelQuery, ¶ms ); } -void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery(struct w_steam_iface *_this, void *hRequest) +void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery(struct w_iface *_this, void *hRequest) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshQuery, ¶ms ); } -int8_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing(struct w_steam_iface *_this, void *hRequest) +int8_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing(struct w_iface *_this, void *hRequest) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_IsRefreshing_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); @@ -413,11 +413,11 @@ int8_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_IsRefre return params._ret; } -int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount(struct w_steam_iface *_this, void *hRequest) +int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount(struct w_iface *_this, void *hRequest) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_GetServerCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, }; TRACE("%p\n", _this); @@ -425,11 +425,11 @@ int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_GetSer return params._ret; } -void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer(struct w_steam_iface *_this, void *hRequest, int32_t iServer) +void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer(struct w_iface *_this, void *hRequest, int32_t iServer) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hRequest = hRequest, .iServer = iServer, }; @@ -437,11 +437,11 @@ void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_RefreshSe STEAMCLIENT_CALL( ISteamMatchmakingServers_SteamMatchMakingServers002_RefreshServer, ¶ms ); } -int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_PingServer(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort, w_ISteamMatchmakingPingResponse *pRequestServersResponse) +int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_PingServer(struct w_iface *_this, uint32_t unIP, uint16_t usPort, w_ISteamMatchmakingPingResponse *pRequestServersResponse) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_PingServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, .pRequestServersResponse = pRequestServersResponse, @@ -451,11 +451,11 @@ int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_PingSe return params._ret; } -int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort, w_ISteamMatchmakingPlayersResponse *pRequestServersResponse) +int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails(struct w_iface *_this, uint32_t unIP, uint16_t usPort, w_ISteamMatchmakingPlayersResponse *pRequestServersResponse) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_PlayerDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, .pRequestServersResponse = pRequestServersResponse, @@ -465,11 +465,11 @@ int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_Player return params._ret; } -int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules(struct w_steam_iface *_this, uint32_t unIP, uint16_t usPort, w_ISteamMatchmakingRulesResponse *pRequestServersResponse) +int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules(struct w_iface *_this, uint32_t unIP, uint16_t usPort, w_ISteamMatchmakingRulesResponse *pRequestServersResponse) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_ServerRules_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, .pRequestServersResponse = pRequestServersResponse, @@ -479,11 +479,11 @@ int32_t __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_Server return params._ret; } -void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery(struct w_steam_iface *_this, int32_t hServerQuery) +void __thiscall winISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery(struct w_iface *_this, int32_t hServerQuery) { struct ISteamMatchmakingServers_SteamMatchMakingServers002_CancelServerQuery_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hServerQuery = hServerQuery, }; TRACE("%p\n", _this); @@ -516,9 +516,9 @@ __ASM_BLOCK_BEGIN(winISteamMatchmakingServers_SteamMatchMakingServers002_vtables ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamMatchmakingServers_SteamMatchMakingServers002(void *u_iface) +struct w_iface *create_winISteamMatchmakingServers_SteamMatchMakingServers002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamMatchMakingServers002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamMatchMakingServers002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamMatchmakingServers_SteamMatchMakingServers002_vtable, 17, "SteamMatchMakingServers002"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamMusic.c b/lsteamclient/winISteamMusic.c index f9f97b5d..3c25b7cf 100644 --- a/lsteamclient/winISteamMusic.c +++ b/lsteamclient/winISteamMusic.c @@ -13,95 +13,95 @@ DEFINE_THISCALL_WRAPPER(winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext, DEFINE_THISCALL_WRAPPER(winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume, 8) DEFINE_THISCALL_WRAPPER(winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume, 4) -int8_t __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled(struct w_iface *_this) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsEnabled, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying(struct w_iface *_this) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_BIsPlaying, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus(struct w_steam_iface *_this) +uint32_t __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus(struct w_iface *_this) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetPlaybackStatus, ¶ms ); return params._ret; } -void __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play(struct w_steam_iface *_this) +void __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play(struct w_iface *_this) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Play, ¶ms ); } -void __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause(struct w_steam_iface *_this) +void __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause(struct w_iface *_this) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_Pause, ¶ms ); } -void __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious(struct w_steam_iface *_this) +void __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious(struct w_iface *_this) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayPrevious, ¶ms ); } -void __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext(struct w_steam_iface *_this) +void __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext(struct w_iface *_this) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_PlayNext, ¶ms ); } -void __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume(struct w_steam_iface *_this, float flVolume) +void __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume(struct w_iface *_this, float flVolume) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .flVolume = flVolume, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_SetVolume, ¶ms ); } -float __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume(struct w_steam_iface *_this) +float __thiscall winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume(struct w_iface *_this) { struct ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_GetVolume, ¶ms ); @@ -126,9 +126,9 @@ __ASM_BLOCK_BEGIN(winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001(void *u_iface) +struct w_iface *create_winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMMUSIC_INTERFACE_VERSION001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMMUSIC_INTERFACE_VERSION001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamMusic_STEAMMUSIC_INTERFACE_VERSION001_vtable, 9, "STEAMMUSIC_INTERFACE_VERSION001"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamMusicRemote.c b/lsteamclient/winISteamMusicRemote.c index dfe3f66b..b0f195d3 100644 --- a/lsteamclient/winISteamMusicRemote.c +++ b/lsteamclient/winISteamMusicRemote.c @@ -36,11 +36,11 @@ DEFINE_THISCALL_WRAPPER(winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION0 DEFINE_THISCALL_WRAPPER(winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry, 8) DEFINE_THISCALL_WRAPPER(winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange, 4) -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote(struct w_iface *_this, const char *pchName) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_RegisterSteamMusicRemote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -49,33 +49,33 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Reg return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote(struct w_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_DeregisterSteamMusicRemote, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote(struct w_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BIsCurrentMusicRemote, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess(struct w_steam_iface *_this, int8_t bValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess(struct w_iface *_this, int8_t bValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BActivationSuccess_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bValue = bValue, }; TRACE("%p\n", _this); @@ -83,11 +83,11 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_BAc return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName(struct w_steam_iface *_this, const char *pchDisplayName) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName(struct w_iface *_this, const char *pchDisplayName) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetDisplayName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDisplayName = pchDisplayName, }; TRACE("%p\n", _this); @@ -96,11 +96,11 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Set return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64(struct w_steam_iface *_this, void *pvBuffer, uint32_t cbBufferLength) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64(struct w_iface *_this, void *pvBuffer, uint32_t cbBufferLength) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPNGIcon_64x64_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvBuffer = pvBuffer, .cbBufferLength = cbBufferLength, }; @@ -109,11 +109,11 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Set return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious(struct w_steam_iface *_this, int8_t bValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious(struct w_iface *_this, int8_t bValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayPrevious_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bValue = bValue, }; TRACE("%p\n", _this); @@ -121,11 +121,11 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Ena return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext(struct w_steam_iface *_this, int8_t bValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext(struct w_iface *_this, int8_t bValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlayNext_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bValue = bValue, }; TRACE("%p\n", _this); @@ -133,11 +133,11 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Ena return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled(struct w_steam_iface *_this, int8_t bValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled(struct w_iface *_this, int8_t bValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableShuffled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bValue = bValue, }; TRACE("%p\n", _this); @@ -145,11 +145,11 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Ena return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped(struct w_steam_iface *_this, int8_t bValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped(struct w_iface *_this, int8_t bValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableLooped_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bValue = bValue, }; TRACE("%p\n", _this); @@ -157,11 +157,11 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Ena return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue(struct w_steam_iface *_this, int8_t bValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue(struct w_iface *_this, int8_t bValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnableQueue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bValue = bValue, }; TRACE("%p\n", _this); @@ -169,11 +169,11 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Ena return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists(struct w_steam_iface *_this, int8_t bValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists(struct w_iface *_this, int8_t bValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_EnablePlaylists_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bValue = bValue, }; TRACE("%p\n", _this); @@ -181,11 +181,11 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Ena return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus(struct w_steam_iface *_this, uint32_t nStatus) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus(struct w_iface *_this, uint32_t nStatus) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdatePlaybackStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nStatus = nStatus, }; TRACE("%p\n", _this); @@ -193,11 +193,11 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Upd return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled(struct w_steam_iface *_this, int8_t bValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled(struct w_iface *_this, int8_t bValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateShuffled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bValue = bValue, }; TRACE("%p\n", _this); @@ -205,11 +205,11 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Upd return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped(struct w_steam_iface *_this, int8_t bValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped(struct w_iface *_this, int8_t bValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateLooped_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bValue = bValue, }; TRACE("%p\n", _this); @@ -217,11 +217,11 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Upd return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume(struct w_steam_iface *_this, float flValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume(struct w_iface *_this, float flValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateVolume_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .flValue = flValue, }; TRACE("%p\n", _this); @@ -229,22 +229,22 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Upd return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange(struct w_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryWillChange, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable(struct w_steam_iface *_this, int8_t bAvailable) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable(struct w_iface *_this, int8_t bAvailable) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryIsAvailable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bAvailable = bAvailable, }; TRACE("%p\n", _this); @@ -252,11 +252,11 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Cur return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText(struct w_steam_iface *_this, const char *pchText) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText(struct w_iface *_this, const char *pchText) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchText = pchText, }; TRACE("%p\n", _this); @@ -265,11 +265,11 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Upd return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds(struct w_steam_iface *_this, int32_t nValue) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds(struct w_iface *_this, int32_t nValue) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryElapsedSeconds_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nValue = nValue, }; TRACE("%p\n", _this); @@ -277,11 +277,11 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Upd return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt(struct w_steam_iface *_this, void *pvBuffer, uint32_t cbBufferLength) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt(struct w_iface *_this, void *pvBuffer, uint32_t cbBufferLength) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_UpdateCurrentEntryCoverArt_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvBuffer = pvBuffer, .cbBufferLength = cbBufferLength, }; @@ -290,44 +290,44 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Upd return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange(struct w_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_CurrentEntryDidChange, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange(struct w_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueWillChange, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries(struct w_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetQueueEntries, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry(struct w_steam_iface *_this, int32_t nID, int32_t nPosition, const char *pchEntryText) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry(struct w_iface *_this, int32_t nID, int32_t nPosition, const char *pchEntryText) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetQueueEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nID = nID, .nPosition = nPosition, .pchEntryText = pchEntryText, @@ -338,11 +338,11 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Set return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry(struct w_steam_iface *_this, int32_t nID) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry(struct w_iface *_this, int32_t nID) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentQueueEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nID = nID, }; TRACE("%p\n", _this); @@ -350,44 +350,44 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Set return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange(struct w_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_QueueDidChange, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange(struct w_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistWillChange, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries(struct w_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_ResetPlaylistEntries, ¶ms ); return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry(struct w_steam_iface *_this, int32_t nID, int32_t nPosition, const char *pchEntryText) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry(struct w_iface *_this, int32_t nID, int32_t nPosition, const char *pchEntryText) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetPlaylistEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nID = nID, .nPosition = nPosition, .pchEntryText = pchEntryText, @@ -398,11 +398,11 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Set return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry(struct w_steam_iface *_this, int32_t nID) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry(struct w_iface *_this, int32_t nID) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_SetCurrentPlaylistEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nID = nID, }; TRACE("%p\n", _this); @@ -410,11 +410,11 @@ int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_Set return params._ret; } -int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange(struct w_steam_iface *_this) +int8_t __thiscall winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange(struct w_iface *_this) { struct ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_PlaylistDidChange, ¶ms ); @@ -462,9 +462,9 @@ __ASM_BLOCK_BEGIN(winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_vta ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001(void *u_iface) +struct w_iface *create_winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMMUSICREMOTE_INTERFACE_VERSION001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMMUSICREMOTE_INTERFACE_VERSION001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamMusicRemote_STEAMMUSICREMOTE_INTERFACE_VERSION001_vtable, 32, "STEAMMUSICREMOTE_INTERFACE_VERSION001"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamNetworking.c b/lsteamclient/winISteamNetworking.c index d51171eb..ec08cda7 100644 --- a/lsteamclient/winISteamNetworking.c +++ b/lsteamclient/winISteamNetworking.c @@ -16,11 +16,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking001_RetrieveData, 24) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking001_GetSocketInfo, 24) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking001_GetListenSocketInfo, 16) -uint32_t __thiscall winISteamNetworking_SteamNetworking001_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort) +uint32_t __thiscall winISteamNetworking_SteamNetworking001_CreateListenSocket(struct w_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort) { struct ISteamNetworking_SteamNetworking001_CreateListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nVirtualP2PPort = nVirtualP2PPort, .nIP = nIP, .nPort = nPort, @@ -30,11 +30,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking001_CreateListenSocket(st return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec) +uint32_t __thiscall winISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket(struct w_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec) { struct ISteamNetworking_SteamNetworking001_CreateP2PConnectionSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDTarget = steamIDTarget, .nVirtualPort = nVirtualPort, .nTimeoutSec = nTimeoutSec, @@ -44,11 +44,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking001_CreateP2PConnectionSo return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking001_CreateConnectionSocket(struct w_steam_iface *_this, uint32_t nIP, uint16_t nPort, int32_t nTimeoutSec) +uint32_t __thiscall winISteamNetworking_SteamNetworking001_CreateConnectionSocket(struct w_iface *_this, uint32_t nIP, uint16_t nPort, int32_t nTimeoutSec) { struct ISteamNetworking_SteamNetworking001_CreateConnectionSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nIP = nIP, .nPort = nPort, .nTimeoutSec = nTimeoutSec, @@ -58,11 +58,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking001_CreateConnectionSocke return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking001_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking001_DestroySocket(struct w_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking001_DestroySocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; @@ -71,11 +71,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking001_DestroySocket(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking001_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking001_DestroyListenSocket(struct w_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking001_DestroyListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; @@ -84,11 +84,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking001_DestroyListenSocket(str return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking001_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, int8_t bReliable) +int8_t __thiscall winISteamNetworking_SteamNetworking001_SendDataOnSocket(struct w_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, int8_t bReliable) { struct ISteamNetworking_SteamNetworking001_SendDataOnSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pubData = pubData, .cubData = cubData, @@ -99,11 +99,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking001_SendDataOnSocket(struct return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket(struct w_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pcubMsgSize = pcubMsgSize, }; @@ -112,11 +112,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking001_IsDataAvailableOnSocket return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking001_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking001_RetrieveDataFromSocket(struct w_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking001_RetrieveDataFromSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pubDest = pubDest, .cubDest = cubDest, @@ -127,11 +127,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking001_RetrieveDataFromSocket( return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking001_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking001_IsDataAvailable(struct w_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking001_IsDataAvailable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hListenSocket = hListenSocket, .pcubMsgSize = pcubMsgSize, .phSocket = phSocket, @@ -141,11 +141,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking001_IsDataAvailable(struct return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking001_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking001_RetrieveData(struct w_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking001_RetrieveData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hListenSocket = hListenSocket, .pubDest = pubDest, .cubDest = cubDest, @@ -157,11 +157,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking001_RetrieveData(struct w_s return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking001_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking001_GetSocketInfo(struct w_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) { struct ISteamNetworking_SteamNetworking001_GetSocketInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pSteamIDRemote = pSteamIDRemote, .peSocketStatus = peSocketStatus, @@ -173,11 +173,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking001_GetSocketInfo(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking001_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) +int8_t __thiscall winISteamNetworking_SteamNetworking001_GetListenSocketInfo(struct w_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) { struct ISteamNetworking_SteamNetworking001_GetListenSocketInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hListenSocket = hListenSocket, .pnIP = pnIP, .pnPort = pnPort, @@ -208,9 +208,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworking_SteamNetworking001_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworking_SteamNetworking001(void *u_iface) +struct w_iface *create_winISteamNetworking_SteamNetworking001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworking001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworking001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworking_SteamNetworking001_vtable, 12, "SteamNetworking001"); r->u_iface = u_iface; @@ -232,11 +232,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking002_GetListenSocketIn DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking002_GetSocketConnectionType, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking002_GetMaxPacketSize, 8) -uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, int8_t bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateListenSocket(struct w_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking002_CreateListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nVirtualP2PPort = nVirtualP2PPort, .nIP = nIP, .nPort = nPort, @@ -247,11 +247,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateListenSocket(st return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, int8_t bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket(struct w_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking002_CreateP2PConnectionSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDTarget = steamIDTarget, .nVirtualPort = nVirtualPort, .nTimeoutSec = nTimeoutSec, @@ -262,11 +262,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateP2PConnectionSo return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateConnectionSocket(struct w_steam_iface *_this, uint32_t nIP, uint16_t nPort, int32_t nTimeoutSec) +uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateConnectionSocket(struct w_iface *_this, uint32_t nIP, uint16_t nPort, int32_t nTimeoutSec) { struct ISteamNetworking_SteamNetworking002_CreateConnectionSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nIP = nIP, .nPort = nPort, .nTimeoutSec = nTimeoutSec, @@ -276,11 +276,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking002_CreateConnectionSocke return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking002_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking002_DestroySocket(struct w_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking002_DestroySocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; @@ -289,11 +289,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking002_DestroySocket(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking002_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking002_DestroyListenSocket(struct w_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking002_DestroyListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; @@ -302,11 +302,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking002_DestroyListenSocket(str return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking002_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, int8_t bReliable) +int8_t __thiscall winISteamNetworking_SteamNetworking002_SendDataOnSocket(struct w_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, int8_t bReliable) { struct ISteamNetworking_SteamNetworking002_SendDataOnSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pubData = pubData, .cubData = cubData, @@ -317,11 +317,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking002_SendDataOnSocket(struct return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket(struct w_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pcubMsgSize = pcubMsgSize, }; @@ -330,11 +330,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking002_IsDataAvailableOnSocket return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking002_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking002_RetrieveDataFromSocket(struct w_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking002_RetrieveDataFromSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pubDest = pubDest, .cubDest = cubDest, @@ -345,11 +345,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking002_RetrieveDataFromSocket( return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking002_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking002_IsDataAvailable(struct w_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking002_IsDataAvailable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hListenSocket = hListenSocket, .pcubMsgSize = pcubMsgSize, .phSocket = phSocket, @@ -359,11 +359,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking002_IsDataAvailable(struct return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking002_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking002_RetrieveData(struct w_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking002_RetrieveData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hListenSocket = hListenSocket, .pubDest = pubDest, .cubDest = cubDest, @@ -375,11 +375,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking002_RetrieveData(struct w_s return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking002_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking002_GetSocketInfo(struct w_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) { struct ISteamNetworking_SteamNetworking002_GetSocketInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pSteamIDRemote = pSteamIDRemote, .peSocketStatus = peSocketStatus, @@ -391,11 +391,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking002_GetSocketInfo(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking002_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) +int8_t __thiscall winISteamNetworking_SteamNetworking002_GetListenSocketInfo(struct w_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) { struct ISteamNetworking_SteamNetworking002_GetListenSocketInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hListenSocket = hListenSocket, .pnIP = pnIP, .pnPort = pnPort, @@ -405,11 +405,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking002_GetListenSocketInfo(str return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking002_GetSocketConnectionType(struct w_steam_iface *_this, uint32_t hSocket) +uint32_t __thiscall winISteamNetworking_SteamNetworking002_GetSocketConnectionType(struct w_iface *_this, uint32_t hSocket) { struct ISteamNetworking_SteamNetworking002_GetSocketConnectionType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); @@ -417,11 +417,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking002_GetSocketConnectionTy return params._ret; } -int32_t __thiscall winISteamNetworking_SteamNetworking002_GetMaxPacketSize(struct w_steam_iface *_this, uint32_t hSocket) +int32_t __thiscall winISteamNetworking_SteamNetworking002_GetMaxPacketSize(struct w_iface *_this, uint32_t hSocket) { struct ISteamNetworking_SteamNetworking002_GetMaxPacketSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); @@ -452,9 +452,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworking_SteamNetworking002_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworking_SteamNetworking002(void *u_iface) +struct w_iface *create_winISteamNetworking_SteamNetworking002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworking002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworking002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworking_SteamNetworking002_vtable, 14, "SteamNetworking002"); r->u_iface = u_iface; @@ -482,11 +482,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking003_GetListenSocketIn DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking003_GetSocketConnectionType, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking003_GetMaxPacketSize, 8) -int8_t __thiscall winISteamNetworking_SteamNetworking003_SendP2PPacket(struct w_steam_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType) +int8_t __thiscall winISteamNetworking_SteamNetworking003_SendP2PPacket(struct w_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType) { struct ISteamNetworking_SteamNetworking003_SendP2PPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, .pubData = pubData, .cubData = cubData, @@ -497,11 +497,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking003_SendP2PPacket(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking003_IsP2PPacketAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking003_IsP2PPacketAvailable(struct w_iface *_this, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking003_IsP2PPacketAvailable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcubMsgSize = pcubMsgSize, }; TRACE("%p\n", _this); @@ -509,11 +509,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking003_IsP2PPacketAvailable(st return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking003_ReadP2PPacket(struct w_steam_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking003_ReadP2PPacket(struct w_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote) { struct ISteamNetworking_SteamNetworking003_ReadP2PPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pubDest = pubDest, .cubDest = cubDest, .pcubMsgSize = pcubMsgSize, @@ -524,11 +524,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking003_ReadP2PPacket(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser(struct w_iface *_this, CSteamID steamIDRemote) { struct ISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, }; TRACE("%p\n", _this); @@ -536,11 +536,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking003_AcceptP2PSessionWithUse return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser(struct w_iface *_this, CSteamID steamIDRemote) { struct ISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, }; TRACE("%p\n", _this); @@ -548,11 +548,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking003_CloseP2PSessionWithUser return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking003_GetP2PSessionState(struct w_steam_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) +int8_t __thiscall winISteamNetworking_SteamNetworking003_GetP2PSessionState(struct w_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) { struct ISteamNetworking_SteamNetworking003_GetP2PSessionState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, .pConnectionState = pConnectionState, }; @@ -561,11 +561,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking003_GetP2PSessionState(stru return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, int8_t bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateListenSocket(struct w_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking003_CreateListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nVirtualP2PPort = nVirtualP2PPort, .nIP = nIP, .nPort = nPort, @@ -576,11 +576,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateListenSocket(st return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, int8_t bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket(struct w_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking003_CreateP2PConnectionSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDTarget = steamIDTarget, .nVirtualPort = nVirtualPort, .nTimeoutSec = nTimeoutSec, @@ -591,11 +591,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateP2PConnectionSo return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateConnectionSocket(struct w_steam_iface *_this, uint32_t nIP, uint16_t nPort, int32_t nTimeoutSec) +uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateConnectionSocket(struct w_iface *_this, uint32_t nIP, uint16_t nPort, int32_t nTimeoutSec) { struct ISteamNetworking_SteamNetworking003_CreateConnectionSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nIP = nIP, .nPort = nPort, .nTimeoutSec = nTimeoutSec, @@ -605,11 +605,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking003_CreateConnectionSocke return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking003_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking003_DestroySocket(struct w_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking003_DestroySocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; @@ -618,11 +618,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking003_DestroySocket(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking003_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking003_DestroyListenSocket(struct w_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking003_DestroyListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; @@ -631,11 +631,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking003_DestroyListenSocket(str return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking003_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, int8_t bReliable) +int8_t __thiscall winISteamNetworking_SteamNetworking003_SendDataOnSocket(struct w_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, int8_t bReliable) { struct ISteamNetworking_SteamNetworking003_SendDataOnSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pubData = pubData, .cubData = cubData, @@ -646,11 +646,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking003_SendDataOnSocket(struct return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket(struct w_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pcubMsgSize = pcubMsgSize, }; @@ -659,11 +659,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking003_IsDataAvailableOnSocket return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking003_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking003_RetrieveDataFromSocket(struct w_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking003_RetrieveDataFromSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pubDest = pubDest, .cubDest = cubDest, @@ -674,11 +674,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking003_RetrieveDataFromSocket( return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking003_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking003_IsDataAvailable(struct w_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking003_IsDataAvailable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hListenSocket = hListenSocket, .pcubMsgSize = pcubMsgSize, .phSocket = phSocket, @@ -688,11 +688,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking003_IsDataAvailable(struct return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking003_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking003_RetrieveData(struct w_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking003_RetrieveData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hListenSocket = hListenSocket, .pubDest = pubDest, .cubDest = cubDest, @@ -704,11 +704,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking003_RetrieveData(struct w_s return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking003_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking003_GetSocketInfo(struct w_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) { struct ISteamNetworking_SteamNetworking003_GetSocketInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pSteamIDRemote = pSteamIDRemote, .peSocketStatus = peSocketStatus, @@ -720,11 +720,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking003_GetSocketInfo(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking003_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) +int8_t __thiscall winISteamNetworking_SteamNetworking003_GetListenSocketInfo(struct w_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) { struct ISteamNetworking_SteamNetworking003_GetListenSocketInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hListenSocket = hListenSocket, .pnIP = pnIP, .pnPort = pnPort, @@ -734,11 +734,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking003_GetListenSocketInfo(str return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking003_GetSocketConnectionType(struct w_steam_iface *_this, uint32_t hSocket) +uint32_t __thiscall winISteamNetworking_SteamNetworking003_GetSocketConnectionType(struct w_iface *_this, uint32_t hSocket) { struct ISteamNetworking_SteamNetworking003_GetSocketConnectionType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); @@ -746,11 +746,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking003_GetSocketConnectionTy return params._ret; } -int32_t __thiscall winISteamNetworking_SteamNetworking003_GetMaxPacketSize(struct w_steam_iface *_this, uint32_t hSocket) +int32_t __thiscall winISteamNetworking_SteamNetworking003_GetMaxPacketSize(struct w_iface *_this, uint32_t hSocket) { struct ISteamNetworking_SteamNetworking003_GetMaxPacketSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); @@ -787,9 +787,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworking_SteamNetworking003_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworking_SteamNetworking003(void *u_iface) +struct w_iface *create_winISteamNetworking_SteamNetworking003( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworking003"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworking003"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworking_SteamNetworking003_vtable, 20, "SteamNetworking003"); r->u_iface = u_iface; @@ -817,11 +817,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking004_GetListenSocketIn DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking004_GetSocketConnectionType, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking004_GetMaxPacketSize, 8) -int8_t __thiscall winISteamNetworking_SteamNetworking004_SendP2PPacket(struct w_steam_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType, int32_t nVirtualPort) +int8_t __thiscall winISteamNetworking_SteamNetworking004_SendP2PPacket(struct w_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType, int32_t nVirtualPort) { struct ISteamNetworking_SteamNetworking004_SendP2PPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, .pubData = pubData, .cubData = cubData, @@ -833,11 +833,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking004_SendP2PPacket(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking004_IsP2PPacketAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize, int32_t nVirtualPort) +int8_t __thiscall winISteamNetworking_SteamNetworking004_IsP2PPacketAvailable(struct w_iface *_this, uint32_t *pcubMsgSize, int32_t nVirtualPort) { struct ISteamNetworking_SteamNetworking004_IsP2PPacketAvailable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcubMsgSize = pcubMsgSize, .nVirtualPort = nVirtualPort, }; @@ -846,11 +846,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking004_IsP2PPacketAvailable(st return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking004_ReadP2PPacket(struct w_steam_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote, int32_t nVirtualPort) +int8_t __thiscall winISteamNetworking_SteamNetworking004_ReadP2PPacket(struct w_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote, int32_t nVirtualPort) { struct ISteamNetworking_SteamNetworking004_ReadP2PPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pubDest = pubDest, .cubDest = cubDest, .pcubMsgSize = pcubMsgSize, @@ -862,11 +862,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking004_ReadP2PPacket(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser(struct w_iface *_this, CSteamID steamIDRemote) { struct ISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, }; TRACE("%p\n", _this); @@ -874,11 +874,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking004_AcceptP2PSessionWithUse return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser(struct w_iface *_this, CSteamID steamIDRemote) { struct ISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, }; TRACE("%p\n", _this); @@ -886,11 +886,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking004_CloseP2PSessionWithUser return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking004_GetP2PSessionState(struct w_steam_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) +int8_t __thiscall winISteamNetworking_SteamNetworking004_GetP2PSessionState(struct w_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) { struct ISteamNetworking_SteamNetworking004_GetP2PSessionState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, .pConnectionState = pConnectionState, }; @@ -899,11 +899,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking004_GetP2PSessionState(stru return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, int8_t bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateListenSocket(struct w_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking004_CreateListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nVirtualP2PPort = nVirtualP2PPort, .nIP = nIP, .nPort = nPort, @@ -914,11 +914,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateListenSocket(st return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, int8_t bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket(struct w_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking004_CreateP2PConnectionSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDTarget = steamIDTarget, .nVirtualPort = nVirtualPort, .nTimeoutSec = nTimeoutSec, @@ -929,11 +929,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateP2PConnectionSo return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateConnectionSocket(struct w_steam_iface *_this, uint32_t nIP, uint16_t nPort, int32_t nTimeoutSec) +uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateConnectionSocket(struct w_iface *_this, uint32_t nIP, uint16_t nPort, int32_t nTimeoutSec) { struct ISteamNetworking_SteamNetworking004_CreateConnectionSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nIP = nIP, .nPort = nPort, .nTimeoutSec = nTimeoutSec, @@ -943,11 +943,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking004_CreateConnectionSocke return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking004_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking004_DestroySocket(struct w_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking004_DestroySocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; @@ -956,11 +956,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking004_DestroySocket(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking004_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking004_DestroyListenSocket(struct w_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking004_DestroyListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; @@ -969,11 +969,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking004_DestroyListenSocket(str return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking004_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, int8_t bReliable) +int8_t __thiscall winISteamNetworking_SteamNetworking004_SendDataOnSocket(struct w_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, int8_t bReliable) { struct ISteamNetworking_SteamNetworking004_SendDataOnSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pubData = pubData, .cubData = cubData, @@ -984,11 +984,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking004_SendDataOnSocket(struct return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket(struct w_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pcubMsgSize = pcubMsgSize, }; @@ -997,11 +997,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking004_IsDataAvailableOnSocket return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking004_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking004_RetrieveDataFromSocket(struct w_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking004_RetrieveDataFromSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pubDest = pubDest, .cubDest = cubDest, @@ -1012,11 +1012,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking004_RetrieveDataFromSocket( return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking004_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking004_IsDataAvailable(struct w_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking004_IsDataAvailable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hListenSocket = hListenSocket, .pcubMsgSize = pcubMsgSize, .phSocket = phSocket, @@ -1026,11 +1026,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking004_IsDataAvailable(struct return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking004_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking004_RetrieveData(struct w_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking004_RetrieveData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hListenSocket = hListenSocket, .pubDest = pubDest, .cubDest = cubDest, @@ -1042,11 +1042,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking004_RetrieveData(struct w_s return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking004_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking004_GetSocketInfo(struct w_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) { struct ISteamNetworking_SteamNetworking004_GetSocketInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pSteamIDRemote = pSteamIDRemote, .peSocketStatus = peSocketStatus, @@ -1058,11 +1058,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking004_GetSocketInfo(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking004_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) +int8_t __thiscall winISteamNetworking_SteamNetworking004_GetListenSocketInfo(struct w_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) { struct ISteamNetworking_SteamNetworking004_GetListenSocketInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hListenSocket = hListenSocket, .pnIP = pnIP, .pnPort = pnPort, @@ -1072,11 +1072,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking004_GetListenSocketInfo(str return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking004_GetSocketConnectionType(struct w_steam_iface *_this, uint32_t hSocket) +uint32_t __thiscall winISteamNetworking_SteamNetworking004_GetSocketConnectionType(struct w_iface *_this, uint32_t hSocket) { struct ISteamNetworking_SteamNetworking004_GetSocketConnectionType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); @@ -1084,11 +1084,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking004_GetSocketConnectionTy return params._ret; } -int32_t __thiscall winISteamNetworking_SteamNetworking004_GetMaxPacketSize(struct w_steam_iface *_this, uint32_t hSocket) +int32_t __thiscall winISteamNetworking_SteamNetworking004_GetMaxPacketSize(struct w_iface *_this, uint32_t hSocket) { struct ISteamNetworking_SteamNetworking004_GetMaxPacketSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); @@ -1125,9 +1125,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworking_SteamNetworking004_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworking_SteamNetworking004(void *u_iface) +struct w_iface *create_winISteamNetworking_SteamNetworking004( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworking004"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworking004"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworking_SteamNetworking004_vtable, 20, "SteamNetworking004"); r->u_iface = u_iface; @@ -1157,11 +1157,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking005_GetListenSocketIn DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking005_GetSocketConnectionType, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking005_GetMaxPacketSize, 8) -int8_t __thiscall winISteamNetworking_SteamNetworking005_SendP2PPacket(struct w_steam_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType, int32_t nChannel) +int8_t __thiscall winISteamNetworking_SteamNetworking005_SendP2PPacket(struct w_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType, int32_t nChannel) { struct ISteamNetworking_SteamNetworking005_SendP2PPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, .pubData = pubData, .cubData = cubData, @@ -1173,11 +1173,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking005_SendP2PPacket(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking005_IsP2PPacketAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize, int32_t nChannel) +int8_t __thiscall winISteamNetworking_SteamNetworking005_IsP2PPacketAvailable(struct w_iface *_this, uint32_t *pcubMsgSize, int32_t nChannel) { struct ISteamNetworking_SteamNetworking005_IsP2PPacketAvailable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcubMsgSize = pcubMsgSize, .nChannel = nChannel, }; @@ -1186,11 +1186,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking005_IsP2PPacketAvailable(st return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking005_ReadP2PPacket(struct w_steam_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote, int32_t nChannel) +int8_t __thiscall winISteamNetworking_SteamNetworking005_ReadP2PPacket(struct w_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote, int32_t nChannel) { struct ISteamNetworking_SteamNetworking005_ReadP2PPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pubDest = pubDest, .cubDest = cubDest, .pcubMsgSize = pcubMsgSize, @@ -1202,11 +1202,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking005_ReadP2PPacket(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser(struct w_iface *_this, CSteamID steamIDRemote) { struct ISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, }; TRACE("%p\n", _this); @@ -1214,11 +1214,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking005_AcceptP2PSessionWithUse return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser(struct w_iface *_this, CSteamID steamIDRemote) { struct ISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, }; TRACE("%p\n", _this); @@ -1226,11 +1226,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking005_CloseP2PSessionWithUser return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote, int32_t nChannel) +int8_t __thiscall winISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser(struct w_iface *_this, CSteamID steamIDRemote, int32_t nChannel) { struct ISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, .nChannel = nChannel, }; @@ -1239,11 +1239,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking005_CloseP2PChannelWithUser return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking005_GetP2PSessionState(struct w_steam_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) +int8_t __thiscall winISteamNetworking_SteamNetworking005_GetP2PSessionState(struct w_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) { struct ISteamNetworking_SteamNetworking005_GetP2PSessionState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, .pConnectionState = pConnectionState, }; @@ -1252,11 +1252,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking005_GetP2PSessionState(stru return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking005_AllowP2PPacketRelay(struct w_steam_iface *_this, int8_t bAllow) +int8_t __thiscall winISteamNetworking_SteamNetworking005_AllowP2PPacketRelay(struct w_iface *_this, int8_t bAllow) { struct ISteamNetworking_SteamNetworking005_AllowP2PPacketRelay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bAllow = bAllow, }; TRACE("%p\n", _this); @@ -1264,11 +1264,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking005_AllowP2PPacketRelay(str return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, int8_t bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateListenSocket(struct w_iface *_this, int32_t nVirtualP2PPort, uint32_t nIP, uint16_t nPort, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking005_CreateListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nVirtualP2PPort = nVirtualP2PPort, .nIP = nIP, .nPort = nPort, @@ -1279,11 +1279,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateListenSocket(st return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, int8_t bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket(struct w_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking005_CreateP2PConnectionSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDTarget = steamIDTarget, .nVirtualPort = nVirtualPort, .nTimeoutSec = nTimeoutSec, @@ -1294,11 +1294,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateP2PConnectionSo return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateConnectionSocket(struct w_steam_iface *_this, uint32_t nIP, uint16_t nPort, int32_t nTimeoutSec) +uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateConnectionSocket(struct w_iface *_this, uint32_t nIP, uint16_t nPort, int32_t nTimeoutSec) { struct ISteamNetworking_SteamNetworking005_CreateConnectionSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nIP = nIP, .nPort = nPort, .nTimeoutSec = nTimeoutSec, @@ -1308,11 +1308,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking005_CreateConnectionSocke return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking005_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking005_DestroySocket(struct w_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking005_DestroySocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; @@ -1321,11 +1321,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking005_DestroySocket(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking005_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking005_DestroyListenSocket(struct w_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking005_DestroyListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; @@ -1334,11 +1334,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking005_DestroyListenSocket(str return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking005_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, int8_t bReliable) +int8_t __thiscall winISteamNetworking_SteamNetworking005_SendDataOnSocket(struct w_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, int8_t bReliable) { struct ISteamNetworking_SteamNetworking005_SendDataOnSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pubData = pubData, .cubData = cubData, @@ -1349,11 +1349,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking005_SendDataOnSocket(struct return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket(struct w_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pcubMsgSize = pcubMsgSize, }; @@ -1362,11 +1362,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking005_IsDataAvailableOnSocket return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking005_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking005_RetrieveDataFromSocket(struct w_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking005_RetrieveDataFromSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pubDest = pubDest, .cubDest = cubDest, @@ -1377,11 +1377,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking005_RetrieveDataFromSocket( return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking005_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking005_IsDataAvailable(struct w_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking005_IsDataAvailable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hListenSocket = hListenSocket, .pcubMsgSize = pcubMsgSize, .phSocket = phSocket, @@ -1391,11 +1391,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking005_IsDataAvailable(struct return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking005_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking005_RetrieveData(struct w_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking005_RetrieveData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hListenSocket = hListenSocket, .pubDest = pubDest, .cubDest = cubDest, @@ -1407,11 +1407,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking005_RetrieveData(struct w_s return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking005_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking005_GetSocketInfo(struct w_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, uint32_t *punIPRemote, uint16_t *punPortRemote) { struct ISteamNetworking_SteamNetworking005_GetSocketInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pSteamIDRemote = pSteamIDRemote, .peSocketStatus = peSocketStatus, @@ -1423,11 +1423,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking005_GetSocketInfo(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking005_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) +int8_t __thiscall winISteamNetworking_SteamNetworking005_GetListenSocketInfo(struct w_iface *_this, uint32_t hListenSocket, uint32_t *pnIP, uint16_t *pnPort) { struct ISteamNetworking_SteamNetworking005_GetListenSocketInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hListenSocket = hListenSocket, .pnIP = pnIP, .pnPort = pnPort, @@ -1437,11 +1437,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking005_GetListenSocketInfo(str return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking005_GetSocketConnectionType(struct w_steam_iface *_this, uint32_t hSocket) +uint32_t __thiscall winISteamNetworking_SteamNetworking005_GetSocketConnectionType(struct w_iface *_this, uint32_t hSocket) { struct ISteamNetworking_SteamNetworking005_GetSocketConnectionType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); @@ -1449,11 +1449,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking005_GetSocketConnectionTy return params._ret; } -int32_t __thiscall winISteamNetworking_SteamNetworking005_GetMaxPacketSize(struct w_steam_iface *_this, uint32_t hSocket) +int32_t __thiscall winISteamNetworking_SteamNetworking005_GetMaxPacketSize(struct w_iface *_this, uint32_t hSocket) { struct ISteamNetworking_SteamNetworking005_GetMaxPacketSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); @@ -1492,9 +1492,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworking_SteamNetworking005_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworking_SteamNetworking005(void *u_iface) +struct w_iface *create_winISteamNetworking_SteamNetworking005( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworking005"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworking005"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworking_SteamNetworking005_vtable, 22, "SteamNetworking005"); r->u_iface = u_iface; @@ -1524,11 +1524,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking006_GetListenSocketIn DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking006_GetSocketConnectionType, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworking_SteamNetworking006_GetMaxPacketSize, 8) -int8_t __thiscall winISteamNetworking_SteamNetworking006_SendP2PPacket(struct w_steam_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType, int32_t nChannel) +int8_t __thiscall winISteamNetworking_SteamNetworking006_SendP2PPacket(struct w_iface *_this, CSteamID steamIDRemote, const void *pubData, uint32_t cubData, uint32_t eP2PSendType, int32_t nChannel) { struct ISteamNetworking_SteamNetworking006_SendP2PPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, .pubData = pubData, .cubData = cubData, @@ -1540,11 +1540,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking006_SendP2PPacket(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking006_IsP2PPacketAvailable(struct w_steam_iface *_this, uint32_t *pcubMsgSize, int32_t nChannel) +int8_t __thiscall winISteamNetworking_SteamNetworking006_IsP2PPacketAvailable(struct w_iface *_this, uint32_t *pcubMsgSize, int32_t nChannel) { struct ISteamNetworking_SteamNetworking006_IsP2PPacketAvailable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcubMsgSize = pcubMsgSize, .nChannel = nChannel, }; @@ -1553,11 +1553,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking006_IsP2PPacketAvailable(st return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking006_ReadP2PPacket(struct w_steam_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote, int32_t nChannel) +int8_t __thiscall winISteamNetworking_SteamNetworking006_ReadP2PPacket(struct w_iface *_this, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, CSteamID *psteamIDRemote, int32_t nChannel) { struct ISteamNetworking_SteamNetworking006_ReadP2PPacket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pubDest = pubDest, .cubDest = cubDest, .pcubMsgSize = pcubMsgSize, @@ -1569,11 +1569,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking006_ReadP2PPacket(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser(struct w_iface *_this, CSteamID steamIDRemote) { struct ISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, }; TRACE("%p\n", _this); @@ -1581,11 +1581,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking006_AcceptP2PSessionWithUse return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser(struct w_iface *_this, CSteamID steamIDRemote) { struct ISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, }; TRACE("%p\n", _this); @@ -1593,11 +1593,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking006_CloseP2PSessionWithUser return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser(struct w_steam_iface *_this, CSteamID steamIDRemote, int32_t nChannel) +int8_t __thiscall winISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser(struct w_iface *_this, CSteamID steamIDRemote, int32_t nChannel) { struct ISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, .nChannel = nChannel, }; @@ -1606,11 +1606,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking006_CloseP2PChannelWithUser return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking006_GetP2PSessionState(struct w_steam_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) +int8_t __thiscall winISteamNetworking_SteamNetworking006_GetP2PSessionState(struct w_iface *_this, CSteamID steamIDRemote, P2PSessionState_t *pConnectionState) { struct ISteamNetworking_SteamNetworking006_GetP2PSessionState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, .pConnectionState = pConnectionState, }; @@ -1619,11 +1619,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking006_GetP2PSessionState(stru return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking006_AllowP2PPacketRelay(struct w_steam_iface *_this, int8_t bAllow) +int8_t __thiscall winISteamNetworking_SteamNetworking006_AllowP2PPacketRelay(struct w_iface *_this, int8_t bAllow) { struct ISteamNetworking_SteamNetworking006_AllowP2PPacketRelay_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bAllow = bAllow, }; TRACE("%p\n", _this); @@ -1631,11 +1631,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking006_AllowP2PPacketRelay(str return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateListenSocket(struct w_steam_iface *_this, int32_t nVirtualP2PPort, SteamIPAddress_t nIP, uint16_t nPort, int8_t bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateListenSocket(struct w_iface *_this, int32_t nVirtualP2PPort, SteamIPAddress_t nIP, uint16_t nPort, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking006_CreateListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nVirtualP2PPort = nVirtualP2PPort, .nIP = nIP, .nPort = nPort, @@ -1646,11 +1646,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateListenSocket(st return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket(struct w_steam_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, int8_t bAllowUseOfPacketRelay) +uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket(struct w_iface *_this, CSteamID steamIDTarget, int32_t nVirtualPort, int32_t nTimeoutSec, int8_t bAllowUseOfPacketRelay) { struct ISteamNetworking_SteamNetworking006_CreateP2PConnectionSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDTarget = steamIDTarget, .nVirtualPort = nVirtualPort, .nTimeoutSec = nTimeoutSec, @@ -1661,11 +1661,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateP2PConnectionSo return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateConnectionSocket(struct w_steam_iface *_this, SteamIPAddress_t nIP, uint16_t nPort, int32_t nTimeoutSec) +uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateConnectionSocket(struct w_iface *_this, SteamIPAddress_t nIP, uint16_t nPort, int32_t nTimeoutSec) { struct ISteamNetworking_SteamNetworking006_CreateConnectionSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nIP = nIP, .nPort = nPort, .nTimeoutSec = nTimeoutSec, @@ -1675,11 +1675,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking006_CreateConnectionSocke return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking006_DestroySocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking006_DestroySocket(struct w_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking006_DestroySocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; @@ -1688,11 +1688,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking006_DestroySocket(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking006_DestroyListenSocket(struct w_steam_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) +int8_t __thiscall winISteamNetworking_SteamNetworking006_DestroyListenSocket(struct w_iface *_this, uint32_t hSocket, int8_t bNotifyRemoteEnd) { struct ISteamNetworking_SteamNetworking006_DestroyListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .bNotifyRemoteEnd = bNotifyRemoteEnd, }; @@ -1701,11 +1701,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking006_DestroyListenSocket(str return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking006_SendDataOnSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, int8_t bReliable) +int8_t __thiscall winISteamNetworking_SteamNetworking006_SendDataOnSocket(struct w_iface *_this, uint32_t hSocket, void *pubData, uint32_t cubData, int8_t bReliable) { struct ISteamNetworking_SteamNetworking006_SendDataOnSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pubData = pubData, .cubData = cubData, @@ -1716,11 +1716,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking006_SendDataOnSocket(struct return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket(struct w_steam_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket(struct w_iface *_this, uint32_t hSocket, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pcubMsgSize = pcubMsgSize, }; @@ -1729,11 +1729,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking006_IsDataAvailableOnSocket return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking006_RetrieveDataFromSocket(struct w_steam_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) +int8_t __thiscall winISteamNetworking_SteamNetworking006_RetrieveDataFromSocket(struct w_iface *_this, uint32_t hSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize) { struct ISteamNetworking_SteamNetworking006_RetrieveDataFromSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pubDest = pubDest, .cubDest = cubDest, @@ -1744,11 +1744,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking006_RetrieveDataFromSocket( return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking006_IsDataAvailable(struct w_steam_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking006_IsDataAvailable(struct w_iface *_this, uint32_t hListenSocket, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking006_IsDataAvailable_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hListenSocket = hListenSocket, .pcubMsgSize = pcubMsgSize, .phSocket = phSocket, @@ -1758,11 +1758,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking006_IsDataAvailable(struct return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking006_RetrieveData(struct w_steam_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) +int8_t __thiscall winISteamNetworking_SteamNetworking006_RetrieveData(struct w_iface *_this, uint32_t hListenSocket, void *pubDest, uint32_t cubDest, uint32_t *pcubMsgSize, uint32_t *phSocket) { struct ISteamNetworking_SteamNetworking006_RetrieveData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hListenSocket = hListenSocket, .pubDest = pubDest, .cubDest = cubDest, @@ -1774,11 +1774,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking006_RetrieveData(struct w_s return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking006_GetSocketInfo(struct w_steam_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, SteamIPAddress_t *punIPRemote, uint16_t *punPortRemote) +int8_t __thiscall winISteamNetworking_SteamNetworking006_GetSocketInfo(struct w_iface *_this, uint32_t hSocket, CSteamID *pSteamIDRemote, int32_t *peSocketStatus, SteamIPAddress_t *punIPRemote, uint16_t *punPortRemote) { struct ISteamNetworking_SteamNetworking006_GetSocketInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .pSteamIDRemote = pSteamIDRemote, .peSocketStatus = peSocketStatus, @@ -1790,11 +1790,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking006_GetSocketInfo(struct w_ return params._ret; } -int8_t __thiscall winISteamNetworking_SteamNetworking006_GetListenSocketInfo(struct w_steam_iface *_this, uint32_t hListenSocket, SteamIPAddress_t *pnIP, uint16_t *pnPort) +int8_t __thiscall winISteamNetworking_SteamNetworking006_GetListenSocketInfo(struct w_iface *_this, uint32_t hListenSocket, SteamIPAddress_t *pnIP, uint16_t *pnPort) { struct ISteamNetworking_SteamNetworking006_GetListenSocketInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hListenSocket = hListenSocket, .pnIP = pnIP, .pnPort = pnPort, @@ -1804,11 +1804,11 @@ int8_t __thiscall winISteamNetworking_SteamNetworking006_GetListenSocketInfo(str return params._ret; } -uint32_t __thiscall winISteamNetworking_SteamNetworking006_GetSocketConnectionType(struct w_steam_iface *_this, uint32_t hSocket) +uint32_t __thiscall winISteamNetworking_SteamNetworking006_GetSocketConnectionType(struct w_iface *_this, uint32_t hSocket) { struct ISteamNetworking_SteamNetworking006_GetSocketConnectionType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); @@ -1816,11 +1816,11 @@ uint32_t __thiscall winISteamNetworking_SteamNetworking006_GetSocketConnectionTy return params._ret; } -int32_t __thiscall winISteamNetworking_SteamNetworking006_GetMaxPacketSize(struct w_steam_iface *_this, uint32_t hSocket) +int32_t __thiscall winISteamNetworking_SteamNetworking006_GetMaxPacketSize(struct w_iface *_this, uint32_t hSocket) { struct ISteamNetworking_SteamNetworking006_GetMaxPacketSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); @@ -1859,9 +1859,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworking_SteamNetworking006_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworking_SteamNetworking006(void *u_iface) +struct w_iface *create_winISteamNetworking_SteamNetworking006( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworking006"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworking006"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworking_SteamNetworking006_vtable, 22, "SteamNetworking006"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamNetworkingFakeUDPPort.c b/lsteamclient/winISteamNetworkingFakeUDPPort.c index 06d96ec8..0198dbe1 100644 --- a/lsteamclient/winISteamNetworkingFakeUDPPort.c +++ b/lsteamclient/winISteamNetworkingFakeUDPPort.c @@ -8,11 +8,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPor DEFINE_THISCALL_WRAPPER(winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ReceiveMessages, 12) DEFINE_THISCALL_WRAPPER(winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup, 8) -uint32_t __thiscall winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP(struct w_steam_iface *_this, const SteamNetworkingIPAddr *remoteAddress, const void *pData, uint32_t cbData, int32_t nSendFlags) +uint32_t __thiscall winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP(struct w_iface *_this, const SteamNetworkingIPAddr *remoteAddress, const void *pData, uint32_t cbData, int32_t nSendFlags) { struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_SendMessageToFakeIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .remoteAddress = remoteAddress, .pData = pData, .cbData = cbData, @@ -23,11 +23,11 @@ uint32_t __thiscall winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001 return params._ret; } -void __thiscall winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup(struct w_steam_iface *_this, const SteamNetworkingIPAddr *remoteAddress) +void __thiscall winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup(struct w_iface *_this, const SteamNetworkingIPAddr *remoteAddress) { struct ISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_ScheduleCleanup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .remoteAddress = remoteAddress, }; TRACE("%p\n", _this); @@ -47,9 +47,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_v ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001(void *u_iface) +struct w_iface *create_winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworkingFakeUDPPort001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingFakeUDPPort001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworkingFakeUDPPort_SteamNetworkingFakeUDPPort001_vtable, 4, "SteamNetworkingFakeUDPPort001"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamNetworkingMessages.c b/lsteamclient/winISteamNetworkingMessages.c index 97c374f9..00412ade 100644 --- a/lsteamclient/winISteamNetworkingMessages.c +++ b/lsteamclient/winISteamNetworkingMessages.c @@ -10,11 +10,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingMessages_SteamNetworkingMessages002_C DEFINE_THISCALL_WRAPPER(winISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser, 12) DEFINE_THISCALL_WRAPPER(winISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo, 16) -uint32_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, const void *pubData, uint32_t cubData, int32_t nSendFlags, int32_t nRemoteChannel) +uint32_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, const void *pubData, uint32_t cubData, int32_t nSendFlags, int32_t nRemoteChannel) { struct ISteamNetworkingMessages_SteamNetworkingMessages002_SendMessageToUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityRemote = identityRemote, .pubData = pubData, .cubData = cubData, @@ -26,11 +26,11 @@ uint32_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_SendM return params._ret; } -int8_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote) +int8_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityRemote) { struct ISteamNetworkingMessages_SteamNetworkingMessages002_AcceptSessionWithUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityRemote = identityRemote, }; TRACE("%p\n", _this); @@ -38,11 +38,11 @@ int8_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_AcceptS return params._ret; } -int8_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote) +int8_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityRemote) { struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseSessionWithUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityRemote = identityRemote, }; TRACE("%p\n", _this); @@ -50,11 +50,11 @@ int8_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_CloseSe return params._ret; } -int8_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nLocalChannel) +int8_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nLocalChannel) { struct ISteamNetworkingMessages_SteamNetworkingMessages002_CloseChannelWithUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityRemote = identityRemote, .nLocalChannel = nLocalChannel, }; @@ -63,11 +63,11 @@ int8_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_CloseCh return params._ret; } -uint32_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, SteamNetConnectionInfo_t_153a *pConnectionInfo, SteamNetConnectionRealTimeStatus_t *pQuickStatus) +uint32_t __thiscall winISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, SteamNetConnectionInfo_t_153a *pConnectionInfo, SteamNetConnectionRealTimeStatus_t *pQuickStatus) { struct ISteamNetworkingMessages_SteamNetworkingMessages002_GetSessionConnectionInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityRemote = identityRemote, .pConnectionInfo = pConnectionInfo, .pQuickStatus = pQuickStatus, @@ -92,9 +92,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingMessages_SteamNetworkingMessages002_vtables ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworkingMessages_SteamNetworkingMessages002(void *u_iface) +struct w_iface *create_winISteamNetworkingMessages_SteamNetworkingMessages002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworkingMessages002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingMessages002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworkingMessages_SteamNetworkingMessages002_vtable, 6, "SteamNetworkingMessages002"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamNetworkingSockets.c b/lsteamclient/winISteamNetworkingSockets.c index ce08e4dd..8c7c64c9 100644 --- a/lsteamclient/winISteamNetworkingSockets.c +++ b/lsteamclient/winISteamNetworkingSockets.c @@ -33,11 +33,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets002_Get DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets002_destructor, 4) -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP(struct w_steam_iface *_this, const SteamNetworkingIPAddr *localAddress) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP(struct w_iface *_this, const SteamNetworkingIPAddr *localAddress) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .localAddress = localAddress, }; TRACE("%p\n", _this); @@ -45,11 +45,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateL return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress(struct w_steam_iface *_this, const SteamNetworkingIPAddr *address) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress(struct w_iface *_this, const SteamNetworkingIPAddr *address) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectByIPAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .address = address, }; TRACE("%p\n", _this); @@ -57,11 +57,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_Connect return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P(struct w_steam_iface *_this, int32_t nVirtualPort) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P(struct w_iface *_this, int32_t nVirtualPort) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateListenSocketP2P_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nVirtualPort = nVirtualPort, }; TRACE("%p\n", _this); @@ -69,11 +69,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateL return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nVirtualPort) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nVirtualPort) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectP2P_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityRemote = identityRemote, .nVirtualPort = nVirtualPort, }; @@ -82,11 +82,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_Connect return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection(struct w_steam_iface *_this, uint32_t hConn) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection(struct w_iface *_this, uint32_t hConn) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_AcceptConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); @@ -94,11 +94,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_AcceptC return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, int8_t bEnableLinger) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection(struct w_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, int8_t bEnableLinger) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .nReason = nReason, .pszDebug = pszDebug, @@ -110,11 +110,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CloseConn return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket(struct w_iface *_this, uint32_t hSocket) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_CloseListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); @@ -122,11 +122,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CloseList return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData(struct w_iface *_this, uint32_t hPeer, int64_t nUserData) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .nUserData = nUserData, }; @@ -135,11 +135,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_SetConnec return params._ret; } -int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer) +int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData(struct w_iface *_this, uint32_t hPeer) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, }; TRACE("%p\n", _this); @@ -147,11 +147,11 @@ int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetConne return params._ret; } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, const char *pszName) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName(struct w_iface *_this, uint32_t hPeer, const char *pszName) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .pszName = pszName, }; @@ -160,11 +160,11 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_SetConnecti STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_SetConnectionName, ¶ms ); } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName(struct w_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .pszName = pszName, .nMaxLen = nMaxLen, @@ -174,11 +174,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetConnec return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection(struct w_steam_iface *_this, uint32_t hConn, const void *pData, uint32_t cbData, int32_t nSendFlags) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection(struct w_iface *_this, uint32_t hConn, const void *pData, uint32_t cbData, int32_t nSendFlags) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_SendMessageToConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pData = pData, .cbData = cbData, @@ -189,11 +189,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_SendMes return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection(struct w_steam_iface *_this, uint32_t hConn) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection(struct w_iface *_this, uint32_t hConn) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_FlushMessagesOnConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); @@ -201,11 +201,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_FlushMe return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo(struct w_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetConnectionInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pInfo = pInfo, }; @@ -214,11 +214,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetConnec return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus(struct w_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickConnectionStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pStats = pStats, }; @@ -227,11 +227,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetQuickC return params._ret; } -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, char *pszBuf, int32_t cbBuf) +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus(struct w_iface *_this, uint32_t hConn, char *pszBuf, int32_t cbBuf) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetDetailedConnectionStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pszBuf = pszBuf, .cbBuf = cbBuf, @@ -241,11 +241,11 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetDetai return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress(struct w_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetListenSocketAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .address = address, }; @@ -254,11 +254,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetListen return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, int8_t bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair(struct w_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, int8_t bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateSocketPair_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pOutConnection1 = pOutConnection1, .pOutConnection2 = pOutConnection2, .bUseNetworkLoopback = bUseNetworkLoopback, @@ -270,11 +270,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateSoc return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity(struct w_iface *_this, SteamNetworkingIdentity_144 *pIdentity) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetIdentity_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pIdentity = pIdentity, }; TRACE("%p\n", _this); @@ -282,11 +282,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetIdenti return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket(struct w_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedRelayAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvTicket = pvTicket, .cbTicket = cbTicket, .pOutParsedTicket = pOutParsedTicket, @@ -296,11 +296,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ReceivedR return params._ret; } -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityGameServer, int32_t nVirtualPort, SteamDatagramRelayAuthTicket *pOutParsedTicket) +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityGameServer, int32_t nVirtualPort, SteamDatagramRelayAuthTicket *pOutParsedTicket) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_FindRelayAuthTicketForServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityGameServer = identityGameServer, .nVirtualPort = nVirtualPort, .pOutParsedTicket = pOutParsedTicket, @@ -310,11 +310,11 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_FindRela return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityTarget, int32_t nVirtualPort) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityTarget, int32_t nVirtualPort) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_ConnectToHostedDedicatedServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityTarget = identityTarget, .nVirtualPort = nVirtualPort, }; @@ -323,33 +323,33 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_Connect return params._ret; } -uint16_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort(struct w_steam_iface *_this) +uint16_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPort, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerPOPID, ¶ms ); return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress(struct w_steam_iface *_this, SteamDatagramHostedAddress *pRouting) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress(struct w_iface *_this, SteamDatagramHostedAddress *pRouting) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_GetHostedDedicatedServerAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pRouting = pRouting, }; TRACE("%p\n", _this); @@ -357,11 +357,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_GetHosted return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket(struct w_steam_iface *_this, int32_t nVirtualPort) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket(struct w_iface *_this, int32_t nVirtualPort) { struct ISteamNetworkingSockets_SteamNetworkingSockets002_CreateHostedDedicatedServerListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nVirtualPort = nVirtualPort, }; TRACE("%p\n", _this); @@ -369,7 +369,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_CreateH return params._ret; } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_destructor(struct w_steam_iface *_this) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets002_destructor(struct w_iface *_this) {/* never called */} extern vtable_ptr winISteamNetworkingSockets_SteamNetworkingSockets002_vtable; @@ -410,9 +410,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingSockets_SteamNetworkingSockets002_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets002(void *u_iface) +struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworkingSockets002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingSockets002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworkingSockets_SteamNetworkingSockets002_vtable, 29, "SteamNetworkingSockets002"); r->u_iface = u_iface; @@ -452,11 +452,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets004_Cre DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin, 16) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets004_destructor, 4) -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP(struct w_steam_iface *_this, const SteamNetworkingIPAddr *localAddress) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP(struct w_iface *_this, const SteamNetworkingIPAddr *localAddress) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .localAddress = localAddress, }; TRACE("%p\n", _this); @@ -464,11 +464,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateL return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress(struct w_steam_iface *_this, const SteamNetworkingIPAddr *address) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress(struct w_iface *_this, const SteamNetworkingIPAddr *address) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectByIPAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .address = address, }; TRACE("%p\n", _this); @@ -476,11 +476,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_Connect return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P(struct w_steam_iface *_this, int32_t nVirtualPort) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P(struct w_iface *_this, int32_t nVirtualPort) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateListenSocketP2P_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nVirtualPort = nVirtualPort, }; TRACE("%p\n", _this); @@ -488,11 +488,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateL return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nVirtualPort) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nVirtualPort) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectP2P_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityRemote = identityRemote, .nVirtualPort = nVirtualPort, }; @@ -501,11 +501,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_Connect return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection(struct w_steam_iface *_this, uint32_t hConn) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection(struct w_iface *_this, uint32_t hConn) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_AcceptConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); @@ -513,11 +513,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_AcceptC return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, int8_t bEnableLinger) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection(struct w_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, int8_t bEnableLinger) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .nReason = nReason, .pszDebug = pszDebug, @@ -529,11 +529,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CloseConn return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket(struct w_iface *_this, uint32_t hSocket) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_CloseListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); @@ -541,11 +541,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CloseList return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData(struct w_iface *_this, uint32_t hPeer, int64_t nUserData) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .nUserData = nUserData, }; @@ -554,11 +554,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_SetConnec return params._ret; } -int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer) +int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData(struct w_iface *_this, uint32_t hPeer) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, }; TRACE("%p\n", _this); @@ -566,11 +566,11 @@ int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetConne return params._ret; } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, const char *pszName) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName(struct w_iface *_this, uint32_t hPeer, const char *pszName) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .pszName = pszName, }; @@ -579,11 +579,11 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_SetConnecti STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_SetConnectionName, ¶ms ); } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName(struct w_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .pszName = pszName, .nMaxLen = nMaxLen, @@ -593,11 +593,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetConnec return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection(struct w_steam_iface *_this, uint32_t hConn, const void *pData, uint32_t cbData, int32_t nSendFlags) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection(struct w_iface *_this, uint32_t hConn, const void *pData, uint32_t cbData, int32_t nSendFlags) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_SendMessageToConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pData = pData, .cbData = cbData, @@ -608,11 +608,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_SendMes return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection(struct w_steam_iface *_this, uint32_t hConn) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection(struct w_iface *_this, uint32_t hConn) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_FlushMessagesOnConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); @@ -620,11 +620,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_FlushMe return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo(struct w_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetConnectionInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pInfo = pInfo, }; @@ -633,11 +633,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetConnec return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus(struct w_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickConnectionStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pStats = pStats, }; @@ -646,11 +646,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetQuickC return params._ret; } -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, char *pszBuf, int32_t cbBuf) +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus(struct w_iface *_this, uint32_t hConn, char *pszBuf, int32_t cbBuf) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetDetailedConnectionStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pszBuf = pszBuf, .cbBuf = cbBuf, @@ -660,11 +660,11 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetDetai return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress(struct w_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetListenSocketAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .address = address, }; @@ -673,11 +673,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetListen return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, int8_t bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair(struct w_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, int8_t bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateSocketPair_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pOutConnection1 = pOutConnection1, .pOutConnection2 = pOutConnection2, .bUseNetworkLoopback = bUseNetworkLoopback, @@ -689,11 +689,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateSoc return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity(struct w_iface *_this, SteamNetworkingIdentity_144 *pIdentity) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetIdentity_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pIdentity = pIdentity, }; TRACE("%p\n", _this); @@ -701,22 +701,22 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetIdenti return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_InitAuthentication, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus(struct w_steam_iface *_this, SteamNetAuthenticationStatus_t *pDetails) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus(struct w_iface *_this, SteamNetAuthenticationStatus_t *pDetails) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetAuthenticationStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDetails = pDetails, }; TRACE("%p\n", _this); @@ -724,11 +724,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetAuth return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket(struct w_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedRelayAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvTicket = pvTicket, .cbTicket = cbTicket, .pOutParsedTicket = pOutParsedTicket, @@ -738,11 +738,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ReceivedR return params._ret; } -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityGameServer, int32_t nVirtualPort, SteamDatagramRelayAuthTicket *pOutParsedTicket) +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityGameServer, int32_t nVirtualPort, SteamDatagramRelayAuthTicket *pOutParsedTicket) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_FindRelayAuthTicketForServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityGameServer = identityGameServer, .nVirtualPort = nVirtualPort, .pOutParsedTicket = pOutParsedTicket, @@ -752,11 +752,11 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_FindRela return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityTarget, int32_t nVirtualPort) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityTarget, int32_t nVirtualPort) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_ConnectToHostedDedicatedServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityTarget = identityTarget, .nVirtualPort = nVirtualPort, }; @@ -765,33 +765,33 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_Connect return params._ret; } -uint16_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort(struct w_steam_iface *_this) +uint16_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPort, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerPOPID, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress(struct w_steam_iface *_this, SteamDatagramHostedAddress *pRouting) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress(struct w_iface *_this, SteamDatagramHostedAddress *pRouting) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetHostedDedicatedServerAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pRouting = pRouting, }; TRACE("%p\n", _this); @@ -799,11 +799,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetHost return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket(struct w_steam_iface *_this, int32_t nVirtualPort) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket(struct w_iface *_this, int32_t nVirtualPort) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_CreateHostedDedicatedServerListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nVirtualPort = nVirtualPort, }; TRACE("%p\n", _this); @@ -811,11 +811,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_CreateH return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin(struct w_steam_iface *_this, SteamDatagramGameCoordinatorServerLogin *pLoginInfo, int32_t *pcbSignedBlob, void *pBlob) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin(struct w_iface *_this, SteamDatagramGameCoordinatorServerLogin *pLoginInfo, int32_t *pcbSignedBlob, void *pBlob) { struct ISteamNetworkingSockets_SteamNetworkingSockets004_GetGameCoordinatorServerLogin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pLoginInfo = pLoginInfo, .pcbSignedBlob = pcbSignedBlob, .pBlob = pBlob, @@ -825,7 +825,7 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_GetGame return params._ret; } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_destructor(struct w_steam_iface *_this) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets004_destructor(struct w_iface *_this) {/* never called */} extern vtable_ptr winISteamNetworkingSockets_SteamNetworkingSockets004_vtable; @@ -869,9 +869,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingSockets_SteamNetworkingSockets004_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets004(void *u_iface) +struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets004( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworkingSockets004"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingSockets004"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworkingSockets_SteamNetworkingSockets004_vtable, 32, "SteamNetworkingSockets004"); r->u_iface = u_iface; @@ -914,11 +914,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets006_Con DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal, 16) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets006_destructor, 4) -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP(struct w_steam_iface *_this, const SteamNetworkingIPAddr *localAddress, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP(struct w_iface *_this, const SteamNetworkingIPAddr *localAddress, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .localAddress = localAddress, .nOptions = nOptions, .pOptions = pOptions, @@ -928,11 +928,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateL return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress(struct w_steam_iface *_this, const SteamNetworkingIPAddr *address, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress(struct w_iface *_this, const SteamNetworkingIPAddr *address, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectByIPAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .address = address, .nOptions = nOptions, .pOptions = pOptions, @@ -942,11 +942,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_Connect return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P(struct w_steam_iface *_this, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P(struct w_iface *_this, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateListenSocketP2P_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nVirtualPort = nVirtualPort, .nOptions = nOptions, .pOptions = pOptions, @@ -956,11 +956,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateL return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2P_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityRemote = identityRemote, .nVirtualPort = nVirtualPort, .nOptions = nOptions, @@ -971,11 +971,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_Connect return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection(struct w_steam_iface *_this, uint32_t hConn) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection(struct w_iface *_this, uint32_t hConn) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_AcceptConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); @@ -983,11 +983,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_AcceptC return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, int8_t bEnableLinger) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection(struct w_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, int8_t bEnableLinger) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .nReason = nReason, .pszDebug = pszDebug, @@ -999,11 +999,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CloseConn return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket(struct w_iface *_this, uint32_t hSocket) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_CloseListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); @@ -1011,11 +1011,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CloseList return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData(struct w_iface *_this, uint32_t hPeer, int64_t nUserData) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .nUserData = nUserData, }; @@ -1024,11 +1024,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SetConnec return params._ret; } -int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer) +int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData(struct w_iface *_this, uint32_t hPeer) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, }; TRACE("%p\n", _this); @@ -1036,11 +1036,11 @@ int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetConne return params._ret; } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, const char *pszName) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName(struct w_iface *_this, uint32_t hPeer, const char *pszName) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .pszName = pszName, }; @@ -1049,11 +1049,11 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SetConnecti STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_SetConnectionName, ¶ms ); } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName(struct w_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .pszName = pszName, .nMaxLen = nMaxLen, @@ -1063,11 +1063,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetConnec return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection(struct w_steam_iface *_this, uint32_t hConn, const void *pData, uint32_t cbData, int32_t nSendFlags, int64_t *pOutMessageNumber) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection(struct w_iface *_this, uint32_t hConn, const void *pData, uint32_t cbData, int32_t nSendFlags, int64_t *pOutMessageNumber) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_SendMessageToConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pData = pData, .cbData = cbData, @@ -1079,11 +1079,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_SendMes return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection(struct w_steam_iface *_this, uint32_t hConn) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection(struct w_iface *_this, uint32_t hConn) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_FlushMessagesOnConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); @@ -1091,11 +1091,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_FlushMe return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo(struct w_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetConnectionInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pInfo = pInfo, }; @@ -1104,11 +1104,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetConnec return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus(struct w_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickConnectionStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pStats = pStats, }; @@ -1117,11 +1117,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetQuickC return params._ret; } -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, char *pszBuf, int32_t cbBuf) +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus(struct w_iface *_this, uint32_t hConn, char *pszBuf, int32_t cbBuf) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetDetailedConnectionStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pszBuf = pszBuf, .cbBuf = cbBuf, @@ -1131,11 +1131,11 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetDetai return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress(struct w_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetListenSocketAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .address = address, }; @@ -1144,11 +1144,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetListen return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, int8_t bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair(struct w_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, int8_t bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateSocketPair_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pOutConnection1 = pOutConnection1, .pOutConnection2 = pOutConnection2, .bUseNetworkLoopback = bUseNetworkLoopback, @@ -1160,11 +1160,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateSoc return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity(struct w_iface *_this, SteamNetworkingIdentity_144 *pIdentity) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetIdentity_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pIdentity = pIdentity, }; TRACE("%p\n", _this); @@ -1172,22 +1172,22 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetIdenti return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_InitAuthentication, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus(struct w_steam_iface *_this, SteamNetAuthenticationStatus_t *pDetails) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus(struct w_iface *_this, SteamNetAuthenticationStatus_t *pDetails) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetAuthenticationStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDetails = pDetails, }; TRACE("%p\n", _this); @@ -1195,11 +1195,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetAuth return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket(struct w_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedRelayAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvTicket = pvTicket, .cbTicket = cbTicket, .pOutParsedTicket = pOutParsedTicket, @@ -1209,11 +1209,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedR return params._ret; } -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityGameServer, int32_t nVirtualPort, SteamDatagramRelayAuthTicket *pOutParsedTicket) +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityGameServer, int32_t nVirtualPort, SteamDatagramRelayAuthTicket *pOutParsedTicket) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_FindRelayAuthTicketForServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityGameServer = identityGameServer, .nVirtualPort = nVirtualPort, .pOutParsedTicket = pOutParsedTicket, @@ -1223,11 +1223,11 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_FindRela return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityTarget, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityTarget, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectToHostedDedicatedServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityTarget = identityTarget, .nVirtualPort = nVirtualPort, .nOptions = nOptions, @@ -1238,33 +1238,33 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_Connect return params._ret; } -uint16_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort(struct w_steam_iface *_this) +uint16_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPort, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerPOPID, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress(struct w_steam_iface *_this, SteamDatagramHostedAddress *pRouting) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress(struct w_iface *_this, SteamDatagramHostedAddress *pRouting) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetHostedDedicatedServerAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pRouting = pRouting, }; TRACE("%p\n", _this); @@ -1272,11 +1272,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetHost return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket(struct w_steam_iface *_this, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket(struct w_iface *_this, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_CreateHostedDedicatedServerListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nVirtualPort = nVirtualPort, .nOptions = nOptions, .pOptions = pOptions, @@ -1286,11 +1286,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_CreateH return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin(struct w_steam_iface *_this, SteamDatagramGameCoordinatorServerLogin *pLoginInfo, int32_t *pcbSignedBlob, void *pBlob) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin(struct w_iface *_this, SteamDatagramGameCoordinatorServerLogin *pLoginInfo, int32_t *pcbSignedBlob, void *pBlob) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_GetGameCoordinatorServerLogin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pLoginInfo = pLoginInfo, .pcbSignedBlob = pcbSignedBlob, .pBlob = pBlob, @@ -1300,11 +1300,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_GetGame return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling(struct w_steam_iface *_this, w_ISteamNetworkingConnectionCustomSignaling *pSignaling, const SteamNetworkingIdentity_144 *pPeerIdentity, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling(struct w_iface *_this, w_ISteamNetworkingConnectionCustomSignaling *pSignaling, const SteamNetworkingIdentity_144 *pPeerIdentity, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_ConnectP2PCustomSignaling_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pSignaling = pSignaling, .pPeerIdentity = pPeerIdentity, .nOptions = nOptions, @@ -1315,11 +1315,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_Connect return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal(struct w_steam_iface *_this, const void *pMsg, int32_t cbMsg, w_ISteamNetworkingCustomSignalingRecvContext *pContext) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal(struct w_iface *_this, const void *pMsg, int32_t cbMsg, w_ISteamNetworkingCustomSignalingRecvContext *pContext) { struct ISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP2PCustomSignal_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pMsg = pMsg, .cbMsg = cbMsg, .pContext = pContext, @@ -1329,7 +1329,7 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_ReceivedP return params._ret; } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_destructor(struct w_steam_iface *_this) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets006_destructor(struct w_iface *_this) {/* never called */} extern vtable_ptr winISteamNetworkingSockets_SteamNetworkingSockets006_vtable; @@ -1376,9 +1376,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingSockets_SteamNetworkingSockets006_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets006(void *u_iface) +struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets006( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworkingSockets006"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingSockets006"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworkingSockets_SteamNetworkingSockets006_vtable, 35, "SteamNetworkingSockets006"); r->u_iface = u_iface; @@ -1426,11 +1426,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets008_Get DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate, 16) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets008_destructor, 4) -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP(struct w_steam_iface *_this, const SteamNetworkingIPAddr *localAddress, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP(struct w_iface *_this, const SteamNetworkingIPAddr *localAddress, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .localAddress = localAddress, .nOptions = nOptions, .pOptions = pOptions, @@ -1440,11 +1440,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateL return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress(struct w_steam_iface *_this, const SteamNetworkingIPAddr *address, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress(struct w_iface *_this, const SteamNetworkingIPAddr *address, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectByIPAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .address = address, .nOptions = nOptions, .pOptions = pOptions, @@ -1454,11 +1454,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_Connect return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P(struct w_steam_iface *_this, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P(struct w_iface *_this, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateListenSocketP2P_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nVirtualPort = nVirtualPort, .nOptions = nOptions, .pOptions = pOptions, @@ -1468,11 +1468,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateL return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2P_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityRemote = identityRemote, .nVirtualPort = nVirtualPort, .nOptions = nOptions, @@ -1483,11 +1483,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_Connect return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection(struct w_steam_iface *_this, uint32_t hConn) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection(struct w_iface *_this, uint32_t hConn) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_AcceptConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); @@ -1495,11 +1495,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_AcceptC return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, int8_t bEnableLinger) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection(struct w_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, int8_t bEnableLinger) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .nReason = nReason, .pszDebug = pszDebug, @@ -1511,11 +1511,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CloseConn return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket(struct w_iface *_this, uint32_t hSocket) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_CloseListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); @@ -1523,11 +1523,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CloseList return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData(struct w_iface *_this, uint32_t hPeer, int64_t nUserData) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .nUserData = nUserData, }; @@ -1536,11 +1536,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetConnec return params._ret; } -int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer) +int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData(struct w_iface *_this, uint32_t hPeer) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, }; TRACE("%p\n", _this); @@ -1548,11 +1548,11 @@ int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetConne return params._ret; } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, const char *pszName) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName(struct w_iface *_this, uint32_t hPeer, const char *pszName) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .pszName = pszName, }; @@ -1561,11 +1561,11 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetConnecti STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionName, ¶ms ); } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName(struct w_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .pszName = pszName, .nMaxLen = nMaxLen, @@ -1575,11 +1575,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetConnec return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection(struct w_steam_iface *_this, uint32_t hConn, const void *pData, uint32_t cbData, int32_t nSendFlags, int64_t *pOutMessageNumber) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection(struct w_iface *_this, uint32_t hConn, const void *pData, uint32_t cbData, int32_t nSendFlags, int64_t *pOutMessageNumber) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_SendMessageToConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pData = pData, .cbData = cbData, @@ -1591,11 +1591,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SendMes return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection(struct w_steam_iface *_this, uint32_t hConn) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection(struct w_iface *_this, uint32_t hConn) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_FlushMessagesOnConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); @@ -1603,11 +1603,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_FlushMe return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo(struct w_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetConnectionInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pInfo = pInfo, }; @@ -1616,11 +1616,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetConnec return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus(struct w_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickConnectionStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pStats = pStats, }; @@ -1629,11 +1629,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetQuickC return params._ret; } -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, char *pszBuf, int32_t cbBuf) +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus(struct w_iface *_this, uint32_t hConn, char *pszBuf, int32_t cbBuf) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetDetailedConnectionStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pszBuf = pszBuf, .cbBuf = cbBuf, @@ -1643,11 +1643,11 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetDetai return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress(struct w_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetListenSocketAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .address = address, }; @@ -1656,11 +1656,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetListen return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, int8_t bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair(struct w_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, int8_t bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateSocketPair_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pOutConnection1 = pOutConnection1, .pOutConnection2 = pOutConnection2, .bUseNetworkLoopback = bUseNetworkLoopback, @@ -1672,11 +1672,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateSoc return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity(struct w_iface *_this, SteamNetworkingIdentity_144 *pIdentity) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetIdentity_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pIdentity = pIdentity, }; TRACE("%p\n", _this); @@ -1684,22 +1684,22 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetIdenti return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_InitAuthentication, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus(struct w_steam_iface *_this, SteamNetAuthenticationStatus_t *pDetails) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus(struct w_iface *_this, SteamNetAuthenticationStatus_t *pDetails) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetAuthenticationStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDetails = pDetails, }; TRACE("%p\n", _this); @@ -1707,22 +1707,22 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetAuth return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_CreatePollGroup, ¶ms ); return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup(struct w_steam_iface *_this, uint32_t hPollGroup) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup(struct w_iface *_this, uint32_t hPollGroup) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPollGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPollGroup = hPollGroup, }; TRACE("%p\n", _this); @@ -1730,11 +1730,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_DestroyPo return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup(struct w_steam_iface *_this, uint32_t hConn, uint32_t hPollGroup) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup(struct w_iface *_this, uint32_t hConn, uint32_t hPollGroup) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetConnectionPollGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .hPollGroup = hPollGroup, }; @@ -1743,11 +1743,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetConnec return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket(struct w_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedRelayAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvTicket = pvTicket, .cbTicket = cbTicket, .pOutParsedTicket = pOutParsedTicket, @@ -1757,11 +1757,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedR return params._ret; } -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityGameServer, int32_t nVirtualPort, SteamDatagramRelayAuthTicket *pOutParsedTicket) +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityGameServer, int32_t nVirtualPort, SteamDatagramRelayAuthTicket *pOutParsedTicket) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_FindRelayAuthTicketForServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityGameServer = identityGameServer, .nVirtualPort = nVirtualPort, .pOutParsedTicket = pOutParsedTicket, @@ -1771,11 +1771,11 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_FindRela return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityTarget, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityTarget, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectToHostedDedicatedServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityTarget = identityTarget, .nVirtualPort = nVirtualPort, .nOptions = nOptions, @@ -1786,33 +1786,33 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_Connect return params._ret; } -uint16_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort(struct w_steam_iface *_this) +uint16_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPort, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerPOPID, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress(struct w_steam_iface *_this, SteamDatagramHostedAddress *pRouting) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress(struct w_iface *_this, SteamDatagramHostedAddress *pRouting) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetHostedDedicatedServerAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pRouting = pRouting, }; TRACE("%p\n", _this); @@ -1820,11 +1820,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetHost return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket(struct w_steam_iface *_this, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket(struct w_iface *_this, int32_t nVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_CreateHostedDedicatedServerListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nVirtualPort = nVirtualPort, .nOptions = nOptions, .pOptions = pOptions, @@ -1834,11 +1834,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_CreateH return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin(struct w_steam_iface *_this, SteamDatagramGameCoordinatorServerLogin *pLoginInfo, int32_t *pcbSignedBlob, void *pBlob) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin(struct w_iface *_this, SteamDatagramGameCoordinatorServerLogin *pLoginInfo, int32_t *pcbSignedBlob, void *pBlob) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetGameCoordinatorServerLogin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pLoginInfo = pLoginInfo, .pcbSignedBlob = pcbSignedBlob, .pBlob = pBlob, @@ -1848,11 +1848,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetGame return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling(struct w_steam_iface *_this, w_ISteamNetworkingConnectionCustomSignaling *pSignaling, const SteamNetworkingIdentity_144 *pPeerIdentity, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling(struct w_iface *_this, w_ISteamNetworkingConnectionCustomSignaling *pSignaling, const SteamNetworkingIdentity_144 *pPeerIdentity, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_ConnectP2PCustomSignaling_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pSignaling = pSignaling, .pPeerIdentity = pPeerIdentity, .nOptions = nOptions, @@ -1863,11 +1863,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_Connect return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal(struct w_steam_iface *_this, const void *pMsg, int32_t cbMsg, w_ISteamNetworkingCustomSignalingRecvContext *pContext) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal(struct w_iface *_this, const void *pMsg, int32_t cbMsg, w_ISteamNetworkingCustomSignalingRecvContext *pContext) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP2PCustomSignal_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pMsg = pMsg, .cbMsg = cbMsg, .pContext = pContext, @@ -1877,11 +1877,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_ReceivedP return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest(struct w_steam_iface *_this, int32_t *pcbBlob, void *pBlob, char (*errMsg)[1024]) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest(struct w_iface *_this, int32_t *pcbBlob, void *pBlob, char (*errMsg)[1024]) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_GetCertificateRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcbBlob = pcbBlob, .pBlob = pBlob, .errMsg = errMsg, @@ -1891,11 +1891,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_GetCertif return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate(struct w_steam_iface *_this, const void *pCertificate, int32_t cbCertificate, char (*errMsg)[1024]) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate(struct w_iface *_this, const void *pCertificate, int32_t cbCertificate, char (*errMsg)[1024]) { struct ISteamNetworkingSockets_SteamNetworkingSockets008_SetCertificate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pCertificate = pCertificate, .cbCertificate = cbCertificate, .errMsg = errMsg, @@ -1905,7 +1905,7 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_SetCertif return params._ret; } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_destructor(struct w_steam_iface *_this) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets008_destructor(struct w_iface *_this) {/* never called */} extern vtable_ptr winISteamNetworkingSockets_SteamNetworkingSockets008_vtable; @@ -1957,9 +1957,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingSockets_SteamNetworkingSockets008_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets008(void *u_iface) +struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets008( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworkingSockets008"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingSockets008"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworkingSockets_SteamNetworkingSockets008_vtable, 40, "SteamNetworkingSockets008"); r->u_iface = u_iface; @@ -2008,11 +2008,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets009_Set DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks, 4) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets009_destructor, 4) -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP(struct w_steam_iface *_this, const SteamNetworkingIPAddr *localAddress, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP(struct w_iface *_this, const SteamNetworkingIPAddr *localAddress, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .localAddress = localAddress, .nOptions = nOptions, .pOptions = pOptions, @@ -2022,11 +2022,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateL return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress(struct w_steam_iface *_this, const SteamNetworkingIPAddr *address, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress(struct w_iface *_this, const SteamNetworkingIPAddr *address, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectByIPAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .address = address, .nOptions = nOptions, .pOptions = pOptions, @@ -2036,11 +2036,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_Connect return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P(struct w_steam_iface *_this, int32_t nLocalVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P(struct w_iface *_this, int32_t nLocalVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateListenSocketP2P_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nLocalVirtualPort = nLocalVirtualPort, .nOptions = nOptions, .pOptions = pOptions, @@ -2050,11 +2050,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateL return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nRemoteVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nRemoteVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2P_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityRemote = identityRemote, .nRemoteVirtualPort = nRemoteVirtualPort, .nOptions = nOptions, @@ -2065,11 +2065,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_Connect return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection(struct w_steam_iface *_this, uint32_t hConn) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection(struct w_iface *_this, uint32_t hConn) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_AcceptConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); @@ -2077,11 +2077,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_AcceptC return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, int8_t bEnableLinger) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection(struct w_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, int8_t bEnableLinger) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .nReason = nReason, .pszDebug = pszDebug, @@ -2093,11 +2093,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CloseConn return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket(struct w_iface *_this, uint32_t hSocket) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_CloseListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); @@ -2105,11 +2105,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CloseList return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData(struct w_iface *_this, uint32_t hPeer, int64_t nUserData) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .nUserData = nUserData, }; @@ -2118,11 +2118,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetConnec return params._ret; } -int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer) +int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData(struct w_iface *_this, uint32_t hPeer) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, }; TRACE("%p\n", _this); @@ -2130,11 +2130,11 @@ int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetConne return params._ret; } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, const char *pszName) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName(struct w_iface *_this, uint32_t hPeer, const char *pszName) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .pszName = pszName, }; @@ -2143,11 +2143,11 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetConnecti STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionName, ¶ms ); } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName(struct w_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .pszName = pszName, .nMaxLen = nMaxLen, @@ -2157,11 +2157,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetConnec return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection(struct w_steam_iface *_this, uint32_t hConn, const void *pData, uint32_t cbData, int32_t nSendFlags, int64_t *pOutMessageNumber) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection(struct w_iface *_this, uint32_t hConn, const void *pData, uint32_t cbData, int32_t nSendFlags, int64_t *pOutMessageNumber) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_SendMessageToConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pData = pData, .cbData = cbData, @@ -2173,11 +2173,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SendMes return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection(struct w_steam_iface *_this, uint32_t hConn) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection(struct w_iface *_this, uint32_t hConn) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_FlushMessagesOnConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); @@ -2185,11 +2185,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_FlushMe return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo(struct w_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_144 *pInfo) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetConnectionInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pInfo = pInfo, }; @@ -2198,11 +2198,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetConnec return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus(struct w_iface *_this, uint32_t hConn, SteamNetworkingQuickConnectionStatus *pStats) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickConnectionStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pStats = pStats, }; @@ -2211,11 +2211,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetQuickC return params._ret; } -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, char *pszBuf, int32_t cbBuf) +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus(struct w_iface *_this, uint32_t hConn, char *pszBuf, int32_t cbBuf) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetDetailedConnectionStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pszBuf = pszBuf, .cbBuf = cbBuf, @@ -2225,11 +2225,11 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetDetai return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress(struct w_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetListenSocketAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .address = address, }; @@ -2238,11 +2238,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetListen return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, int8_t bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair(struct w_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, int8_t bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateSocketPair_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pOutConnection1 = pOutConnection1, .pOutConnection2 = pOutConnection2, .bUseNetworkLoopback = bUseNetworkLoopback, @@ -2254,11 +2254,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateSoc return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity(struct w_iface *_this, SteamNetworkingIdentity_144 *pIdentity) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetIdentity_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pIdentity = pIdentity, }; TRACE("%p\n", _this); @@ -2266,22 +2266,22 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetIdenti return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_InitAuthentication, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus(struct w_steam_iface *_this, SteamNetAuthenticationStatus_t *pDetails) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus(struct w_iface *_this, SteamNetAuthenticationStatus_t *pDetails) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetAuthenticationStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDetails = pDetails, }; TRACE("%p\n", _this); @@ -2289,22 +2289,22 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetAuth return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_CreatePollGroup, ¶ms ); return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup(struct w_steam_iface *_this, uint32_t hPollGroup) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup(struct w_iface *_this, uint32_t hPollGroup) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPollGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPollGroup = hPollGroup, }; TRACE("%p\n", _this); @@ -2312,11 +2312,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_DestroyPo return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup(struct w_steam_iface *_this, uint32_t hConn, uint32_t hPollGroup) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup(struct w_iface *_this, uint32_t hConn, uint32_t hPollGroup) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetConnectionPollGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .hPollGroup = hPollGroup, }; @@ -2325,11 +2325,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetConnec return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket(struct w_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedRelayAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvTicket = pvTicket, .cbTicket = cbTicket, .pOutParsedTicket = pOutParsedTicket, @@ -2339,11 +2339,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedR return params._ret; } -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityGameServer, int32_t nRemoteVirtualPort, SteamDatagramRelayAuthTicket *pOutParsedTicket) +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityGameServer, int32_t nRemoteVirtualPort, SteamDatagramRelayAuthTicket *pOutParsedTicket) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_FindRelayAuthTicketForServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityGameServer = identityGameServer, .nRemoteVirtualPort = nRemoteVirtualPort, .pOutParsedTicket = pOutParsedTicket, @@ -2353,11 +2353,11 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_FindRela return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityTarget, int32_t nRemoteVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityTarget, int32_t nRemoteVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectToHostedDedicatedServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityTarget = identityTarget, .nRemoteVirtualPort = nRemoteVirtualPort, .nOptions = nOptions, @@ -2368,33 +2368,33 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_Connect return params._ret; } -uint16_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort(struct w_steam_iface *_this) +uint16_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPort, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerPOPID, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress(struct w_steam_iface *_this, SteamDatagramHostedAddress *pRouting) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress(struct w_iface *_this, SteamDatagramHostedAddress *pRouting) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetHostedDedicatedServerAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pRouting = pRouting, }; TRACE("%p\n", _this); @@ -2402,11 +2402,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetHost return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket(struct w_steam_iface *_this, int32_t nLocalVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket(struct w_iface *_this, int32_t nLocalVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_CreateHostedDedicatedServerListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nLocalVirtualPort = nLocalVirtualPort, .nOptions = nOptions, .pOptions = pOptions, @@ -2416,11 +2416,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_CreateH return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin(struct w_steam_iface *_this, SteamDatagramGameCoordinatorServerLogin *pLoginInfo, int32_t *pcbSignedBlob, void *pBlob) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin(struct w_iface *_this, SteamDatagramGameCoordinatorServerLogin *pLoginInfo, int32_t *pcbSignedBlob, void *pBlob) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetGameCoordinatorServerLogin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pLoginInfo = pLoginInfo, .pcbSignedBlob = pcbSignedBlob, .pBlob = pBlob, @@ -2430,11 +2430,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetGame return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling(struct w_steam_iface *_this, void /*ISteamNetworkingConnectionSignaling*/ *pSignaling, const SteamNetworkingIdentity_144 *pPeerIdentity, int32_t nRemoteVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling(struct w_iface *_this, void /*ISteamNetworkingConnectionSignaling*/ *pSignaling, const SteamNetworkingIdentity_144 *pPeerIdentity, int32_t nRemoteVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_ConnectP2PCustomSignaling_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pSignaling = pSignaling, .pPeerIdentity = pPeerIdentity, .nRemoteVirtualPort = nRemoteVirtualPort, @@ -2446,11 +2446,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_Connect return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal(struct w_steam_iface *_this, const void *pMsg, int32_t cbMsg, void /*ISteamNetworkingSignalingRecvContext*/ *pContext) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal(struct w_iface *_this, const void *pMsg, int32_t cbMsg, void /*ISteamNetworkingSignalingRecvContext*/ *pContext) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP2PCustomSignal_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pMsg = pMsg, .cbMsg = cbMsg, .pContext = pContext, @@ -2460,11 +2460,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_ReceivedP return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest(struct w_steam_iface *_this, int32_t *pcbBlob, void *pBlob, char (*errMsg)[1024]) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest(struct w_iface *_this, int32_t *pcbBlob, void *pBlob, char (*errMsg)[1024]) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_GetCertificateRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcbBlob = pcbBlob, .pBlob = pBlob, .errMsg = errMsg, @@ -2474,11 +2474,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_GetCertif return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate(struct w_steam_iface *_this, const void *pCertificate, int32_t cbCertificate, char (*errMsg)[1024]) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate(struct w_iface *_this, const void *pCertificate, int32_t cbCertificate, char (*errMsg)[1024]) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_SetCertificate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pCertificate = pCertificate, .cbCertificate = cbCertificate, .errMsg = errMsg, @@ -2488,17 +2488,17 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_SetCertif return params._ret; } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks(struct w_steam_iface *_this) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets009_RunCallbacks, ¶ms ); } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_destructor(struct w_steam_iface *_this) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets009_destructor(struct w_iface *_this) {/* never called */} extern vtable_ptr winISteamNetworkingSockets_SteamNetworkingSockets009_vtable; @@ -2551,9 +2551,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingSockets_SteamNetworkingSockets009_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets009(void *u_iface) +struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets009( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworkingSockets009"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingSockets009"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworkingSockets_SteamNetworkingSockets009_vtable, 41, "SteamNetworkingSockets009"); r->u_iface = u_iface; @@ -2609,11 +2609,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets012_Get DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort, 8) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSockets_SteamNetworkingSockets012_destructor, 4) -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP(struct w_steam_iface *_this, const SteamNetworkingIPAddr *localAddress, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP(struct w_iface *_this, const SteamNetworkingIPAddr *localAddress, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .localAddress = localAddress, .nOptions = nOptions, .pOptions = pOptions, @@ -2623,11 +2623,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateL return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress(struct w_steam_iface *_this, const SteamNetworkingIPAddr *address, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress(struct w_iface *_this, const SteamNetworkingIPAddr *address, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectByIPAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .address = address, .nOptions = nOptions, .pOptions = pOptions, @@ -2637,11 +2637,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_Connect return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P(struct w_steam_iface *_this, int32_t nLocalVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P(struct w_iface *_this, int32_t nLocalVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2P_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nLocalVirtualPort = nLocalVirtualPort, .nOptions = nOptions, .pOptions = pOptions, @@ -2651,11 +2651,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateL return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nRemoteVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityRemote, int32_t nRemoteVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2P_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityRemote = identityRemote, .nRemoteVirtualPort = nRemoteVirtualPort, .nOptions = nOptions, @@ -2666,11 +2666,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_Connect return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection(struct w_steam_iface *_this, uint32_t hConn) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection(struct w_iface *_this, uint32_t hConn) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_AcceptConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); @@ -2678,11 +2678,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_AcceptC return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection(struct w_steam_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, int8_t bEnableLinger) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection(struct w_iface *_this, uint32_t hPeer, int32_t nReason, const char *pszDebug, int8_t bEnableLinger) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .nReason = nReason, .pszDebug = pszDebug, @@ -2694,11 +2694,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CloseConn return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket(struct w_steam_iface *_this, uint32_t hSocket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket(struct w_iface *_this, uint32_t hSocket) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CloseListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, }; TRACE("%p\n", _this); @@ -2706,11 +2706,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CloseList return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer, int64_t nUserData) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData(struct w_iface *_this, uint32_t hPeer, int64_t nUserData) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .nUserData = nUserData, }; @@ -2719,11 +2719,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetConnec return params._ret; } -int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData(struct w_steam_iface *_this, uint32_t hPeer) +int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData(struct w_iface *_this, uint32_t hPeer) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionUserData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, }; TRACE("%p\n", _this); @@ -2731,11 +2731,11 @@ int64_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConne return params._ret; } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, const char *pszName) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName(struct w_iface *_this, uint32_t hPeer, const char *pszName) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .pszName = pszName, }; @@ -2744,11 +2744,11 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetConnecti STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionName, ¶ms ); } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName(struct w_steam_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName(struct w_iface *_this, uint32_t hPeer, char *pszName, int32_t nMaxLen) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPeer = hPeer, .pszName = pszName, .nMaxLen = nMaxLen, @@ -2758,11 +2758,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConnec return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection(struct w_steam_iface *_this, uint32_t hConn, const void *pData, uint32_t cbData, int32_t nSendFlags, int64_t *pOutMessageNumber) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection(struct w_iface *_this, uint32_t hConn, const void *pData, uint32_t cbData, int32_t nSendFlags, int64_t *pOutMessageNumber) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_SendMessageToConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pData = pData, .cbData = cbData, @@ -2774,11 +2774,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SendMes return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection(struct w_steam_iface *_this, uint32_t hConn) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection(struct w_iface *_this, uint32_t hConn) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_FlushMessagesOnConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, }; TRACE("%p\n", _this); @@ -2786,11 +2786,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_FlushMe return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_153a *pInfo) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo(struct w_iface *_this, uint32_t hConn, SteamNetConnectionInfo_t_153a *pInfo) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pInfo = pInfo, }; @@ -2799,11 +2799,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConnec return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus(struct w_steam_iface *_this, uint32_t hConn, SteamNetConnectionRealTimeStatus_t *pStatus, int32_t nLanes, SteamNetConnectionRealTimeLaneStatus_t *pLanes) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus(struct w_iface *_this, uint32_t hConn, SteamNetConnectionRealTimeStatus_t *pStatus, int32_t nLanes, SteamNetConnectionRealTimeLaneStatus_t *pLanes) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetConnectionRealTimeStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pStatus = pStatus, .nLanes = nLanes, @@ -2814,11 +2814,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetConn return params._ret; } -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus(struct w_steam_iface *_this, uint32_t hConn, char *pszBuf, int32_t cbBuf) +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus(struct w_iface *_this, uint32_t hConn, char *pszBuf, int32_t cbBuf) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetDetailedConnectionStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pszBuf = pszBuf, .cbBuf = cbBuf, @@ -2828,11 +2828,11 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetDetai return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress(struct w_steam_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress(struct w_iface *_this, uint32_t hSocket, SteamNetworkingIPAddr *address) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetListenSocketAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSocket = hSocket, .address = address, }; @@ -2841,11 +2841,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetListen return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair(struct w_steam_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, int8_t bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair(struct w_iface *_this, uint32_t *pOutConnection1, uint32_t *pOutConnection2, int8_t bUseNetworkLoopback, const SteamNetworkingIdentity_144 *pIdentity1, const SteamNetworkingIdentity_144 *pIdentity2) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateSocketPair_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pOutConnection1 = pOutConnection1, .pOutConnection2 = pOutConnection2, .bUseNetworkLoopback = bUseNetworkLoopback, @@ -2857,11 +2857,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateSoc return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes(struct w_steam_iface *_this, uint32_t hConn, int32_t nNumLanes, const int32_t *pLanePriorities, const uint16_t *pLaneWeights) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes(struct w_iface *_this, uint32_t hConn, int32_t nNumLanes, const int32_t *pLanePriorities, const uint16_t *pLaneWeights) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConfigureConnectionLanes_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .nNumLanes = nNumLanes, .pLanePriorities = pLanePriorities, @@ -2872,11 +2872,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_Configu return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity(struct w_iface *_this, SteamNetworkingIdentity_144 *pIdentity) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetIdentity_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pIdentity = pIdentity, }; TRACE("%p\n", _this); @@ -2884,22 +2884,22 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetIdenti return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_InitAuthentication, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus(struct w_steam_iface *_this, SteamNetAuthenticationStatus_t *pDetails) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus(struct w_iface *_this, SteamNetAuthenticationStatus_t *pDetails) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetAuthenticationStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDetails = pDetails, }; TRACE("%p\n", _this); @@ -2907,22 +2907,22 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetAuth return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_CreatePollGroup, ¶ms ); return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup(struct w_steam_iface *_this, uint32_t hPollGroup) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup(struct w_iface *_this, uint32_t hPollGroup) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPollGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hPollGroup = hPollGroup, }; TRACE("%p\n", _this); @@ -2930,11 +2930,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_DestroyPo return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup(struct w_steam_iface *_this, uint32_t hConn, uint32_t hPollGroup) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup(struct w_iface *_this, uint32_t hConn, uint32_t hPollGroup) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetConnectionPollGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .hPollGroup = hPollGroup, }; @@ -2943,11 +2943,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetConnec return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket(struct w_steam_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket(struct w_iface *_this, const void *pvTicket, int32_t cbTicket, SteamDatagramRelayAuthTicket *pOutParsedTicket) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedRelayAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvTicket = pvTicket, .cbTicket = cbTicket, .pOutParsedTicket = pOutParsedTicket, @@ -2957,11 +2957,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedR return params._ret; } -int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityGameServer, int32_t nRemoteVirtualPort, SteamDatagramRelayAuthTicket *pOutParsedTicket) +int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityGameServer, int32_t nRemoteVirtualPort, SteamDatagramRelayAuthTicket *pOutParsedTicket) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_FindRelayAuthTicketForServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityGameServer = identityGameServer, .nRemoteVirtualPort = nRemoteVirtualPort, .pOutParsedTicket = pOutParsedTicket, @@ -2971,11 +2971,11 @@ int32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_FindRela return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identityTarget, int32_t nRemoteVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer(struct w_iface *_this, const SteamNetworkingIdentity_144 *identityTarget, int32_t nRemoteVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectToHostedDedicatedServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identityTarget = identityTarget, .nRemoteVirtualPort = nRemoteVirtualPort, .nOptions = nOptions, @@ -2986,33 +2986,33 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_Connect return params._ret; } -uint16_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort(struct w_steam_iface *_this) +uint16_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPort, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerPOPID, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress(struct w_steam_iface *_this, SteamDatagramHostedAddress *pRouting) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress(struct w_iface *_this, SteamDatagramHostedAddress *pRouting) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetHostedDedicatedServerAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pRouting = pRouting, }; TRACE("%p\n", _this); @@ -3020,11 +3020,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetHost return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket(struct w_steam_iface *_this, int32_t nLocalVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket(struct w_iface *_this, int32_t nLocalVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateHostedDedicatedServerListenSocket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nLocalVirtualPort = nLocalVirtualPort, .nOptions = nOptions, .pOptions = pOptions, @@ -3034,11 +3034,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateH return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin(struct w_steam_iface *_this, SteamDatagramGameCoordinatorServerLogin *pLoginInfo, int32_t *pcbSignedBlob, void *pBlob) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin(struct w_iface *_this, SteamDatagramGameCoordinatorServerLogin *pLoginInfo, int32_t *pcbSignedBlob, void *pBlob) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetGameCoordinatorServerLogin_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pLoginInfo = pLoginInfo, .pcbSignedBlob = pcbSignedBlob, .pBlob = pBlob, @@ -3048,11 +3048,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetGame return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling(struct w_steam_iface *_this, void /*ISteamNetworkingConnectionSignaling*/ *pSignaling, const SteamNetworkingIdentity_144 *pPeerIdentity, int32_t nRemoteVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling(struct w_iface *_this, void /*ISteamNetworkingConnectionSignaling*/ *pSignaling, const SteamNetworkingIdentity_144 *pPeerIdentity, int32_t nRemoteVirtualPort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ConnectP2PCustomSignaling_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pSignaling = pSignaling, .pPeerIdentity = pPeerIdentity, .nRemoteVirtualPort = nRemoteVirtualPort, @@ -3064,11 +3064,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_Connect return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal(struct w_steam_iface *_this, const void *pMsg, int32_t cbMsg, void /*ISteamNetworkingSignalingRecvContext*/ *pContext) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal(struct w_iface *_this, const void *pMsg, int32_t cbMsg, void /*ISteamNetworkingSignalingRecvContext*/ *pContext) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP2PCustomSignal_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pMsg = pMsg, .cbMsg = cbMsg, .pContext = pContext, @@ -3078,11 +3078,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ReceivedP return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest(struct w_steam_iface *_this, int32_t *pcbBlob, void *pBlob, char (*errMsg)[1024]) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest(struct w_iface *_this, int32_t *pcbBlob, void *pBlob, char (*errMsg)[1024]) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetCertificateRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcbBlob = pcbBlob, .pBlob = pBlob, .errMsg = errMsg, @@ -3092,11 +3092,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetCertif return params._ret; } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate(struct w_steam_iface *_this, const void *pCertificate, int32_t cbCertificate, char (*errMsg)[1024]) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate(struct w_iface *_this, const void *pCertificate, int32_t cbCertificate, char (*errMsg)[1024]) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_SetCertificate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pCertificate = pCertificate, .cbCertificate = cbCertificate, .errMsg = errMsg, @@ -3106,32 +3106,32 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_SetCertif return params._ret; } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *pIdentity) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity(struct w_iface *_this, const SteamNetworkingIdentity_144 *pIdentity) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pIdentity = pIdentity, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_ResetIdentity, ¶ms ); } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks(struct w_steam_iface *_this) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks(struct w_iface *_this) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_RunCallbacks, ¶ms ); } -int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP(struct w_steam_iface *_this, int32_t nNumPorts) +int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP(struct w_iface *_this, int32_t nNumPorts) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyncRequestFakeIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nNumPorts = nNumPorts, }; TRACE("%p\n", _this); @@ -3139,11 +3139,11 @@ int8_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_BeginAsyn return params._ret; } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP(struct w_steam_iface *_this, int32_t idxFirstPort, SteamNetworkingFakeIPResult_t *pInfo) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP(struct w_iface *_this, int32_t idxFirstPort, SteamNetworkingFakeIPResult_t *pInfo) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .idxFirstPort = idxFirstPort, .pInfo = pInfo, }; @@ -3151,11 +3151,11 @@ void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP(s STEAMCLIENT_CALL( ISteamNetworkingSockets_SteamNetworkingSockets012_GetFakeIP, ¶ms ); } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP(struct w_steam_iface *_this, int32_t idxFakePort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP(struct w_iface *_this, int32_t idxFakePort, int32_t nOptions, const SteamNetworkingConfigValue_t *pOptions) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateListenSocketP2PFakeIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .idxFakePort = idxFakePort, .nOptions = nOptions, .pOptions = pOptions, @@ -3165,11 +3165,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateL return params._ret; } -uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection(struct w_steam_iface *_this, uint32_t hConn, SteamNetworkingIPAddr *pOutAddr) +uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection(struct w_iface *_this, uint32_t hConn, SteamNetworkingIPAddr *pOutAddr) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_GetRemoteFakeIPForConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hConn = hConn, .pOutAddr = pOutAddr, }; @@ -3178,11 +3178,11 @@ uint32_t __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_GetRemo return params._ret; } -void /*ISteamNetworkingFakeUDPPort*/ * __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort(struct w_steam_iface *_this, int32_t idxFakeServerPort) +void /*ISteamNetworkingFakeUDPPort*/ * __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort(struct w_iface *_this, int32_t idxFakeServerPort) { struct ISteamNetworkingSockets_SteamNetworkingSockets012_CreateFakeUDPPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .idxFakeServerPort = idxFakeServerPort, }; TRACE("%p\n", _this); @@ -3191,7 +3191,7 @@ void /*ISteamNetworkingFakeUDPPort*/ * __thiscall winISteamNetworkingSockets_Ste return params._ret; } -void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_destructor(struct w_steam_iface *_this) +void __thiscall winISteamNetworkingSockets_SteamNetworkingSockets012_destructor(struct w_iface *_this) {/* never called */} extern vtable_ptr winISteamNetworkingSockets_SteamNetworkingSockets012_vtable; @@ -3251,9 +3251,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingSockets_SteamNetworkingSockets012_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets012(void *u_iface) +struct w_iface *create_winISteamNetworkingSockets_SteamNetworkingSockets012( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworkingSockets012"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingSockets012"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworkingSockets_SteamNetworkingSockets012_vtable, 48, "SteamNetworkingSockets012"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamNetworkingSocketsSerialized.c b/lsteamclient/winISteamNetworkingSocketsSerialized.c index e7fe62ce..3fe09207 100644 --- a/lsteamclient/winISteamNetworkingSocketsSerialized.c +++ b/lsteamclient/winISteamNetworkingSocketsSerialized.c @@ -12,11 +12,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingSocketsSerialized_SteamNetworkingSock DEFINE_THISCALL_WRAPPER(winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket, 16) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg, 12) -void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous(struct w_steam_iface *_this, CSteamID steamIDRemote, uint32_t unConnectionIDSrc, const void *pMsgRendezvous, uint32_t cbRendezvous) +void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous(struct w_iface *_this, CSteamID steamIDRemote, uint32_t unConnectionIDSrc, const void *pMsgRendezvous, uint32_t cbRendezvous) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, .unConnectionIDSrc = unConnectionIDSrc, .pMsgRendezvous = pMsgRendezvous, @@ -26,11 +26,11 @@ void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSeria STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PRendezvous, ¶ms ); } -void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure(struct w_steam_iface *_this, CSteamID steamIDRemote, uint32_t unConnectionIDDest, uint32_t nReason, const char *pszReason) +void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure(struct w_iface *_this, CSteamID steamIDRemote, uint32_t unConnectionIDDest, uint32_t nReason, const char *pszReason) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, .unConnectionIDDest = unConnectionIDDest, .nReason = nReason, @@ -41,22 +41,22 @@ void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSeria STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_SendP2PConnectionFailure, ¶ms ); } -uint64_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync(struct w_steam_iface *_this) +uint64_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync(struct w_iface *_this) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCertAsync, ¶ms ); return params._ret; } -int32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON(struct w_steam_iface *_this, void *buf, uint32_t cbBuf) +int32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON(struct w_iface *_this, void *buf, uint32_t cbBuf) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetNetworkConfigJSON_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .buf = buf, .cbBuf = cbBuf, }; @@ -65,11 +65,11 @@ int32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSe return params._ret; } -void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket(struct w_steam_iface *_this, const void *pTicket, uint32_t cbTicket) +void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket(struct w_iface *_this, const void *pTicket, uint32_t cbTicket) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbTicket = cbTicket, }; @@ -77,22 +77,22 @@ void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSeria STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_CacheRelayTicket, ¶ms ); } -uint32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount(struct w_iface *_this) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicketCount, ¶ms ); return params._ret; } -int32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket(struct w_steam_iface *_this, uint32_t idxTicket, void *buf, uint32_t cbBuf) +int32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket(struct w_iface *_this, uint32_t idxTicket, void *buf, uint32_t cbBuf) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_GetCachedRelayTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .idxTicket = idxTicket, .buf = buf, .cbBuf = cbBuf, @@ -102,11 +102,11 @@ int32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSe return params._ret; } -void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg(struct w_steam_iface *_this, const void *pMsg, uint32_t cbMsg) +void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg(struct w_iface *_this, const void *pMsg, uint32_t cbMsg) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_PostConnectionStateMsg_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pMsg = pMsg, .cbMsg = cbMsg, }; @@ -131,9 +131,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSer ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002(void *u_iface) +struct w_iface *create_winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworkingSocketsSerialized002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingSocketsSerialized002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized002_vtable, 8, "SteamNetworkingSocketsSerialized002"); r->u_iface = u_iface; @@ -149,11 +149,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingSocketsSerialized_SteamNetworkingSock DEFINE_THISCALL_WRAPPER(winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket, 16) DEFINE_THISCALL_WRAPPER(winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg, 12) -void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous(struct w_steam_iface *_this, CSteamID steamIDRemote, uint32_t unConnectionIDSrc, const void *pMsgRendezvous, uint32_t cbRendezvous) +void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous(struct w_iface *_this, CSteamID steamIDRemote, uint32_t unConnectionIDSrc, const void *pMsgRendezvous, uint32_t cbRendezvous) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, .unConnectionIDSrc = unConnectionIDSrc, .pMsgRendezvous = pMsgRendezvous, @@ -163,11 +163,11 @@ void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSeria STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PRendezvous, ¶ms ); } -void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure(struct w_steam_iface *_this, CSteamID steamIDRemote, uint32_t unConnectionIDDest, uint32_t nReason, const char *pszReason) +void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure(struct w_iface *_this, CSteamID steamIDRemote, uint32_t unConnectionIDDest, uint32_t nReason, const char *pszReason) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDRemote = steamIDRemote, .unConnectionIDDest = unConnectionIDDest, .nReason = nReason, @@ -178,22 +178,22 @@ void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSeria STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_SendP2PConnectionFailure, ¶ms ); } -uint64_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync(struct w_steam_iface *_this) +uint64_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync(struct w_iface *_this) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCertAsync, ¶ms ); return params._ret; } -int32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON(struct w_steam_iface *_this, void *buf, uint32_t cbBuf, const char *pszLauncherPartner) +int32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON(struct w_iface *_this, void *buf, uint32_t cbBuf, const char *pszLauncherPartner) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetNetworkConfigJSON_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .buf = buf, .cbBuf = cbBuf, .pszLauncherPartner = pszLauncherPartner, @@ -204,11 +204,11 @@ int32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSe return params._ret; } -void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket(struct w_steam_iface *_this, const void *pTicket, uint32_t cbTicket) +void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket(struct w_iface *_this, const void *pTicket, uint32_t cbTicket) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbTicket = cbTicket, }; @@ -216,22 +216,22 @@ void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSeria STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_CacheRelayTicket, ¶ms ); } -uint32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount(struct w_iface *_this) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicketCount, ¶ms ); return params._ret; } -int32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket(struct w_steam_iface *_this, uint32_t idxTicket, void *buf, uint32_t cbBuf) +int32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket(struct w_iface *_this, uint32_t idxTicket, void *buf, uint32_t cbBuf) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_GetCachedRelayTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .idxTicket = idxTicket, .buf = buf, .cbBuf = cbBuf, @@ -241,11 +241,11 @@ int32_t __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSe return params._ret; } -void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg(struct w_steam_iface *_this, const void *pMsg, uint32_t cbMsg) +void __thiscall winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg(struct w_iface *_this, const void *pMsg, uint32_t cbMsg) { struct ISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_PostConnectionStateMsg_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pMsg = pMsg, .cbMsg = cbMsg, }; @@ -270,9 +270,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSer ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003(void *u_iface) +struct w_iface *create_winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworkingSocketsSerialized003"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingSocketsSerialized003"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworkingSocketsSerialized_SteamNetworkingSocketsSerialized003_vtable, 8, "SteamNetworkingSocketsSerialized003"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamNetworkingUtils.c b/lsteamclient/winISteamNetworkingUtils.c index 82775952..2288cd62 100644 --- a/lsteamclient/winISteamNetworkingUtils.c +++ b/lsteamclient/winISteamNetworkingUtils.c @@ -26,11 +26,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNe DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString, 12) DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils001_destructor, 4) -float __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation(struct w_steam_iface *_this, SteamNetworkPingLocation_t *result) +float __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation(struct w_iface *_this, SteamNetworkPingLocation_t *result) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLocation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .result = result, }; TRACE("%p\n", _this); @@ -38,11 +38,11 @@ float __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalPingLo return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *location1, const SteamNetworkPingLocation_t *location2) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations(struct w_iface *_this, const SteamNetworkPingLocation_t *location1, const SteamNetworkPingLocation_t *location2) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeBetweenTwoLocations_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .location1 = location1, .location2 = location2, }; @@ -51,11 +51,11 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePing return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *remoteLocation) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost(struct w_iface *_this, const SteamNetworkPingLocation_t *remoteLocation) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePingTimeFromLocalHost_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .remoteLocation = remoteLocation, }; TRACE("%p\n", _this); @@ -63,11 +63,11 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_EstimatePing return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *location, char *pszBuf, int32_t cchBufSize) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString(struct w_iface *_this, const SteamNetworkPingLocation_t *location, char *pszBuf, int32_t cchBufSize) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .location = location, .pszBuf = pszBuf, .cchBufSize = cchBufSize, @@ -76,11 +76,11 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLoca STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_ConvertPingLocationToString, ¶ms ); } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString(struct w_steam_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString(struct w_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLocationString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszString = pszString, .result = result, }; @@ -90,11 +90,11 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_ParsePingLoca return params._ret; } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate(struct w_steam_iface *_this, float flMaxAgeSeconds) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate(struct w_iface *_this, float flMaxAgeSeconds) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingDataUpToDate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .flMaxAgeSeconds = flMaxAgeSeconds, }; TRACE("%p\n", _this); @@ -102,22 +102,22 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_CheckPingData return params._ret; } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress(struct w_steam_iface *_this) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress(struct w_iface *_this) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_IsPingMeasurementInProgress, ¶ms ); return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter(struct w_steam_iface *_this, uint32_t popID, uint32_t *pViaRelayPoP) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter(struct w_iface *_this, uint32_t popID, uint32_t *pViaRelayPoP) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDataCenter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .popID = popID, .pViaRelayPoP = pViaRelayPoP, }; @@ -126,11 +126,11 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetPingToDat return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP(struct w_steam_iface *_this, uint32_t popID) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP(struct w_iface *_this, uint32_t popID) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPingToPOP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .popID = popID, }; TRACE("%p\n", _this); @@ -138,22 +138,22 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetDirectPin return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount(struct w_iface *_this) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPCount, ¶ms ); return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList(struct w_steam_iface *_this, uint32_t *list, int32_t nListSz) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList(struct w_iface *_this, uint32_t *list, int32_t nListSz) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .list = list, .nListSz = nListSz, }; @@ -162,22 +162,22 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetPOPList(s return params._ret; } -int64_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp(struct w_steam_iface *_this) +int64_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp(struct w_iface *_this) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_GetLocalTimestamp, ¶ms ); return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction(struct w_steam_iface *_this, uint32_t eDetailLevel, void (*W_CDECL pfnFunc)(uint32_t, const char *)) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction(struct w_iface *_this, uint32_t eDetailLevel, void (*W_CDECL pfnFunc)(uint32_t, const char *)) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eDetailLevel = eDetailLevel, .pfnFunc = pfnFunc, }; @@ -185,11 +185,11 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputF STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_SetDebugOutputFunction, ¶ms ); } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue(struct w_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eValue = eValue, .eScopeType = eScopeType, .scopeObj = scopeObj, @@ -201,11 +201,11 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SetConfigValu return params._ret; } -uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t *pOutDataType, void *pResult, uint32_t *cbResult) +uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue(struct w_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t *pOutDataType, void *pResult, uint32_t *cbResult) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eValue = eValue, .eScopeType = eScopeType, .scopeObj = scopeObj, @@ -218,11 +218,11 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigVa return params._ret; } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo(struct w_steam_iface *_this, uint32_t eValue, const char **pOutName, uint32_t *pOutDataType, uint32_t *pOutScope, uint32_t *pOutNextValue) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo(struct w_iface *_this, uint32_t eValue, const char **pOutName, uint32_t *pOutDataType, uint32_t *pOutScope, uint32_t *pOutNextValue) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValueInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eValue = eValue, .pOutName = pOutName, .pOutDataType = pOutDataType, @@ -234,22 +234,22 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetConfigValu return params._ret; } -uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue(struct w_iface *_this) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_GetFirstConfigValue, ¶ms ); return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString(struct w_steam_iface *_this, const SteamNetworkingIPAddr *addr, char *buf, uint32_t cbBuf, int8_t bWithPort) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString(struct w_iface *_this, const SteamNetworkingIPAddr *addr, char *buf, uint32_t cbBuf, int8_t bWithPort) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .addr = addr, .buf = buf, .cbBuf = cbBuf, @@ -259,11 +259,11 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworking STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ToString, ¶ms ); } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString(struct w_steam_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString(struct w_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIPAddr_ParseString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAddr = pAddr, .pszStr = pszStr, }; @@ -273,11 +273,11 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworki return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identity, char *buf, uint32_t cbBuf) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString(struct w_iface *_this, const SteamNetworkingIdentity_144 *identity, char *buf, uint32_t cbBuf) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identity = identity, .buf = buf, .cbBuf = cbBuf, @@ -286,11 +286,11 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworking STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ToString, ¶ms ); } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString(struct w_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) { struct ISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworkingIdentity_ParseString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pIdentity = pIdentity, .pszStr = pszStr, }; @@ -300,7 +300,7 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_SteamNetworki return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_destructor(struct w_steam_iface *_this) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils001_destructor(struct w_iface *_this) {/* never called */} extern vtable_ptr winISteamNetworkingUtils_SteamNetworkingUtils001_vtable; @@ -334,9 +334,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingUtils_SteamNetworkingUtils001_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils001(void *u_iface) +struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworkingUtils001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingUtils001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworkingUtils_SteamNetworkingUtils001_vtable, 22, "SteamNetworkingUtils001"); r->u_iface = u_iface; @@ -366,11 +366,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNe DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString, 12) DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils002_destructor, 4) -uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus(struct w_steam_iface *_this, SteamRelayNetworkStatus_t *pDetails) +uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus(struct w_iface *_this, SteamRelayNetworkStatus_t *pDetails) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNetworkStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDetails = pDetails, }; TRACE("%p\n", _this); @@ -378,11 +378,11 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetRelayNet return params._ret; } -float __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation(struct w_steam_iface *_this, SteamNetworkPingLocation_t *result) +float __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation(struct w_iface *_this, SteamNetworkPingLocation_t *result) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLocation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .result = result, }; TRACE("%p\n", _this); @@ -390,11 +390,11 @@ float __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalPingLo return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *location1, const SteamNetworkPingLocation_t *location2) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations(struct w_iface *_this, const SteamNetworkPingLocation_t *location1, const SteamNetworkPingLocation_t *location2) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeBetweenTwoLocations_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .location1 = location1, .location2 = location2, }; @@ -403,11 +403,11 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePing return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *remoteLocation) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost(struct w_iface *_this, const SteamNetworkPingLocation_t *remoteLocation) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePingTimeFromLocalHost_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .remoteLocation = remoteLocation, }; TRACE("%p\n", _this); @@ -415,11 +415,11 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_EstimatePing return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *location, char *pszBuf, int32_t cchBufSize) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString(struct w_iface *_this, const SteamNetworkPingLocation_t *location, char *pszBuf, int32_t cchBufSize) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .location = location, .pszBuf = pszBuf, .cchBufSize = cchBufSize, @@ -428,11 +428,11 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLoca STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_ConvertPingLocationToString, ¶ms ); } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString(struct w_steam_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString(struct w_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLocationString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszString = pszString, .result = result, }; @@ -442,11 +442,11 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_ParsePingLoca return params._ret; } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate(struct w_steam_iface *_this, float flMaxAgeSeconds) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate(struct w_iface *_this, float flMaxAgeSeconds) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingDataUpToDate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .flMaxAgeSeconds = flMaxAgeSeconds, }; TRACE("%p\n", _this); @@ -454,11 +454,11 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_CheckPingData return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter(struct w_steam_iface *_this, uint32_t popID, uint32_t *pViaRelayPoP) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter(struct w_iface *_this, uint32_t popID, uint32_t *pViaRelayPoP) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDataCenter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .popID = popID, .pViaRelayPoP = pViaRelayPoP, }; @@ -467,11 +467,11 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetPingToDat return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP(struct w_steam_iface *_this, uint32_t popID) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP(struct w_iface *_this, uint32_t popID) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPingToPOP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .popID = popID, }; TRACE("%p\n", _this); @@ -479,22 +479,22 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetDirectPin return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount(struct w_iface *_this) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPCount, ¶ms ); return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList(struct w_steam_iface *_this, uint32_t *list, int32_t nListSz) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList(struct w_iface *_this, uint32_t *list, int32_t nListSz) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .list = list, .nListSz = nListSz, }; @@ -503,22 +503,22 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetPOPList(s return params._ret; } -int64_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp(struct w_steam_iface *_this) +int64_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp(struct w_iface *_this) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_GetLocalTimestamp, ¶ms ); return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction(struct w_steam_iface *_this, uint32_t eDetailLevel, void (*W_CDECL pfnFunc)(uint32_t, const char *)) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction(struct w_iface *_this, uint32_t eDetailLevel, void (*W_CDECL pfnFunc)(uint32_t, const char *)) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eDetailLevel = eDetailLevel, .pfnFunc = pfnFunc, }; @@ -526,11 +526,11 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputF STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_SetDebugOutputFunction, ¶ms ); } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue(struct w_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eValue = eValue, .eScopeType = eScopeType, .scopeObj = scopeObj, @@ -542,11 +542,11 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SetConfigValu return params._ret; } -uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t *pOutDataType, void *pResult, uint32_t *cbResult) +uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue(struct w_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t *pOutDataType, void *pResult, uint32_t *cbResult) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eValue = eValue, .eScopeType = eScopeType, .scopeObj = scopeObj, @@ -559,11 +559,11 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigVa return params._ret; } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo(struct w_steam_iface *_this, uint32_t eValue, const char **pOutName, uint32_t *pOutDataType, uint32_t *pOutScope, uint32_t *pOutNextValue) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo(struct w_iface *_this, uint32_t eValue, const char **pOutName, uint32_t *pOutDataType, uint32_t *pOutScope, uint32_t *pOutNextValue) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValueInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eValue = eValue, .pOutName = pOutName, .pOutDataType = pOutDataType, @@ -575,22 +575,22 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetConfigValu return params._ret; } -uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue(struct w_iface *_this) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_GetFirstConfigValue, ¶ms ); return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString(struct w_steam_iface *_this, const SteamNetworkingIPAddr *addr, char *buf, uint32_t cbBuf, int8_t bWithPort) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString(struct w_iface *_this, const SteamNetworkingIPAddr *addr, char *buf, uint32_t cbBuf, int8_t bWithPort) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .addr = addr, .buf = buf, .cbBuf = cbBuf, @@ -600,11 +600,11 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworking STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ToString, ¶ms ); } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString(struct w_steam_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString(struct w_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIPAddr_ParseString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAddr = pAddr, .pszStr = pszStr, }; @@ -614,11 +614,11 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworki return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identity, char *buf, uint32_t cbBuf) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString(struct w_iface *_this, const SteamNetworkingIdentity_144 *identity, char *buf, uint32_t cbBuf) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identity = identity, .buf = buf, .cbBuf = cbBuf, @@ -627,11 +627,11 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworking STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ToString, ¶ms ); } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString(struct w_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) { struct ISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworkingIdentity_ParseString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pIdentity = pIdentity, .pszStr = pszStr, }; @@ -641,7 +641,7 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_SteamNetworki return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_destructor(struct w_steam_iface *_this) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils002_destructor(struct w_iface *_this) {/* never called */} extern vtable_ptr winISteamNetworkingUtils_SteamNetworkingUtils002_vtable; @@ -675,9 +675,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingUtils_SteamNetworkingUtils002_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils002(void *u_iface) +struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworkingUtils002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingUtils002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworkingUtils_SteamNetworkingUtils002_vtable, 22, "SteamNetworkingUtils002"); r->u_iface = u_iface; @@ -708,11 +708,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNe DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString, 12) DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils003_destructor, 4) -uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus(struct w_steam_iface *_this, SteamRelayNetworkStatus_t *pDetails) +uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus(struct w_iface *_this, SteamRelayNetworkStatus_t *pDetails) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNetworkStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDetails = pDetails, }; TRACE("%p\n", _this); @@ -720,11 +720,11 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetRelayNet return params._ret; } -float __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation(struct w_steam_iface *_this, SteamNetworkPingLocation_t *result) +float __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation(struct w_iface *_this, SteamNetworkPingLocation_t *result) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLocation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .result = result, }; TRACE("%p\n", _this); @@ -732,11 +732,11 @@ float __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalPingLo return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *location1, const SteamNetworkPingLocation_t *location2) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations(struct w_iface *_this, const SteamNetworkPingLocation_t *location1, const SteamNetworkPingLocation_t *location2) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeBetweenTwoLocations_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .location1 = location1, .location2 = location2, }; @@ -745,11 +745,11 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePing return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *remoteLocation) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost(struct w_iface *_this, const SteamNetworkPingLocation_t *remoteLocation) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePingTimeFromLocalHost_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .remoteLocation = remoteLocation, }; TRACE("%p\n", _this); @@ -757,11 +757,11 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_EstimatePing return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *location, char *pszBuf, int32_t cchBufSize) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString(struct w_iface *_this, const SteamNetworkPingLocation_t *location, char *pszBuf, int32_t cchBufSize) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .location = location, .pszBuf = pszBuf, .cchBufSize = cchBufSize, @@ -770,11 +770,11 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLoca STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_ConvertPingLocationToString, ¶ms ); } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString(struct w_steam_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString(struct w_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLocationString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszString = pszString, .result = result, }; @@ -784,11 +784,11 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_ParsePingLoca return params._ret; } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate(struct w_steam_iface *_this, float flMaxAgeSeconds) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate(struct w_iface *_this, float flMaxAgeSeconds) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingDataUpToDate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .flMaxAgeSeconds = flMaxAgeSeconds, }; TRACE("%p\n", _this); @@ -796,11 +796,11 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_CheckPingData return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter(struct w_steam_iface *_this, uint32_t popID, uint32_t *pViaRelayPoP) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter(struct w_iface *_this, uint32_t popID, uint32_t *pViaRelayPoP) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDataCenter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .popID = popID, .pViaRelayPoP = pViaRelayPoP, }; @@ -809,11 +809,11 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetPingToDat return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP(struct w_steam_iface *_this, uint32_t popID) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP(struct w_iface *_this, uint32_t popID) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPingToPOP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .popID = popID, }; TRACE("%p\n", _this); @@ -821,22 +821,22 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetDirectPin return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount(struct w_iface *_this) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPCount, ¶ms ); return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList(struct w_steam_iface *_this, uint32_t *list, int32_t nListSz) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList(struct w_iface *_this, uint32_t *list, int32_t nListSz) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .list = list, .nListSz = nListSz, }; @@ -845,22 +845,22 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetPOPList(s return params._ret; } -int64_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp(struct w_steam_iface *_this) +int64_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp(struct w_iface *_this) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_GetLocalTimestamp, ¶ms ); return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction(struct w_steam_iface *_this, uint32_t eDetailLevel, void (*W_CDECL pfnFunc)(uint32_t, const char *)) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction(struct w_iface *_this, uint32_t eDetailLevel, void (*W_CDECL pfnFunc)(uint32_t, const char *)) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eDetailLevel = eDetailLevel, .pfnFunc = pfnFunc, }; @@ -868,11 +868,11 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputF STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_SetDebugOutputFunction, ¶ms ); } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue(struct w_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eValue = eValue, .eScopeType = eScopeType, .scopeObj = scopeObj, @@ -884,11 +884,11 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValu return params._ret; } -uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t *pOutDataType, void *pResult, uint32_t *cbResult) +uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue(struct w_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t *pOutDataType, void *pResult, uint32_t *cbResult) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eValue = eValue, .eScopeType = eScopeType, .scopeObj = scopeObj, @@ -901,11 +901,11 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigVa return params._ret; } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo(struct w_steam_iface *_this, uint32_t eValue, const char **pOutName, uint32_t *pOutDataType, uint32_t *pOutScope, uint32_t *pOutNextValue) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo(struct w_iface *_this, uint32_t eValue, const char **pOutName, uint32_t *pOutDataType, uint32_t *pOutScope, uint32_t *pOutNextValue) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValueInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eValue = eValue, .pOutName = pOutName, .pOutDataType = pOutDataType, @@ -917,22 +917,22 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetConfigValu return params._ret; } -uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue(struct w_steam_iface *_this) +uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue(struct w_iface *_this) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_GetFirstConfigValue, ¶ms ); return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString(struct w_steam_iface *_this, const SteamNetworkingIPAddr *addr, char *buf, uint32_t cbBuf, int8_t bWithPort) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString(struct w_iface *_this, const SteamNetworkingIPAddr *addr, char *buf, uint32_t cbBuf, int8_t bWithPort) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .addr = addr, .buf = buf, .cbBuf = cbBuf, @@ -942,11 +942,11 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworking STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ToString, ¶ms ); } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString(struct w_steam_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString(struct w_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIPAddr_ParseString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAddr = pAddr, .pszStr = pszStr, }; @@ -956,11 +956,11 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworki return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identity, char *buf, uint32_t cbBuf) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString(struct w_iface *_this, const SteamNetworkingIdentity_144 *identity, char *buf, uint32_t cbBuf) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identity = identity, .buf = buf, .cbBuf = cbBuf, @@ -969,11 +969,11 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworking STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ToString, ¶ms ); } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString(struct w_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) { struct ISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworkingIdentity_ParseString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pIdentity = pIdentity, .pszStr = pszStr, }; @@ -983,7 +983,7 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_SteamNetworki return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_destructor(struct w_steam_iface *_this) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils003_destructor(struct w_iface *_this) {/* never called */} extern vtable_ptr winISteamNetworkingUtils_SteamNetworkingUtils003_vtable; @@ -1018,9 +1018,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingUtils_SteamNetworkingUtils003_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils003(void *u_iface) +struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils003( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworkingUtils003"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingUtils003"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworkingUtils_SteamNetworkingUtils003_vtable, 23, "SteamNetworkingUtils003"); r->u_iface = u_iface; @@ -1054,11 +1054,11 @@ DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNe DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString, 12) DEFINE_THISCALL_WRAPPER(winISteamNetworkingUtils_SteamNetworkingUtils004_destructor, 4) -uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus(struct w_steam_iface *_this, SteamRelayNetworkStatus_t *pDetails) +uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus(struct w_iface *_this, SteamRelayNetworkStatus_t *pDetails) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNetworkStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDetails = pDetails, }; TRACE("%p\n", _this); @@ -1066,11 +1066,11 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetRelayNet return params._ret; } -float __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation(struct w_steam_iface *_this, SteamNetworkPingLocation_t *result) +float __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation(struct w_iface *_this, SteamNetworkPingLocation_t *result) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLocation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .result = result, }; TRACE("%p\n", _this); @@ -1078,11 +1078,11 @@ float __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalPingLo return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *location1, const SteamNetworkPingLocation_t *location2) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations(struct w_iface *_this, const SteamNetworkPingLocation_t *location1, const SteamNetworkPingLocation_t *location2) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeBetweenTwoLocations_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .location1 = location1, .location2 = location2, }; @@ -1091,11 +1091,11 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePing return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *remoteLocation) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost(struct w_iface *_this, const SteamNetworkPingLocation_t *remoteLocation) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePingTimeFromLocalHost_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .remoteLocation = remoteLocation, }; TRACE("%p\n", _this); @@ -1103,11 +1103,11 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_EstimatePing return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString(struct w_steam_iface *_this, const SteamNetworkPingLocation_t *location, char *pszBuf, int32_t cchBufSize) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString(struct w_iface *_this, const SteamNetworkPingLocation_t *location, char *pszBuf, int32_t cchBufSize) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .location = location, .pszBuf = pszBuf, .cchBufSize = cchBufSize, @@ -1116,11 +1116,11 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLoca STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_ConvertPingLocationToString, ¶ms ); } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString(struct w_steam_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString(struct w_iface *_this, const char *pszString, SteamNetworkPingLocation_t *result) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLocationString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pszString = pszString, .result = result, }; @@ -1130,11 +1130,11 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_ParsePingLoca return params._ret; } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate(struct w_steam_iface *_this, float flMaxAgeSeconds) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate(struct w_iface *_this, float flMaxAgeSeconds) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingDataUpToDate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .flMaxAgeSeconds = flMaxAgeSeconds, }; TRACE("%p\n", _this); @@ -1142,11 +1142,11 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_CheckPingData return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter(struct w_steam_iface *_this, uint32_t popID, uint32_t *pViaRelayPoP) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter(struct w_iface *_this, uint32_t popID, uint32_t *pViaRelayPoP) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDataCenter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .popID = popID, .pViaRelayPoP = pViaRelayPoP, }; @@ -1155,11 +1155,11 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetPingToDat return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP(struct w_steam_iface *_this, uint32_t popID) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP(struct w_iface *_this, uint32_t popID) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPingToPOP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .popID = popID, }; TRACE("%p\n", _this); @@ -1167,22 +1167,22 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetDirectPin return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount(struct w_iface *_this) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPCount, ¶ms ); return params._ret; } -int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList(struct w_steam_iface *_this, uint32_t *list, int32_t nListSz) +int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList(struct w_iface *_this, uint32_t *list, int32_t nListSz) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .list = list, .nListSz = nListSz, }; @@ -1191,22 +1191,22 @@ int32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetPOPList(s return params._ret; } -int64_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp(struct w_steam_iface *_this) +int64_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp(struct w_iface *_this) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_GetLocalTimestamp, ¶ms ); return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction(struct w_steam_iface *_this, uint32_t eDetailLevel, void (*W_CDECL pfnFunc)(uint32_t, const char *)) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction(struct w_iface *_this, uint32_t eDetailLevel, void (*W_CDECL pfnFunc)(uint32_t, const char *)) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eDetailLevel = eDetailLevel, .pfnFunc = pfnFunc, }; @@ -1214,11 +1214,11 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputF STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_SetDebugOutputFunction, ¶ms ); } -uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType(struct w_steam_iface *_this, uint32_t nIPv4) +uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType(struct w_iface *_this, uint32_t nIPv4) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4FakeIPType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nIPv4 = nIPv4, }; TRACE("%p\n", _this); @@ -1226,11 +1226,11 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetIPv4Fake return params._ret; } -uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP(struct w_steam_iface *_this, const SteamNetworkingIPAddr *fakeIP, SteamNetworkingIdentity_144 *pOutRealIdentity) +uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP(struct w_iface *_this, const SteamNetworkingIPAddr *fakeIP, SteamNetworkingIdentity_144 *pOutRealIdentity) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIdentityForFakeIP_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .fakeIP = fakeIP, .pOutRealIdentity = pOutRealIdentity, }; @@ -1239,11 +1239,11 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetRealIden return params._ret; } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue(struct w_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t eDataType, const void *pArg) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eValue = eValue, .eScopeType = eScopeType, .scopeObj = scopeObj, @@ -1255,11 +1255,11 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValu return params._ret; } -uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue(struct w_steam_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t *pOutDataType, void *pResult, uint32_t *cbResult) +uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue(struct w_iface *_this, uint32_t eValue, uint32_t eScopeType, int32_t scopeObj, uint32_t *pOutDataType, void *pResult, uint32_t *cbResult) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValue_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eValue = eValue, .eScopeType = eScopeType, .scopeObj = scopeObj, @@ -1272,11 +1272,11 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigVa return params._ret; } -const char * __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo(struct w_steam_iface *_this, uint32_t eValue, uint32_t *pOutDataType, uint32_t *pOutScope) +const char * __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo(struct w_iface *_this, uint32_t eValue, uint32_t *pOutDataType, uint32_t *pOutScope) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_GetConfigValueInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eValue = eValue, .pOutDataType = pOutDataType, .pOutScope = pOutScope, @@ -1286,11 +1286,11 @@ const char * __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_GetConf return params._ret; } -uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues(struct w_steam_iface *_this, uint32_t eCurrent, int8_t bEnumerateDevVars) +uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues(struct w_iface *_this, uint32_t eCurrent, int8_t bEnumerateDevVars) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_IterateGenericEditableConfigValues_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eCurrent = eCurrent, .bEnumerateDevVars = bEnumerateDevVars, }; @@ -1299,11 +1299,11 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_IterateGene return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString(struct w_steam_iface *_this, const SteamNetworkingIPAddr *addr, char *buf, uint32_t cbBuf, int8_t bWithPort) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString(struct w_iface *_this, const SteamNetworkingIPAddr *addr, char *buf, uint32_t cbBuf, int8_t bWithPort) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .addr = addr, .buf = buf, .cbBuf = cbBuf, @@ -1313,11 +1313,11 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworking STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ToString, ¶ms ); } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString(struct w_steam_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString(struct w_iface *_this, SteamNetworkingIPAddr *pAddr, const char *pszStr) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_ParseString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAddr = pAddr, .pszStr = pszStr, }; @@ -1327,11 +1327,11 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworki return params._ret; } -uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType(struct w_steam_iface *_this, const SteamNetworkingIPAddr *addr) +uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType(struct w_iface *_this, const SteamNetworkingIPAddr *addr) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIPAddr_GetFakeIPType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .addr = addr, }; TRACE("%p\n", _this); @@ -1339,11 +1339,11 @@ uint32_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetwor return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString(struct w_steam_iface *_this, const SteamNetworkingIdentity_144 *identity, char *buf, uint32_t cbBuf) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString(struct w_iface *_this, const SteamNetworkingIdentity_144 *identity, char *buf, uint32_t cbBuf) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .identity = identity, .buf = buf, .cbBuf = cbBuf, @@ -1352,11 +1352,11 @@ void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworking STEAMCLIENT_CALL( ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ToString, ¶ms ); } -int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString(struct w_steam_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) +int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString(struct w_iface *_this, SteamNetworkingIdentity_144 *pIdentity, const char *pszStr) { struct ISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworkingIdentity_ParseString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pIdentity = pIdentity, .pszStr = pszStr, }; @@ -1366,7 +1366,7 @@ int8_t __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_SteamNetworki return params._ret; } -void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_destructor(struct w_steam_iface *_this) +void __thiscall winISteamNetworkingUtils_SteamNetworkingUtils004_destructor(struct w_iface *_this) {/* never called */} extern vtable_ptr winISteamNetworkingUtils_SteamNetworkingUtils004_vtable; @@ -1404,9 +1404,9 @@ __ASM_BLOCK_BEGIN(winISteamNetworkingUtils_SteamNetworkingUtils004_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils004(void *u_iface) +struct w_iface *create_winISteamNetworkingUtils_SteamNetworkingUtils004( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamNetworkingUtils004"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamNetworkingUtils004"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamNetworkingUtils_SteamNetworkingUtils004_vtable, 26, "SteamNetworkingUtils004"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamParentalSettings.c b/lsteamclient/winISteamParentalSettings.c index cd399f4b..07aa05aa 100644 --- a/lsteamclient/winISteamParentalSettings.c +++ b/lsteamclient/winISteamParentalSettings.c @@ -10,33 +10,33 @@ DEFINE_THISCALL_WRAPPER(winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFAC DEFINE_THISCALL_WRAPPER(winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked, 8) DEFINE_THISCALL_WRAPPER(winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList, 8) -int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled(struct w_iface *_this) { struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled, ¶ms ); return params._ret; } -int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked(struct w_steam_iface *_this) +int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked(struct w_iface *_this) { struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked, ¶ms ); return params._ret; } -int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked(struct w_steam_iface *_this, uint32_t nAppID) +int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked(struct w_iface *_this, uint32_t nAppID) { struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); @@ -44,11 +44,11 @@ int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList(struct w_steam_iface *_this, uint32_t nAppID) +int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList(struct w_iface *_this, uint32_t nAppID) { struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); @@ -56,11 +56,11 @@ int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked(struct w_steam_iface *_this, uint32_t eFeature) +int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked(struct w_iface *_this, uint32_t eFeature) { struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eFeature = eFeature, }; TRACE("%p\n", _this); @@ -68,11 +68,11 @@ int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList(struct w_steam_iface *_this, uint32_t eFeature) +int8_t __thiscall winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList(struct w_iface *_this, uint32_t eFeature) { struct ISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eFeature = eFeature, }; TRACE("%p\n", _this); @@ -95,9 +95,9 @@ __ASM_BLOCK_BEGIN(winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERS ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001(void *u_iface) +struct w_iface *create_winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMPARENTALSETTINGS_INTERFACE_VERSION001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMPARENTALSETTINGS_INTERFACE_VERSION001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_vtable, 6, "STEAMPARENTALSETTINGS_INTERFACE_VERSION001"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamParties.c b/lsteamclient/winISteamParties.c index 38abbc69..4d2a4c84 100644 --- a/lsteamclient/winISteamParties.c +++ b/lsteamclient/winISteamParties.c @@ -16,22 +16,22 @@ DEFINE_THISCALL_WRAPPER(winISteamParties_SteamParties002_ChangeNumOpenSlots, 16) DEFINE_THISCALL_WRAPPER(winISteamParties_SteamParties002_DestroyBeacon, 12) DEFINE_THISCALL_WRAPPER(winISteamParties_SteamParties002_GetBeaconLocationData, 28) -uint32_t __thiscall winISteamParties_SteamParties002_GetNumActiveBeacons(struct w_steam_iface *_this) +uint32_t __thiscall winISteamParties_SteamParties002_GetNumActiveBeacons(struct w_iface *_this) { struct ISteamParties_SteamParties002_GetNumActiveBeacons_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamParties_SteamParties002_GetNumActiveBeacons, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamParties_SteamParties002_GetBeaconByIndex(struct w_steam_iface *_this, uint32_t unIndex) +uint64_t __thiscall winISteamParties_SteamParties002_GetBeaconByIndex(struct w_iface *_this, uint32_t unIndex) { struct ISteamParties_SteamParties002_GetBeaconByIndex_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIndex = unIndex, }; TRACE("%p\n", _this); @@ -39,11 +39,11 @@ uint64_t __thiscall winISteamParties_SteamParties002_GetBeaconByIndex(struct w_s return params._ret; } -int8_t __thiscall winISteamParties_SteamParties002_GetBeaconDetails(struct w_steam_iface *_this, uint64_t ulBeaconID, CSteamID *pSteamIDBeaconOwner, w_SteamPartyBeaconLocation_t *pLocation, char *pchMetadata, int32_t cchMetadata) +int8_t __thiscall winISteamParties_SteamParties002_GetBeaconDetails(struct w_iface *_this, uint64_t ulBeaconID, CSteamID *pSteamIDBeaconOwner, w_SteamPartyBeaconLocation_t *pLocation, char *pchMetadata, int32_t cchMetadata) { struct ISteamParties_SteamParties002_GetBeaconDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulBeaconID = ulBeaconID, .pSteamIDBeaconOwner = pSteamIDBeaconOwner, .pLocation = pLocation, @@ -55,11 +55,11 @@ int8_t __thiscall winISteamParties_SteamParties002_GetBeaconDetails(struct w_ste return params._ret; } -uint64_t __thiscall winISteamParties_SteamParties002_JoinParty(struct w_steam_iface *_this, uint64_t ulBeaconID) +uint64_t __thiscall winISteamParties_SteamParties002_JoinParty(struct w_iface *_this, uint64_t ulBeaconID) { struct ISteamParties_SteamParties002_JoinParty_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulBeaconID = ulBeaconID, }; TRACE("%p\n", _this); @@ -67,11 +67,11 @@ uint64_t __thiscall winISteamParties_SteamParties002_JoinParty(struct w_steam_if return params._ret; } -int8_t __thiscall winISteamParties_SteamParties002_GetNumAvailableBeaconLocations(struct w_steam_iface *_this, uint32_t *puNumLocations) +int8_t __thiscall winISteamParties_SteamParties002_GetNumAvailableBeaconLocations(struct w_iface *_this, uint32_t *puNumLocations) { struct ISteamParties_SteamParties002_GetNumAvailableBeaconLocations_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .puNumLocations = puNumLocations, }; TRACE("%p\n", _this); @@ -79,11 +79,11 @@ int8_t __thiscall winISteamParties_SteamParties002_GetNumAvailableBeaconLocation return params._ret; } -int8_t __thiscall winISteamParties_SteamParties002_GetAvailableBeaconLocations(struct w_steam_iface *_this, w_SteamPartyBeaconLocation_t *pLocationList, uint32_t uMaxNumLocations) +int8_t __thiscall winISteamParties_SteamParties002_GetAvailableBeaconLocations(struct w_iface *_this, w_SteamPartyBeaconLocation_t *pLocationList, uint32_t uMaxNumLocations) { struct ISteamParties_SteamParties002_GetAvailableBeaconLocations_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pLocationList = pLocationList, .uMaxNumLocations = uMaxNumLocations, }; @@ -92,11 +92,11 @@ int8_t __thiscall winISteamParties_SteamParties002_GetAvailableBeaconLocations(s return params._ret; } -uint64_t __thiscall winISteamParties_SteamParties002_CreateBeacon(struct w_steam_iface *_this, uint32_t unOpenSlots, w_SteamPartyBeaconLocation_t *pBeaconLocation, const char *pchConnectString, const char *pchMetadata) +uint64_t __thiscall winISteamParties_SteamParties002_CreateBeacon(struct w_iface *_this, uint32_t unOpenSlots, w_SteamPartyBeaconLocation_t *pBeaconLocation, const char *pchConnectString, const char *pchMetadata) { struct ISteamParties_SteamParties002_CreateBeacon_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unOpenSlots = unOpenSlots, .pBeaconLocation = pBeaconLocation, .pchConnectString = pchConnectString, @@ -109,11 +109,11 @@ uint64_t __thiscall winISteamParties_SteamParties002_CreateBeacon(struct w_steam return params._ret; } -void __thiscall winISteamParties_SteamParties002_OnReservationCompleted(struct w_steam_iface *_this, uint64_t ulBeacon, CSteamID steamIDUser) +void __thiscall winISteamParties_SteamParties002_OnReservationCompleted(struct w_iface *_this, uint64_t ulBeacon, CSteamID steamIDUser) { struct ISteamParties_SteamParties002_OnReservationCompleted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulBeacon = ulBeacon, .steamIDUser = steamIDUser, }; @@ -121,11 +121,11 @@ void __thiscall winISteamParties_SteamParties002_OnReservationCompleted(struct w STEAMCLIENT_CALL( ISteamParties_SteamParties002_OnReservationCompleted, ¶ms ); } -void __thiscall winISteamParties_SteamParties002_CancelReservation(struct w_steam_iface *_this, uint64_t ulBeacon, CSteamID steamIDUser) +void __thiscall winISteamParties_SteamParties002_CancelReservation(struct w_iface *_this, uint64_t ulBeacon, CSteamID steamIDUser) { struct ISteamParties_SteamParties002_CancelReservation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulBeacon = ulBeacon, .steamIDUser = steamIDUser, }; @@ -133,11 +133,11 @@ void __thiscall winISteamParties_SteamParties002_CancelReservation(struct w_stea STEAMCLIENT_CALL( ISteamParties_SteamParties002_CancelReservation, ¶ms ); } -uint64_t __thiscall winISteamParties_SteamParties002_ChangeNumOpenSlots(struct w_steam_iface *_this, uint64_t ulBeacon, uint32_t unOpenSlots) +uint64_t __thiscall winISteamParties_SteamParties002_ChangeNumOpenSlots(struct w_iface *_this, uint64_t ulBeacon, uint32_t unOpenSlots) { struct ISteamParties_SteamParties002_ChangeNumOpenSlots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulBeacon = ulBeacon, .unOpenSlots = unOpenSlots, }; @@ -146,11 +146,11 @@ uint64_t __thiscall winISteamParties_SteamParties002_ChangeNumOpenSlots(struct w return params._ret; } -int8_t __thiscall winISteamParties_SteamParties002_DestroyBeacon(struct w_steam_iface *_this, uint64_t ulBeacon) +int8_t __thiscall winISteamParties_SteamParties002_DestroyBeacon(struct w_iface *_this, uint64_t ulBeacon) { struct ISteamParties_SteamParties002_DestroyBeacon_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulBeacon = ulBeacon, }; TRACE("%p\n", _this); @@ -158,11 +158,11 @@ int8_t __thiscall winISteamParties_SteamParties002_DestroyBeacon(struct w_steam_ return params._ret; } -int8_t __thiscall winISteamParties_SteamParties002_GetBeaconLocationData(struct w_steam_iface *_this, w_SteamPartyBeaconLocation_t BeaconLocation, uint32_t eData, char *pchDataStringOut, int32_t cchDataStringOut) +int8_t __thiscall winISteamParties_SteamParties002_GetBeaconLocationData(struct w_iface *_this, w_SteamPartyBeaconLocation_t BeaconLocation, uint32_t eData, char *pchDataStringOut, int32_t cchDataStringOut) { struct ISteamParties_SteamParties002_GetBeaconLocationData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .BeaconLocation = BeaconLocation, .eData = eData, .pchDataStringOut = pchDataStringOut, @@ -194,9 +194,9 @@ __ASM_BLOCK_BEGIN(winISteamParties_SteamParties002_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamParties_SteamParties002(void *u_iface) +struct w_iface *create_winISteamParties_SteamParties002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamParties002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamParties002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamParties_SteamParties002_vtable, 12, "SteamParties002"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamRemotePlay.c b/lsteamclient/winISteamRemotePlay.c index d555e026..c1c89e82 100644 --- a/lsteamclient/winISteamRemotePlay.c +++ b/lsteamclient/winISteamRemotePlay.c @@ -11,22 +11,22 @@ DEFINE_THISCALL_WRAPPER(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 DEFINE_THISCALL_WRAPPER(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution, 16) DEFINE_THISCALL_WRAPPER(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite, 12) -uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount(struct w_iface *_this) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionCount, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID(struct w_steam_iface *_this, int32_t iSessionIndex) +uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID(struct w_iface *_this, int32_t iSessionIndex) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iSessionIndex = iSessionIndex, }; TRACE("%p\n", _this); @@ -34,11 +34,11 @@ uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_Get return params._ret; } -CSteamID * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID(struct w_steam_iface *_this, CSteamID *_ret, uint32_t unSessionID) +CSteamID * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID(struct w_iface *_this, CSteamID *_ret, uint32_t unSessionID) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .unSessionID = unSessionID, }; @@ -47,11 +47,11 @@ CSteamID * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_G return params._ret; } -const char * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName(struct w_steam_iface *_this, uint32_t unSessionID) +const char * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName(struct w_iface *_this, uint32_t unSessionID) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSessionID = unSessionID, }; TRACE("%p\n", _this); @@ -59,11 +59,11 @@ const char * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001 return params._ret; } -uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor(struct w_steam_iface *_this, uint32_t unSessionID) +uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor(struct w_iface *_this, uint32_t unSessionID) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_GetSessionClientFormFactor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSessionID = unSessionID, }; TRACE("%p\n", _this); @@ -71,11 +71,11 @@ uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_Get return params._ret; } -int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution(struct w_steam_iface *_this, uint32_t unSessionID, int32_t *pnResolutionX, int32_t *pnResolutionY) +int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution(struct w_iface *_this, uint32_t unSessionID, int32_t *pnResolutionX, int32_t *pnResolutionY) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetSessionClientResolution_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSessionID = unSessionID, .pnResolutionX = pnResolutionX, .pnResolutionY = pnResolutionY, @@ -85,11 +85,11 @@ int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BGetS return params._ret; } -int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite(struct w_steam_iface *_this, CSteamID steamIDFriend) +int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_BSendRemotePlayTogetherInvite_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -113,9 +113,9 @@ __ASM_BLOCK_BEGIN(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_vtabl ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001(void *u_iface) +struct w_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMREMOTEPLAY_INTERFACE_VERSION001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTEPLAY_INTERFACE_VERSION001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION001_vtable, 7, "STEAMREMOTEPLAY_INTERFACE_VERSION001"); r->u_iface = u_iface; @@ -131,22 +131,22 @@ DEFINE_THISCALL_WRAPPER(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 DEFINE_THISCALL_WRAPPER(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether, 8) DEFINE_THISCALL_WRAPPER(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite, 12) -uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount(struct w_iface *_this) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionCount, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID(struct w_steam_iface *_this, int32_t iSessionIndex) +uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID(struct w_iface *_this, int32_t iSessionIndex) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iSessionIndex = iSessionIndex, }; TRACE("%p\n", _this); @@ -154,11 +154,11 @@ uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_Get return params._ret; } -CSteamID * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID(struct w_steam_iface *_this, CSteamID *_ret, uint32_t unSessionID) +CSteamID * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID(struct w_iface *_this, CSteamID *_ret, uint32_t unSessionID) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .unSessionID = unSessionID, }; @@ -167,11 +167,11 @@ CSteamID * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_G return params._ret; } -const char * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName(struct w_steam_iface *_this, uint32_t unSessionID) +const char * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName(struct w_iface *_this, uint32_t unSessionID) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSessionID = unSessionID, }; TRACE("%p\n", _this); @@ -179,11 +179,11 @@ const char * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002 return params._ret; } -uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor(struct w_steam_iface *_this, uint32_t unSessionID) +uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor(struct w_iface *_this, uint32_t unSessionID) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_GetSessionClientFormFactor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSessionID = unSessionID, }; TRACE("%p\n", _this); @@ -191,11 +191,11 @@ uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_Get return params._ret; } -int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution(struct w_steam_iface *_this, uint32_t unSessionID, int32_t *pnResolutionX, int32_t *pnResolutionY) +int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution(struct w_iface *_this, uint32_t unSessionID, int32_t *pnResolutionX, int32_t *pnResolutionY) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetSessionClientResolution_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSessionID = unSessionID, .pnResolutionX = pnResolutionX, .pnResolutionY = pnResolutionY, @@ -205,11 +205,11 @@ int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BGetS return params._ret; } -int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether(struct w_steam_iface *_this, int8_t bShowOverlay) +int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether(struct w_iface *_this, int8_t bShowOverlay) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStartRemotePlayTogether_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bShowOverlay = bShowOverlay, }; TRACE("%p\n", _this); @@ -217,11 +217,11 @@ int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BStar return params._ret; } -int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite(struct w_steam_iface *_this, CSteamID steamIDFriend) +int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_BSendRemotePlayTogetherInvite_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -246,9 +246,9 @@ __ASM_BLOCK_BEGIN(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_vtabl ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002(void *u_iface) +struct w_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMREMOTEPLAY_INTERFACE_VERSION002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTEPLAY_INTERFACE_VERSION002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION002_vtable, 8, "STEAMREMOTEPLAY_INTERFACE_VERSION002"); r->u_iface = u_iface; @@ -271,22 +271,22 @@ DEFINE_THISCALL_WRAPPER(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 DEFINE_THISCALL_WRAPPER(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_CreateMouseCursor, 28) DEFINE_THISCALL_WRAPPER(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseCursor, 12) -uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionCount(struct w_iface *_this) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionCount, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionID(struct w_steam_iface *_this, int32_t iSessionIndex) +uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionID(struct w_iface *_this, int32_t iSessionIndex) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iSessionIndex = iSessionIndex, }; TRACE("%p\n", _this); @@ -294,11 +294,11 @@ uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_Get return params._ret; } -CSteamID * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionSteamID(struct w_steam_iface *_this, CSteamID *_ret, uint32_t unSessionID) +CSteamID * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionSteamID(struct w_iface *_this, CSteamID *_ret, uint32_t unSessionID) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, .unSessionID = unSessionID, }; @@ -307,11 +307,11 @@ CSteamID * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_G return params._ret; } -const char * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientName(struct w_steam_iface *_this, uint32_t unSessionID) +const char * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientName(struct w_iface *_this, uint32_t unSessionID) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSessionID = unSessionID, }; TRACE("%p\n", _this); @@ -319,11 +319,11 @@ const char * __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003 return params._ret; } -uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientFormFactor(struct w_steam_iface *_this, uint32_t unSessionID) +uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientFormFactor(struct w_iface *_this, uint32_t unSessionID) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetSessionClientFormFactor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSessionID = unSessionID, }; TRACE("%p\n", _this); @@ -331,11 +331,11 @@ uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_Get return params._ret; } -int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BGetSessionClientResolution(struct w_steam_iface *_this, uint32_t unSessionID, int32_t *pnResolutionX, int32_t *pnResolutionY) +int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BGetSessionClientResolution(struct w_iface *_this, uint32_t unSessionID, int32_t *pnResolutionX, int32_t *pnResolutionY) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BGetSessionClientResolution_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSessionID = unSessionID, .pnResolutionX = pnResolutionX, .pnResolutionY = pnResolutionY, @@ -345,22 +345,22 @@ int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BGetS return params._ret; } -int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_ShowRemotePlayTogetherUI(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_ShowRemotePlayTogetherUI(struct w_iface *_this) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_ShowRemotePlayTogetherUI_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_ShowRemotePlayTogetherUI, ¶ms ); return params._ret; } -int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BSendRemotePlayTogetherInvite(struct w_steam_iface *_this, CSteamID steamIDFriend) +int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BSendRemotePlayTogetherInvite(struct w_iface *_this, CSteamID steamIDFriend) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BSendRemotePlayTogetherInvite_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDFriend = steamIDFriend, }; TRACE("%p\n", _this); @@ -368,32 +368,32 @@ int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BSend return params._ret; } -int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BEnableRemotePlayTogetherDirectInput(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BEnableRemotePlayTogetherDirectInput(struct w_iface *_this) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BEnableRemotePlayTogetherDirectInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_BEnableRemotePlayTogetherDirectInput, ¶ms ); return params._ret; } -void __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_DisableRemotePlayTogetherDirectInput(struct w_steam_iface *_this) +void __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_DisableRemotePlayTogetherDirectInput(struct w_iface *_this) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_DisableRemotePlayTogetherDirectInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_DisableRemotePlayTogetherDirectInput, ¶ms ); } -uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetInput(struct w_steam_iface *_this, RemotePlayInput_t *pInput, uint32_t unMaxEvents) +uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetInput(struct w_iface *_this, RemotePlayInput_t *pInput, uint32_t unMaxEvents) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_GetInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pInput = pInput, .unMaxEvents = unMaxEvents, }; @@ -402,11 +402,11 @@ uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_Get return params._ret; } -void __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseVisibility(struct w_steam_iface *_this, uint32_t unSessionID, int8_t bVisible) +void __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseVisibility(struct w_iface *_this, uint32_t unSessionID, int8_t bVisible) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSessionID = unSessionID, .bVisible = bVisible, }; @@ -414,11 +414,11 @@ void __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMous STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseVisibility, ¶ms ); } -void __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMousePosition(struct w_steam_iface *_this, uint32_t unSessionID, float flNormalizedX, float flNormalizedY) +void __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMousePosition(struct w_iface *_this, uint32_t unSessionID, float flNormalizedX, float flNormalizedY) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMousePosition_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSessionID = unSessionID, .flNormalizedX = flNormalizedX, .flNormalizedY = flNormalizedY, @@ -427,11 +427,11 @@ void __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMous STEAMCLIENT_CALL( ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMousePosition, ¶ms ); } -uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_CreateMouseCursor(struct w_steam_iface *_this, int32_t nWidth, int32_t nHeight, int32_t nHotX, int32_t nHotY, const void *pBGRA, int32_t nPitch) +uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_CreateMouseCursor(struct w_iface *_this, int32_t nWidth, int32_t nHeight, int32_t nHotX, int32_t nHotY, const void *pBGRA, int32_t nPitch) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_CreateMouseCursor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nWidth = nWidth, .nHeight = nHeight, .nHotX = nHotX, @@ -444,11 +444,11 @@ uint32_t __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_Cre return params._ret; } -void __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseCursor(struct w_steam_iface *_this, uint32_t unSessionID, uint32_t unCursorID) +void __thiscall winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseCursor(struct w_iface *_this, uint32_t unSessionID, uint32_t unCursorID) { struct ISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_SetMouseCursor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unSessionID = unSessionID, .unCursorID = unCursorID, }; @@ -480,9 +480,9 @@ __ASM_BLOCK_BEGIN(winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_vtabl ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003(void *u_iface) +struct w_iface *create_winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMREMOTEPLAY_INTERFACE_VERSION003"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTEPLAY_INTERFACE_VERSION003"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamRemotePlay_STEAMREMOTEPLAY_INTERFACE_VERSION003_vtable, 15, "STEAMREMOTEPLAY_INTERFACE_VERSION003"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamRemoteStorage.c b/lsteamclient/winISteamRemoteStorage.c index 0729b68c..dd396a23 100644 --- a/lsteamclient/winISteamRemoteStorage.c +++ b/lsteamclient/winISteamRemoteStorage.c @@ -12,11 +12,11 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize, 12) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota, 12) -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite(struct w_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileWrite_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubData = cubData, @@ -27,11 +27,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize(struct w_steam_iface *_this, const char *pchFile) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -40,11 +40,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead(struct w_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -55,11 +55,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileExists_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -68,11 +68,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_FileDelete_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -81,22 +81,22 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileCount, ¶ms ); return params._ret; } -const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize(struct w_steam_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) +const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize(struct w_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetFileNameAndSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; @@ -105,11 +105,11 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota(struct w_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_GetQuota_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; @@ -135,9 +135,9 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001 ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001(void *u_iface) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION001_vtable, 8, "STEAMREMOTESTORAGE_INTERFACE_VERSION001"); r->u_iface = u_iface; @@ -152,11 +152,11 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize, 12) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota, 12) -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite(struct w_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileWrite_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubData = cubData, @@ -167,11 +167,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize(struct w_steam_iface *_this, const char *pchFile) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -180,11 +180,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead(struct w_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -195,11 +195,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_FileExists_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -208,22 +208,22 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileCount, ¶ms ); return params._ret; } -const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize(struct w_steam_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) +const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize(struct w_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetFileNameAndSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; @@ -232,11 +232,11 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota(struct w_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_GetQuota_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; @@ -261,9 +261,9 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002 ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002(void *u_iface) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION002_vtable, 7, "STEAMREMOTESTORAGE_INTERFACE_VERSION002"); r->u_iface = u_iface; @@ -291,11 +291,11 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount, 4) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle, 8) -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite(struct w_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileWrite_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubData = cubData, @@ -306,11 +306,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead(struct w_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -321,11 +321,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileForget_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -334,11 +334,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileDelete_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -347,11 +347,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileShare_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -360,11 +360,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FileExists_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -373,11 +373,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_FilePersisted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -386,11 +386,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize(struct w_steam_iface *_this, const char *pchFile) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -399,11 +399,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) +int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -412,22 +412,22 @@ int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileCount, ¶ms ); return params._ret; } -const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize(struct w_steam_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) +const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize(struct w_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetFileNameAndSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; @@ -436,11 +436,11 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota(struct w_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetQuota_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; @@ -449,44 +449,44 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForAccount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_IsCloudEnabledForApp, ¶ms ); return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp(struct w_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_SetCloudEnabledForApp, ¶ms ); } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload(struct w_steam_iface *_this, uint64_t hContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload(struct w_iface *_this, uint64_t hContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCDownload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, }; TRACE("%p\n", _this); @@ -494,11 +494,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails(struct w_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnAppID = pnAppID, .ppchName = ppchName, @@ -510,11 +510,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead(struct w_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_UGCRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -524,22 +524,22 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCCount, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle(struct w_steam_iface *_this, int32_t iCachedContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle(struct w_iface *_this, int32_t iCachedContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_GetCachedUGCHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); @@ -576,9 +576,9 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003 ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003(void *u_iface) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION003"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION003"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION003_vtable, 20, "STEAMREMOTESTORAGE_INTERFACE_VERSION003"); r->u_iface = u_iface; @@ -608,11 +608,11 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount, 4) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle, 8) -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite(struct w_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileWrite_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubData = cubData, @@ -623,11 +623,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead(struct w_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -638,11 +638,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileForget_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -651,11 +651,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileDelete_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -664,11 +664,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileShare_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -677,11 +677,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms(struct w_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; @@ -691,11 +691,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FileExists_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -704,11 +704,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_FilePersisted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -717,11 +717,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize(struct w_steam_iface *_this, const char *pchFile) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -730,11 +730,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) +int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -743,11 +743,11 @@ int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) +uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -756,22 +756,22 @@ uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileCount, ¶ms ); return params._ret; } -const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize(struct w_steam_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) +const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize(struct w_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetFileNameAndSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; @@ -780,11 +780,11 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota(struct w_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetQuota_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; @@ -793,44 +793,44 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForAccount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_IsCloudEnabledForApp, ¶ms ); return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp(struct w_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_SetCloudEnabledForApp, ¶ms ); } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload(struct w_steam_iface *_this, uint64_t hContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload(struct w_iface *_this, uint64_t hContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCDownload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, }; TRACE("%p\n", _this); @@ -838,11 +838,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails(struct w_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnAppID = pnAppID, .ppchName = ppchName, @@ -854,11 +854,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead(struct w_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_UGCRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -868,22 +868,22 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCCount, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle(struct w_steam_iface *_this, int32_t iCachedContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle(struct w_iface *_this, int32_t iCachedContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_GetCachedUGCHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); @@ -922,9 +922,9 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004 ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004(void *u_iface) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION004"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION004"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION004_vtable, 22, "STEAMREMOTESTORAGE_INTERFACE_VERSION004"); r->u_iface = u_iface; @@ -963,11 +963,11 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles, 8) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile, 12) -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite(struct w_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileWrite_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubData = cubData, @@ -978,11 +978,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead(struct w_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -993,11 +993,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileForget_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -1006,11 +1006,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileDelete_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -1019,11 +1019,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileShare_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -1032,11 +1032,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms(struct w_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; @@ -1046,11 +1046,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FileExists_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -1059,11 +1059,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_FilePersisted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -1072,11 +1072,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize(struct w_steam_iface *_this, const char *pchFile) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -1085,11 +1085,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) +int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -1098,11 +1098,11 @@ int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) +uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -1111,22 +1111,22 @@ uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileCount, ¶ms ); return params._ret; } -const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize(struct w_steam_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) +const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize(struct w_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetFileNameAndSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; @@ -1135,11 +1135,11 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota(struct w_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetQuota_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; @@ -1148,44 +1148,44 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForAccount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_IsCloudEnabledForApp, ¶ms ); return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp(struct w_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SetCloudEnabledForApp, ¶ms ); } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload(struct w_steam_iface *_this, uint64_t hContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload(struct w_iface *_this, uint64_t hContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCDownload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, }; TRACE("%p\n", _this); @@ -1193,11 +1193,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails(struct w_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnAppID = pnAppID, .ppchName = ppchName, @@ -1209,11 +1209,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead(struct w_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UGCRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -1223,22 +1223,22 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCCount, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle(struct w_steam_iface *_this, int32_t iCachedContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle(struct w_iface *_this, int32_t iCachedContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetCachedUGCHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); @@ -1246,11 +1246,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile(struct w_steam_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile(struct w_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pchPreviewFile = pchPreviewFile, .nConsumerAppId = nConsumerAppId, @@ -1268,11 +1268,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile(struct w_steam_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, w_SteamParamStringArray_t *pTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile(struct w_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_PublishWorkshopFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pchPreviewFile = pchPreviewFile, .nConsumerAppId = nConsumerAppId, @@ -1289,11 +1289,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile(struct w_steam_iface *_this, w_RemoteStorageUpdatePublishedFileRequest_t updatePublishedFileRequest) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile(struct w_iface *_this, w_RemoteStorageUpdatePublishedFileRequest_t updatePublishedFileRequest) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UpdatePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updatePublishedFileRequest = updatePublishedFileRequest, }; TRACE("%p\n", _this); @@ -1301,11 +1301,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_GetPublishedFileDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -1313,11 +1313,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_DeletePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -1325,11 +1325,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserPublishedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -1337,11 +1337,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_SubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -1349,11 +1349,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_EnumerateUserSubscribedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -1361,11 +1361,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_UnsubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -1413,9 +1413,9 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005 ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005(void *u_iface) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION005"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION005"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION005_vtable, 31, "STEAMREMOTESTORAGE_INTERFACE_VERSION005"); r->u_iface = u_iface; @@ -1470,11 +1470,11 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction, 12) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles, 28) -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite(struct w_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileWrite_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubData = cubData, @@ -1485,11 +1485,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead(struct w_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -1500,11 +1500,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileForget_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -1513,11 +1513,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileDelete_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -1526,11 +1526,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileShare_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -1539,11 +1539,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms(struct w_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; @@ -1553,11 +1553,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FileExists_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -1566,11 +1566,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_FilePersisted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -1579,11 +1579,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize(struct w_steam_iface *_this, const char *pchFile) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -1592,11 +1592,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) +int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -1605,11 +1605,11 @@ int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) +uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -1618,22 +1618,22 @@ uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileCount, ¶ms ); return params._ret; } -const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize(struct w_steam_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) +const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize(struct w_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetFileNameAndSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; @@ -1642,11 +1642,11 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota(struct w_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetQuota_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; @@ -1655,44 +1655,44 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForAccount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_IsCloudEnabledForApp, ¶ms ); return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp(struct w_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetCloudEnabledForApp, ¶ms ); } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload(struct w_steam_iface *_this, uint64_t hContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload(struct w_iface *_this, uint64_t hContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCDownload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, }; TRACE("%p\n", _this); @@ -1700,11 +1700,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress(struct w_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDownloadProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnBytesDownloaded = pnBytesDownloaded, .pnBytesExpected = pnBytesExpected, @@ -1714,11 +1714,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails(struct w_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnAppID = pnAppID, .ppchName = ppchName, @@ -1730,11 +1730,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead(struct w_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UGCRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -1744,22 +1744,22 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCCount, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle(struct w_steam_iface *_this, int32_t iCachedContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle(struct w_iface *_this, int32_t iCachedContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetCachedUGCHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); @@ -1767,11 +1767,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile(struct w_steam_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile(struct w_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishWorkshopFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pchPreviewFile = pchPreviewFile, .nConsumerAppId = nConsumerAppId, @@ -1790,11 +1790,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CreatePublishedFileUpdateRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -1802,11 +1802,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile(struct w_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchFile = pchFile, }; @@ -1816,11 +1816,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile(struct w_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFilePreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchPreviewFile = pchPreviewFile, }; @@ -1830,11 +1830,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle(struct w_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; @@ -1844,11 +1844,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; @@ -1858,11 +1858,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility(struct w_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; @@ -1871,11 +1871,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags(struct w_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -1884,11 +1884,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate(struct w_iface *_this, uint64_t updateHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_CommitPublishedFileUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); @@ -1896,11 +1896,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedFileDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -1908,11 +1908,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_DeletePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -1920,11 +1920,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserPublishedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -1932,11 +1932,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -1944,11 +1944,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSubscribedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -1956,11 +1956,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UnsubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -1968,11 +1968,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdatePublishedFileSetChangeDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; @@ -1982,11 +1982,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -1994,11 +1994,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote(struct w_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_UpdateUserPublishedItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; @@ -2007,11 +2007,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_GetUserPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -2019,11 +2019,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles(struct w_steam_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles(struct w_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumerateUserSharedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamId = steamId, .unStartIndex = unStartIndex, .pRequiredTags = pRequiredTags, @@ -2034,11 +2034,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo(struct w_steam_iface *_this, const char *pchVideoURL, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo(struct w_iface *_this, const char *pchVideoURL, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_PublishVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchVideoURL = pchVideoURL, .pchPreviewFile = pchPreviewFile, .nConsumerAppId = nConsumerAppId, @@ -2056,11 +2056,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction(struct w_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_SetUserPublishedFileAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; @@ -2069,11 +2069,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction(struct w_iface *_this, uint32_t eAction, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedFilesByUserAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; @@ -2082,11 +2082,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles(struct w_steam_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles(struct w_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_EnumeratePublishedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eEnumerationType = eEnumerationType, .unStartIndex = unStartIndex, .unCount = unCount, @@ -2155,9 +2155,9 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006 ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006(void *u_iface) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION006"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION006"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION006_vtable, 47, "STEAMREMOTESTORAGE_INTERFACE_VERSION006"); r->u_iface = u_iface; @@ -2212,11 +2212,11 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction, 12) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles, 28) -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite(struct w_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileWrite_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubData = cubData, @@ -2227,11 +2227,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead(struct w_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -2242,11 +2242,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileForget_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -2255,11 +2255,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileDelete_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -2268,11 +2268,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileShare_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -2281,11 +2281,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms(struct w_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; @@ -2295,11 +2295,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FileExists_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -2308,11 +2308,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_FilePersisted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -2321,11 +2321,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize(struct w_steam_iface *_this, const char *pchFile) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -2334,11 +2334,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) +int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -2347,11 +2347,11 @@ int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) +uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -2360,22 +2360,22 @@ uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileCount, ¶ms ); return params._ret; } -const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize(struct w_steam_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) +const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize(struct w_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetFileNameAndSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; @@ -2384,11 +2384,11 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota(struct w_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetQuota_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; @@ -2397,44 +2397,44 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForAccount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_IsCloudEnabledForApp, ¶ms ); return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp(struct w_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetCloudEnabledForApp, ¶ms ); } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload(struct w_steam_iface *_this, uint64_t hContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload(struct w_iface *_this, uint64_t hContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCDownload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, }; TRACE("%p\n", _this); @@ -2442,11 +2442,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress(struct w_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDownloadProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnBytesDownloaded = pnBytesDownloaded, .pnBytesExpected = pnBytesExpected, @@ -2456,11 +2456,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails(struct w_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnAppID = pnAppID, .ppchName = ppchName, @@ -2472,11 +2472,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead(struct w_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UGCRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -2486,22 +2486,22 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCCount, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle(struct w_steam_iface *_this, int32_t iCachedContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle(struct w_iface *_this, int32_t iCachedContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetCachedUGCHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); @@ -2509,11 +2509,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile(struct w_steam_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile(struct w_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishWorkshopFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pchPreviewFile = pchPreviewFile, .nConsumerAppId = nConsumerAppId, @@ -2532,11 +2532,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CreatePublishedFileUpdateRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -2544,11 +2544,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile(struct w_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchFile = pchFile, }; @@ -2558,11 +2558,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile(struct w_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFilePreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchPreviewFile = pchPreviewFile, }; @@ -2572,11 +2572,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle(struct w_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; @@ -2586,11 +2586,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; @@ -2600,11 +2600,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility(struct w_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; @@ -2613,11 +2613,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags(struct w_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -2626,11 +2626,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate(struct w_iface *_this, uint64_t updateHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_CommitPublishedFileUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); @@ -2638,11 +2638,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedFileDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -2650,11 +2650,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_DeletePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -2662,11 +2662,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserPublishedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -2674,11 +2674,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -2686,11 +2686,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSubscribedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -2698,11 +2698,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UnsubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -2710,11 +2710,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdatePublishedFileSetChangeDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; @@ -2724,11 +2724,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -2736,11 +2736,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote(struct w_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_UpdateUserPublishedItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; @@ -2749,11 +2749,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_GetUserPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -2761,11 +2761,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles(struct w_steam_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles(struct w_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumerateUserSharedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamId = steamId, .unStartIndex = unStartIndex, .pRequiredTags = pRequiredTags, @@ -2776,11 +2776,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo(struct w_steam_iface *_this, uint32_t eVideoProvider, const char *pchVideoAccount, const char *pchVideoIdentifier, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo(struct w_iface *_this, uint32_t eVideoProvider, const char *pchVideoAccount, const char *pchVideoIdentifier, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_PublishVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eVideoProvider = eVideoProvider, .pchVideoAccount = pchVideoAccount, .pchVideoIdentifier = pchVideoIdentifier, @@ -2801,11 +2801,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction(struct w_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_SetUserPublishedFileAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; @@ -2814,11 +2814,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction(struct w_iface *_this, uint32_t eAction, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedFilesByUserAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; @@ -2827,11 +2827,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles(struct w_steam_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles(struct w_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_EnumeratePublishedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eEnumerationType = eEnumerationType, .unStartIndex = unStartIndex, .unCount = unCount, @@ -2900,9 +2900,9 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007 ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007(void *u_iface) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION007"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION007"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION007_vtable, 47, "STEAMREMOTESTORAGE_INTERFACE_VERSION007"); r->u_iface = u_iface; @@ -2961,11 +2961,11 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction, 12) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles, 28) -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite(struct w_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWrite_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubData = cubData, @@ -2976,11 +2976,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead(struct w_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -2991,11 +2991,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileForget_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -3004,11 +3004,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileDelete_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -3017,11 +3017,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileShare_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -3030,11 +3030,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms(struct w_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; @@ -3044,11 +3044,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamOpen_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -3057,11 +3057,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk(struct w_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamWriteChunk_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, .pvData = pvData, .cubData = cubData, @@ -3071,11 +3071,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose(struct w_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamClose_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); @@ -3083,11 +3083,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel(struct w_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileWriteStreamCancel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); @@ -3095,11 +3095,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FileExists_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -3108,11 +3108,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_FilePersisted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -3121,11 +3121,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize(struct w_steam_iface *_this, const char *pchFile) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -3134,11 +3134,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) +int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -3147,11 +3147,11 @@ int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) +uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -3160,22 +3160,22 @@ uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileCount, ¶ms ); return params._ret; } -const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize(struct w_steam_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) +const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize(struct w_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetFileNameAndSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; @@ -3184,11 +3184,11 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota(struct w_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetQuota_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; @@ -3197,44 +3197,44 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForAccount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_IsCloudEnabledForApp, ¶ms ); return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp(struct w_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetCloudEnabledForApp, ¶ms ); } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload(struct w_steam_iface *_this, uint64_t hContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload(struct w_iface *_this, uint64_t hContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCDownload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, }; TRACE("%p\n", _this); @@ -3242,11 +3242,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress(struct w_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDownloadProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnBytesDownloaded = pnBytesDownloaded, .pnBytesExpected = pnBytesExpected, @@ -3256,11 +3256,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails(struct w_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnAppID = pnAppID, .ppchName = ppchName, @@ -3272,11 +3272,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead(struct w_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UGCRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -3286,22 +3286,22 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCCount, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle(struct w_steam_iface *_this, int32_t iCachedContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle(struct w_iface *_this, int32_t iCachedContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetCachedUGCHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); @@ -3309,11 +3309,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile(struct w_steam_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile(struct w_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishWorkshopFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pchPreviewFile = pchPreviewFile, .nConsumerAppId = nConsumerAppId, @@ -3332,11 +3332,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CreatePublishedFileUpdateRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -3344,11 +3344,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile(struct w_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchFile = pchFile, }; @@ -3358,11 +3358,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile(struct w_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFilePreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchPreviewFile = pchPreviewFile, }; @@ -3372,11 +3372,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle(struct w_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; @@ -3386,11 +3386,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; @@ -3400,11 +3400,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility(struct w_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; @@ -3413,11 +3413,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags(struct w_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -3426,11 +3426,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate(struct w_iface *_this, uint64_t updateHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_CommitPublishedFileUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); @@ -3438,11 +3438,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedFileDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -3450,11 +3450,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_DeletePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -3462,11 +3462,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserPublishedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -3474,11 +3474,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -3486,11 +3486,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSubscribedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -3498,11 +3498,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UnsubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -3510,11 +3510,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdatePublishedFileSetChangeDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; @@ -3524,11 +3524,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -3536,11 +3536,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote(struct w_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_UpdateUserPublishedItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; @@ -3549,11 +3549,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_GetUserPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -3561,11 +3561,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles(struct w_steam_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles(struct w_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumerateUserSharedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamId = steamId, .unStartIndex = unStartIndex, .pRequiredTags = pRequiredTags, @@ -3576,11 +3576,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo(struct w_steam_iface *_this, uint32_t eVideoProvider, const char *pchVideoAccount, const char *pchVideoIdentifier, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo(struct w_iface *_this, uint32_t eVideoProvider, const char *pchVideoAccount, const char *pchVideoIdentifier, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_PublishVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eVideoProvider = eVideoProvider, .pchVideoAccount = pchVideoAccount, .pchVideoIdentifier = pchVideoIdentifier, @@ -3601,11 +3601,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction(struct w_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_SetUserPublishedFileAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; @@ -3614,11 +3614,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction(struct w_iface *_this, uint32_t eAction, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedFilesByUserAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; @@ -3627,11 +3627,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles(struct w_steam_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles(struct w_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_EnumeratePublishedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eEnumerationType = eEnumerationType, .unStartIndex = unStartIndex, .unCount = unCount, @@ -3704,9 +3704,9 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008 ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008(void *u_iface) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION008"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION008"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION008_vtable, 51, "STEAMREMOTESTORAGE_INTERFACE_VERSION008"); r->u_iface = u_iface; @@ -3765,11 +3765,11 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction, 12) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles, 28) -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite(struct w_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWrite_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubData = cubData, @@ -3780,11 +3780,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead(struct w_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -3795,11 +3795,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileForget_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -3808,11 +3808,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileDelete_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -3821,11 +3821,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileShare_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -3834,11 +3834,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms(struct w_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; @@ -3848,11 +3848,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamOpen_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -3861,11 +3861,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk(struct w_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamWriteChunk_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, .pvData = pvData, .cubData = cubData, @@ -3875,11 +3875,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose(struct w_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamClose_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); @@ -3887,11 +3887,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel(struct w_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileWriteStreamCancel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); @@ -3899,11 +3899,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FileExists_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -3912,11 +3912,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_FilePersisted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -3925,11 +3925,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize(struct w_steam_iface *_this, const char *pchFile) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -3938,11 +3938,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) +int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -3951,11 +3951,11 @@ int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) +uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -3964,22 +3964,22 @@ uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileCount, ¶ms ); return params._ret; } -const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize(struct w_steam_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) +const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize(struct w_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetFileNameAndSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; @@ -3988,11 +3988,11 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota(struct w_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetQuota_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; @@ -4001,44 +4001,44 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForAccount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_IsCloudEnabledForApp, ¶ms ); return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp(struct w_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetCloudEnabledForApp, ¶ms ); } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload(struct w_steam_iface *_this, uint64_t hContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload(struct w_iface *_this, uint64_t hContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCDownload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, }; TRACE("%p\n", _this); @@ -4046,11 +4046,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress(struct w_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDownloadProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnBytesDownloaded = pnBytesDownloaded, .pnBytesExpected = pnBytesExpected, @@ -4060,11 +4060,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails(struct w_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnAppID = pnAppID, .ppchName = ppchName, @@ -4076,11 +4076,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead, uint32_t cOffset) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead(struct w_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead, uint32_t cOffset) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UGCRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -4091,22 +4091,22 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION00 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCCount, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle(struct w_steam_iface *_this, int32_t iCachedContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle(struct w_iface *_this, int32_t iCachedContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetCachedUGCHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); @@ -4114,11 +4114,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile(struct w_steam_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile(struct w_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishWorkshopFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pchPreviewFile = pchPreviewFile, .nConsumerAppId = nConsumerAppId, @@ -4137,11 +4137,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CreatePublishedFileUpdateRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -4149,11 +4149,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile(struct w_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchFile = pchFile, }; @@ -4163,11 +4163,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile(struct w_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFilePreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchPreviewFile = pchPreviewFile, }; @@ -4177,11 +4177,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle(struct w_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; @@ -4191,11 +4191,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; @@ -4205,11 +4205,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility(struct w_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; @@ -4218,11 +4218,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags(struct w_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -4231,11 +4231,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate(struct w_iface *_this, uint64_t updateHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_CommitPublishedFileUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); @@ -4243,11 +4243,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedFileDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -4255,11 +4255,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_DeletePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -4267,11 +4267,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserPublishedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -4279,11 +4279,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -4291,11 +4291,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSubscribedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -4303,11 +4303,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UnsubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -4315,11 +4315,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdatePublishedFileSetChangeDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; @@ -4329,11 +4329,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -4341,11 +4341,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote(struct w_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_UpdateUserPublishedItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; @@ -4354,11 +4354,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_GetUserPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -4366,11 +4366,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles(struct w_steam_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles(struct w_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumerateUserSharedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamId = steamId, .unStartIndex = unStartIndex, .pRequiredTags = pRequiredTags, @@ -4381,11 +4381,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo(struct w_steam_iface *_this, uint32_t eVideoProvider, const char *pchVideoAccount, const char *pchVideoIdentifier, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo(struct w_iface *_this, uint32_t eVideoProvider, const char *pchVideoAccount, const char *pchVideoIdentifier, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_PublishVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eVideoProvider = eVideoProvider, .pchVideoAccount = pchVideoAccount, .pchVideoIdentifier = pchVideoIdentifier, @@ -4406,11 +4406,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction(struct w_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_SetUserPublishedFileAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; @@ -4419,11 +4419,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction(struct w_iface *_this, uint32_t eAction, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedFilesByUserAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; @@ -4432,11 +4432,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles(struct w_steam_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles(struct w_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_EnumeratePublishedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eEnumerationType = eEnumerationType, .unStartIndex = unStartIndex, .unCount = unCount, @@ -4509,9 +4509,9 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009 ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009(void *u_iface) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION009"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION009"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION009_vtable, 51, "STEAMREMOTESTORAGE_INTERFACE_VERSION009"); r->u_iface = u_iface; @@ -4571,11 +4571,11 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles, 28) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation, 20) -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite(struct w_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWrite_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubData = cubData, @@ -4586,11 +4586,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead(struct w_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -4601,11 +4601,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileForget_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -4614,11 +4614,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileDelete_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -4627,11 +4627,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileShare_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -4640,11 +4640,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms(struct w_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; @@ -4654,11 +4654,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamOpen_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -4667,11 +4667,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk(struct w_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamWriteChunk_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, .pvData = pvData, .cubData = cubData, @@ -4681,11 +4681,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose(struct w_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamClose_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); @@ -4693,11 +4693,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel(struct w_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileWriteStreamCancel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); @@ -4705,11 +4705,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FileExists_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -4718,11 +4718,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_FilePersisted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -4731,11 +4731,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize(struct w_steam_iface *_this, const char *pchFile) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -4744,11 +4744,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) +int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -4757,11 +4757,11 @@ int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) +uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -4770,22 +4770,22 @@ uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileCount, ¶ms ); return params._ret; } -const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize(struct w_steam_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) +const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize(struct w_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetFileNameAndSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; @@ -4794,11 +4794,11 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota(struct w_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetQuota_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; @@ -4807,44 +4807,44 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForAccount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_IsCloudEnabledForApp, ¶ms ); return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp(struct w_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetCloudEnabledForApp, ¶ms ); } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload(struct w_steam_iface *_this, uint64_t hContent, uint32_t unPriority) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload(struct w_iface *_this, uint64_t hContent, uint32_t unPriority) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .unPriority = unPriority, }; @@ -4853,11 +4853,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress(struct w_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDownloadProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnBytesDownloaded = pnBytesDownloaded, .pnBytesExpected = pnBytesExpected, @@ -4867,11 +4867,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails(struct w_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnAppID = pnAppID, .ppchName = ppchName, @@ -4883,11 +4883,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead, uint32_t cOffset) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead(struct w_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead, uint32_t cOffset) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -4898,22 +4898,22 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCCount, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle(struct w_steam_iface *_this, int32_t iCachedContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle(struct w_iface *_this, int32_t iCachedContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetCachedUGCHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); @@ -4921,11 +4921,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile(struct w_steam_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile(struct w_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishWorkshopFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pchPreviewFile = pchPreviewFile, .nConsumerAppId = nConsumerAppId, @@ -4944,11 +4944,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CreatePublishedFileUpdateRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -4956,11 +4956,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile(struct w_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchFile = pchFile, }; @@ -4970,11 +4970,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile(struct w_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFilePreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchPreviewFile = pchPreviewFile, }; @@ -4984,11 +4984,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle(struct w_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; @@ -4998,11 +4998,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; @@ -5012,11 +5012,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility(struct w_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; @@ -5025,11 +5025,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags(struct w_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -5038,11 +5038,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate(struct w_iface *_this, uint64_t updateHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_CommitPublishedFileUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); @@ -5050,11 +5050,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedFileDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -5062,11 +5062,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_DeletePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -5074,11 +5074,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserPublishedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -5086,11 +5086,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -5098,11 +5098,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSubscribedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -5110,11 +5110,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UnsubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -5122,11 +5122,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdatePublishedFileSetChangeDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; @@ -5136,11 +5136,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -5148,11 +5148,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote(struct w_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UpdateUserPublishedItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; @@ -5161,11 +5161,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_GetUserPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -5173,11 +5173,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles(struct w_steam_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles(struct w_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumerateUserSharedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamId = steamId, .unStartIndex = unStartIndex, .pRequiredTags = pRequiredTags, @@ -5188,11 +5188,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo(struct w_steam_iface *_this, uint32_t eVideoProvider, const char *pchVideoAccount, const char *pchVideoIdentifier, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo(struct w_iface *_this, uint32_t eVideoProvider, const char *pchVideoAccount, const char *pchVideoIdentifier, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_PublishVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eVideoProvider = eVideoProvider, .pchVideoAccount = pchVideoAccount, .pchVideoIdentifier = pchVideoIdentifier, @@ -5213,11 +5213,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction(struct w_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_SetUserPublishedFileAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; @@ -5226,11 +5226,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction(struct w_iface *_this, uint32_t eAction, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedFilesByUserAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; @@ -5239,11 +5239,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles(struct w_steam_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles(struct w_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_EnumeratePublishedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eEnumerationType = eEnumerationType, .unStartIndex = unStartIndex, .unCount = unCount, @@ -5256,11 +5256,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation(struct w_steam_iface *_this, uint64_t hContent, const char *pchLocation, uint32_t unPriority) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation(struct w_iface *_this, uint64_t hContent, const char *pchLocation, uint32_t unPriority) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_UGCDownloadToLocation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pchLocation = pchLocation, .unPriority = unPriority, @@ -5332,9 +5332,9 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010 ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010(void *u_iface) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION010"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION010"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION010_vtable, 52, "STEAMREMOTESTORAGE_INTERFACE_VERSION010"); r->u_iface = u_iface; @@ -5394,11 +5394,11 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles, 28) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation, 20) -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite(struct w_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWrite_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubData = cubData, @@ -5409,11 +5409,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead(struct w_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -5424,11 +5424,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileForget_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -5437,11 +5437,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileDelete_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -5450,11 +5450,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileShare_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -5463,11 +5463,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms(struct w_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; @@ -5477,11 +5477,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamOpen_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -5490,11 +5490,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk(struct w_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamWriteChunk_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, .pvData = pvData, .cubData = cubData, @@ -5504,11 +5504,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose(struct w_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamClose_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); @@ -5516,11 +5516,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel(struct w_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileWriteStreamCancel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); @@ -5528,11 +5528,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FileExists_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -5541,11 +5541,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_FilePersisted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -5554,11 +5554,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize(struct w_steam_iface *_this, const char *pchFile) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -5567,11 +5567,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) +int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -5580,11 +5580,11 @@ int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) +uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -5593,22 +5593,22 @@ uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileCount, ¶ms ); return params._ret; } -const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize(struct w_steam_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) +const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize(struct w_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetFileNameAndSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; @@ -5617,11 +5617,11 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota(struct w_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetQuota_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; @@ -5630,44 +5630,44 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForAccount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_IsCloudEnabledForApp, ¶ms ); return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp(struct w_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetCloudEnabledForApp, ¶ms ); } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload(struct w_steam_iface *_this, uint64_t hContent, uint32_t unPriority) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload(struct w_iface *_this, uint64_t hContent, uint32_t unPriority) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .unPriority = unPriority, }; @@ -5676,11 +5676,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress(struct w_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDownloadProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnBytesDownloaded = pnBytesDownloaded, .pnBytesExpected = pnBytesExpected, @@ -5690,11 +5690,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails(struct w_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnAppID = pnAppID, .ppchName = ppchName, @@ -5706,11 +5706,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead, uint32_t cOffset) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead(struct w_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead, uint32_t cOffset) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -5721,22 +5721,22 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCCount, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle(struct w_steam_iface *_this, int32_t iCachedContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle(struct w_iface *_this, int32_t iCachedContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetCachedUGCHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); @@ -5744,11 +5744,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile(struct w_steam_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile(struct w_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishWorkshopFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pchPreviewFile = pchPreviewFile, .nConsumerAppId = nConsumerAppId, @@ -5767,11 +5767,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CreatePublishedFileUpdateRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -5779,11 +5779,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile(struct w_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchFile = pchFile, }; @@ -5793,11 +5793,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile(struct w_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFilePreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchPreviewFile = pchPreviewFile, }; @@ -5807,11 +5807,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle(struct w_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; @@ -5821,11 +5821,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; @@ -5835,11 +5835,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility(struct w_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; @@ -5848,11 +5848,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags(struct w_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -5861,11 +5861,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate(struct w_iface *_this, uint64_t updateHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_CommitPublishedFileUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); @@ -5873,11 +5873,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t unMaxSecondsOld) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails(struct w_iface *_this, uint64_t unPublishedFileId, uint32_t unMaxSecondsOld) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedFileDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .unMaxSecondsOld = unMaxSecondsOld, }; @@ -5886,11 +5886,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_DeletePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -5898,11 +5898,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserPublishedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -5910,11 +5910,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -5922,11 +5922,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSubscribedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -5934,11 +5934,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UnsubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -5946,11 +5946,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdatePublishedFileSetChangeDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; @@ -5960,11 +5960,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -5972,11 +5972,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote(struct w_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UpdateUserPublishedItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; @@ -5985,11 +5985,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_GetUserPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -5997,11 +5997,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles(struct w_steam_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles(struct w_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumerateUserSharedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamId = steamId, .unStartIndex = unStartIndex, .pRequiredTags = pRequiredTags, @@ -6012,11 +6012,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo(struct w_steam_iface *_this, uint32_t eVideoProvider, const char *pchVideoAccount, const char *pchVideoIdentifier, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo(struct w_iface *_this, uint32_t eVideoProvider, const char *pchVideoAccount, const char *pchVideoIdentifier, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_PublishVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eVideoProvider = eVideoProvider, .pchVideoAccount = pchVideoAccount, .pchVideoIdentifier = pchVideoIdentifier, @@ -6037,11 +6037,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction(struct w_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_SetUserPublishedFileAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; @@ -6050,11 +6050,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction(struct w_iface *_this, uint32_t eAction, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedFilesByUserAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; @@ -6063,11 +6063,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles(struct w_steam_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles(struct w_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_EnumeratePublishedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eEnumerationType = eEnumerationType, .unStartIndex = unStartIndex, .unCount = unCount, @@ -6080,11 +6080,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation(struct w_steam_iface *_this, uint64_t hContent, const char *pchLocation, uint32_t unPriority) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation(struct w_iface *_this, uint64_t hContent, const char *pchLocation, uint32_t unPriority) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_UGCDownloadToLocation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pchLocation = pchLocation, .unPriority = unPriority, @@ -6156,9 +6156,9 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011 ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011(void *u_iface) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION011"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION011"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION011_vtable, 52, "STEAMREMOTESTORAGE_INTERFACE_VERSION011"); r->u_iface = u_iface; @@ -6218,11 +6218,11 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles, 28) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation, 20) -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite(struct w_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWrite_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubData = cubData, @@ -6233,11 +6233,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead(struct w_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -6248,11 +6248,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileForget_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -6261,11 +6261,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileDelete_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -6274,11 +6274,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileShare_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -6287,11 +6287,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms(struct w_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; @@ -6301,11 +6301,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamOpen_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -6314,11 +6314,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk(struct w_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamWriteChunk_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, .pvData = pvData, .cubData = cubData, @@ -6328,11 +6328,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose(struct w_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamClose_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); @@ -6340,11 +6340,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel(struct w_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileWriteStreamCancel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); @@ -6352,11 +6352,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FileExists_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -6365,11 +6365,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_FilePersisted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -6378,11 +6378,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize(struct w_steam_iface *_this, const char *pchFile) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -6391,11 +6391,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) +int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -6404,11 +6404,11 @@ int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) +uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -6417,22 +6417,22 @@ uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileCount, ¶ms ); return params._ret; } -const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize(struct w_steam_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) +const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize(struct w_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetFileNameAndSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; @@ -6441,11 +6441,11 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota(struct w_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetQuota_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; @@ -6454,44 +6454,44 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForAccount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_IsCloudEnabledForApp, ¶ms ); return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp(struct w_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetCloudEnabledForApp, ¶ms ); } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload(struct w_steam_iface *_this, uint64_t hContent, uint32_t unPriority) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload(struct w_iface *_this, uint64_t hContent, uint32_t unPriority) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .unPriority = unPriority, }; @@ -6500,11 +6500,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress(struct w_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDownloadProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnBytesDownloaded = pnBytesDownloaded, .pnBytesExpected = pnBytesExpected, @@ -6514,11 +6514,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails(struct w_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnAppID = pnAppID, .ppchName = ppchName, @@ -6530,11 +6530,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead, uint32_t cOffset, uint32_t eAction) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead(struct w_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead, uint32_t cOffset, uint32_t eAction) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -6546,22 +6546,22 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCCount, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle(struct w_steam_iface *_this, int32_t iCachedContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle(struct w_iface *_this, int32_t iCachedContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetCachedUGCHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); @@ -6569,11 +6569,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile(struct w_steam_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile(struct w_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishWorkshopFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pchPreviewFile = pchPreviewFile, .nConsumerAppId = nConsumerAppId, @@ -6592,11 +6592,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CreatePublishedFileUpdateRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -6604,11 +6604,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile(struct w_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchFile = pchFile, }; @@ -6618,11 +6618,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile(struct w_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFilePreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchPreviewFile = pchPreviewFile, }; @@ -6632,11 +6632,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle(struct w_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; @@ -6646,11 +6646,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; @@ -6660,11 +6660,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility(struct w_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; @@ -6673,11 +6673,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags(struct w_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -6686,11 +6686,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate(struct w_iface *_this, uint64_t updateHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_CommitPublishedFileUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); @@ -6698,11 +6698,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t unMaxSecondsOld) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails(struct w_iface *_this, uint64_t unPublishedFileId, uint32_t unMaxSecondsOld) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedFileDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .unMaxSecondsOld = unMaxSecondsOld, }; @@ -6711,11 +6711,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_DeletePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -6723,11 +6723,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserPublishedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -6735,11 +6735,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -6747,11 +6747,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSubscribedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -6759,11 +6759,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UnsubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -6771,11 +6771,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdatePublishedFileSetChangeDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; @@ -6785,11 +6785,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -6797,11 +6797,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote(struct w_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UpdateUserPublishedItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; @@ -6810,11 +6810,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_GetUserPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -6822,11 +6822,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles(struct w_steam_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles(struct w_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumerateUserSharedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamId = steamId, .unStartIndex = unStartIndex, .pRequiredTags = pRequiredTags, @@ -6837,11 +6837,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo(struct w_steam_iface *_this, uint32_t eVideoProvider, const char *pchVideoAccount, const char *pchVideoIdentifier, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo(struct w_iface *_this, uint32_t eVideoProvider, const char *pchVideoAccount, const char *pchVideoIdentifier, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_PublishVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eVideoProvider = eVideoProvider, .pchVideoAccount = pchVideoAccount, .pchVideoIdentifier = pchVideoIdentifier, @@ -6862,11 +6862,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction(struct w_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_SetUserPublishedFileAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; @@ -6875,11 +6875,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction(struct w_iface *_this, uint32_t eAction, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedFilesByUserAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; @@ -6888,11 +6888,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles(struct w_steam_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles(struct w_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_EnumeratePublishedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eEnumerationType = eEnumerationType, .unStartIndex = unStartIndex, .unCount = unCount, @@ -6905,11 +6905,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation(struct w_steam_iface *_this, uint64_t hContent, const char *pchLocation, uint32_t unPriority) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation(struct w_iface *_this, uint64_t hContent, const char *pchLocation, uint32_t unPriority) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_UGCDownloadToLocation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pchLocation = pchLocation, .unPriority = unPriority, @@ -6981,9 +6981,9 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012 ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012(void *u_iface) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION012"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION012"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION012_vtable, 52, "STEAMREMOTESTORAGE_INTERFACE_VERSION012"); r->u_iface = u_iface; @@ -7046,11 +7046,11 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles, 28) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation, 20) -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite(struct w_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWrite_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubData = cubData, @@ -7061,11 +7061,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead(struct w_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -7076,11 +7076,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync(struct w_steam_iface *_this, const char *pchFile, const void *pvData, uint32_t cubData) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync(struct w_iface *_this, const char *pchFile, const void *pvData, uint32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteAsync_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubData = cubData, @@ -7091,11 +7091,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync(struct w_steam_iface *_this, const char *pchFile, uint32_t nOffset, uint32_t cubToRead) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync(struct w_iface *_this, const char *pchFile, uint32_t nOffset, uint32_t cubToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsync_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .nOffset = nOffset, .cubToRead = cubToRead, @@ -7106,11 +7106,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete(struct w_steam_iface *_this, uint64_t hReadCall, void *pvBuffer, uint32_t cubToRead) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete(struct w_iface *_this, uint64_t hReadCall, void *pvBuffer, uint32_t cubToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileReadAsyncComplete_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hReadCall = hReadCall, .pvBuffer = pvBuffer, .cubToRead = cubToRead, @@ -7120,11 +7120,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileForget_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -7133,11 +7133,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileDelete_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -7146,11 +7146,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileShare_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -7159,11 +7159,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms(struct w_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; @@ -7173,11 +7173,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamOpen_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -7186,11 +7186,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk(struct w_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamWriteChunk_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, .pvData = pvData, .cubData = cubData, @@ -7200,11 +7200,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose(struct w_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamClose_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); @@ -7212,11 +7212,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel(struct w_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileWriteStreamCancel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); @@ -7224,11 +7224,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FileExists_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -7237,11 +7237,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_FilePersisted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -7250,11 +7250,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize(struct w_steam_iface *_this, const char *pchFile) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -7263,11 +7263,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) +int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -7276,11 +7276,11 @@ int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) +uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -7289,22 +7289,22 @@ uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileCount, ¶ms ); return params._ret; } -const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize(struct w_steam_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) +const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize(struct w_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetFileNameAndSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; @@ -7313,11 +7313,11 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota(struct w_steam_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota(struct w_iface *_this, int32_t *pnTotalBytes, int32_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetQuota_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; @@ -7326,44 +7326,44 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForAccount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_IsCloudEnabledForApp, ¶ms ); return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp(struct w_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetCloudEnabledForApp, ¶ms ); } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload(struct w_steam_iface *_this, uint64_t hContent, uint32_t unPriority) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload(struct w_iface *_this, uint64_t hContent, uint32_t unPriority) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .unPriority = unPriority, }; @@ -7372,11 +7372,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress(struct w_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDownloadProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnBytesDownloaded = pnBytesDownloaded, .pnBytesExpected = pnBytesExpected, @@ -7386,11 +7386,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails(struct w_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnAppID = pnAppID, .ppchName = ppchName, @@ -7402,11 +7402,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead, uint32_t cOffset, uint32_t eAction) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead(struct w_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead, uint32_t cOffset, uint32_t eAction) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -7418,22 +7418,22 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCCount, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle(struct w_steam_iface *_this, int32_t iCachedContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle(struct w_iface *_this, int32_t iCachedContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetCachedUGCHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); @@ -7441,11 +7441,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile(struct w_steam_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile(struct w_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishWorkshopFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pchPreviewFile = pchPreviewFile, .nConsumerAppId = nConsumerAppId, @@ -7464,11 +7464,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CreatePublishedFileUpdateRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -7476,11 +7476,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile(struct w_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchFile = pchFile, }; @@ -7490,11 +7490,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile(struct w_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFilePreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchPreviewFile = pchPreviewFile, }; @@ -7504,11 +7504,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle(struct w_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; @@ -7518,11 +7518,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; @@ -7532,11 +7532,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility(struct w_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; @@ -7545,11 +7545,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags(struct w_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -7558,11 +7558,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate(struct w_iface *_this, uint64_t updateHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_CommitPublishedFileUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); @@ -7570,11 +7570,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t unMaxSecondsOld) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails(struct w_iface *_this, uint64_t unPublishedFileId, uint32_t unMaxSecondsOld) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedFileDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .unMaxSecondsOld = unMaxSecondsOld, }; @@ -7583,11 +7583,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_DeletePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -7595,11 +7595,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserPublishedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -7607,11 +7607,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -7619,11 +7619,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSubscribedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -7631,11 +7631,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UnsubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -7643,11 +7643,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdatePublishedFileSetChangeDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; @@ -7657,11 +7657,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -7669,11 +7669,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote(struct w_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UpdateUserPublishedItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; @@ -7682,11 +7682,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_GetUserPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -7694,11 +7694,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles(struct w_steam_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles(struct w_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumerateUserSharedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamId = steamId, .unStartIndex = unStartIndex, .pRequiredTags = pRequiredTags, @@ -7709,11 +7709,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo(struct w_steam_iface *_this, uint32_t eVideoProvider, const char *pchVideoAccount, const char *pchVideoIdentifier, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo(struct w_iface *_this, uint32_t eVideoProvider, const char *pchVideoAccount, const char *pchVideoIdentifier, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_PublishVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eVideoProvider = eVideoProvider, .pchVideoAccount = pchVideoAccount, .pchVideoIdentifier = pchVideoIdentifier, @@ -7734,11 +7734,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction(struct w_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_SetUserPublishedFileAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; @@ -7747,11 +7747,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction(struct w_iface *_this, uint32_t eAction, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedFilesByUserAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; @@ -7760,11 +7760,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles(struct w_steam_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles(struct w_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_EnumeratePublishedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eEnumerationType = eEnumerationType, .unStartIndex = unStartIndex, .unCount = unCount, @@ -7777,11 +7777,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation(struct w_steam_iface *_this, uint64_t hContent, const char *pchLocation, uint32_t unPriority) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation(struct w_iface *_this, uint64_t hContent, const char *pchLocation, uint32_t unPriority) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_UGCDownloadToLocation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pchLocation = pchLocation, .unPriority = unPriority, @@ -7856,9 +7856,9 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013 ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013(void *u_iface) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION013"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION013"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION013_vtable, 55, "STEAMREMOTESTORAGE_INTERFACE_VERSION013"); r->u_iface = u_iface; @@ -7921,11 +7921,11 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles, 28) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation, 20) -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite(struct w_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWrite_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubData = cubData, @@ -7936,11 +7936,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead(struct w_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -7951,11 +7951,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync(struct w_steam_iface *_this, const char *pchFile, const void *pvData, uint32_t cubData) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync(struct w_iface *_this, const char *pchFile, const void *pvData, uint32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteAsync_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubData = cubData, @@ -7966,11 +7966,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync(struct w_steam_iface *_this, const char *pchFile, uint32_t nOffset, uint32_t cubToRead) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync(struct w_iface *_this, const char *pchFile, uint32_t nOffset, uint32_t cubToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsync_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .nOffset = nOffset, .cubToRead = cubToRead, @@ -7981,11 +7981,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete(struct w_steam_iface *_this, uint64_t hReadCall, void *pvBuffer, uint32_t cubToRead) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete(struct w_iface *_this, uint64_t hReadCall, void *pvBuffer, uint32_t cubToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileReadAsyncComplete_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hReadCall = hReadCall, .pvBuffer = pvBuffer, .cubToRead = cubToRead, @@ -7995,11 +7995,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileForget_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -8008,11 +8008,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileDelete_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -8021,11 +8021,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileShare_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -8034,11 +8034,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms(struct w_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; @@ -8048,11 +8048,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamOpen_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -8061,11 +8061,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk(struct w_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamWriteChunk_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, .pvData = pvData, .cubData = cubData, @@ -8075,11 +8075,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose(struct w_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamClose_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); @@ -8087,11 +8087,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel(struct w_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileWriteStreamCancel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); @@ -8099,11 +8099,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FileExists_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -8112,11 +8112,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_FilePersisted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -8125,11 +8125,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize(struct w_steam_iface *_this, const char *pchFile) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -8138,11 +8138,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) +int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -8151,11 +8151,11 @@ int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) +uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -8164,22 +8164,22 @@ uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileCount, ¶ms ); return params._ret; } -const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize(struct w_steam_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) +const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize(struct w_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetFileNameAndSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; @@ -8188,11 +8188,11 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota(struct w_steam_iface *_this, uint64_t *pnTotalBytes, uint64_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota(struct w_iface *_this, uint64_t *pnTotalBytes, uint64_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetQuota_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; @@ -8201,44 +8201,44 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForAccount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_IsCloudEnabledForApp, ¶ms ); return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp(struct w_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetCloudEnabledForApp, ¶ms ); } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload(struct w_steam_iface *_this, uint64_t hContent, uint32_t unPriority) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload(struct w_iface *_this, uint64_t hContent, uint32_t unPriority) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .unPriority = unPriority, }; @@ -8247,11 +8247,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress(struct w_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDownloadProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnBytesDownloaded = pnBytesDownloaded, .pnBytesExpected = pnBytesExpected, @@ -8261,11 +8261,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails(struct w_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnAppID = pnAppID, .ppchName = ppchName, @@ -8277,11 +8277,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead, uint32_t cOffset, uint32_t eAction) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead(struct w_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead, uint32_t cOffset, uint32_t eAction) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -8293,22 +8293,22 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCCount, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle(struct w_steam_iface *_this, int32_t iCachedContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle(struct w_iface *_this, int32_t iCachedContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetCachedUGCHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); @@ -8316,11 +8316,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile(struct w_steam_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile(struct w_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishWorkshopFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pchPreviewFile = pchPreviewFile, .nConsumerAppId = nConsumerAppId, @@ -8339,11 +8339,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CreatePublishedFileUpdateRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -8351,11 +8351,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile(struct w_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchFile = pchFile, }; @@ -8365,11 +8365,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile(struct w_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFilePreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchPreviewFile = pchPreviewFile, }; @@ -8379,11 +8379,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle(struct w_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; @@ -8393,11 +8393,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; @@ -8407,11 +8407,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility(struct w_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; @@ -8420,11 +8420,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags(struct w_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -8433,11 +8433,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate(struct w_iface *_this, uint64_t updateHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_CommitPublishedFileUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); @@ -8445,11 +8445,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t unMaxSecondsOld) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails(struct w_iface *_this, uint64_t unPublishedFileId, uint32_t unMaxSecondsOld) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedFileDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .unMaxSecondsOld = unMaxSecondsOld, }; @@ -8458,11 +8458,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_DeletePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -8470,11 +8470,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserPublishedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -8482,11 +8482,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -8494,11 +8494,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSubscribedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -8506,11 +8506,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UnsubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -8518,11 +8518,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdatePublishedFileSetChangeDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; @@ -8532,11 +8532,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -8544,11 +8544,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote(struct w_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UpdateUserPublishedItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; @@ -8557,11 +8557,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_GetUserPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -8569,11 +8569,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles(struct w_steam_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles(struct w_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumerateUserSharedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamId = steamId, .unStartIndex = unStartIndex, .pRequiredTags = pRequiredTags, @@ -8584,11 +8584,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo(struct w_steam_iface *_this, uint32_t eVideoProvider, const char *pchVideoAccount, const char *pchVideoIdentifier, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo(struct w_iface *_this, uint32_t eVideoProvider, const char *pchVideoAccount, const char *pchVideoIdentifier, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_PublishVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eVideoProvider = eVideoProvider, .pchVideoAccount = pchVideoAccount, .pchVideoIdentifier = pchVideoIdentifier, @@ -8609,11 +8609,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction(struct w_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_SetUserPublishedFileAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; @@ -8622,11 +8622,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction(struct w_iface *_this, uint32_t eAction, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedFilesByUserAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; @@ -8635,11 +8635,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles(struct w_steam_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles(struct w_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_EnumeratePublishedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eEnumerationType = eEnumerationType, .unStartIndex = unStartIndex, .unCount = unCount, @@ -8652,11 +8652,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation(struct w_steam_iface *_this, uint64_t hContent, const char *pchLocation, uint32_t unPriority) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation(struct w_iface *_this, uint64_t hContent, const char *pchLocation, uint32_t unPriority) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_UGCDownloadToLocation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pchLocation = pchLocation, .unPriority = unPriority, @@ -8731,9 +8731,9 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014 ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014(void *u_iface) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION014"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION014"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION014_vtable, 55, "STEAMREMOTESTORAGE_INTERFACE_VERSION014"); r->u_iface = u_iface; @@ -8800,11 +8800,11 @@ DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch, 4) DEFINE_THISCALL_WRAPPER(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch, 4) -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite(struct w_steam_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite(struct w_iface *_this, const char *pchFile, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWrite_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubData = cubData, @@ -8815,11 +8815,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead(struct w_steam_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead(struct w_iface *_this, const char *pchFile, void *pvData, int32_t cubDataToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -8830,11 +8830,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync(struct w_steam_iface *_this, const char *pchFile, const void *pvData, uint32_t cubData) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync(struct w_iface *_this, const char *pchFile, const void *pvData, uint32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteAsync_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pvData = pvData, .cubData = cubData, @@ -8845,11 +8845,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync(struct w_steam_iface *_this, const char *pchFile, uint32_t nOffset, uint32_t cubToRead) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync(struct w_iface *_this, const char *pchFile, uint32_t nOffset, uint32_t cubToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsync_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .nOffset = nOffset, .cubToRead = cubToRead, @@ -8860,11 +8860,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete(struct w_steam_iface *_this, uint64_t hReadCall, void *pvBuffer, uint32_t cubToRead) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete(struct w_iface *_this, uint64_t hReadCall, void *pvBuffer, uint32_t cubToRead) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileReadAsyncComplete_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hReadCall = hReadCall, .pvBuffer = pvBuffer, .cubToRead = cubToRead, @@ -8874,11 +8874,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileForget_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -8887,11 +8887,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileDelete_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -8900,11 +8900,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileShare_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -8913,11 +8913,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms(struct w_iface *_this, const char *pchFile, uint32_t eRemoteStoragePlatform) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .eRemoteStoragePlatform = eRemoteStoragePlatform, }; @@ -8927,11 +8927,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen(struct w_steam_iface *_this, const char *pchFile) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamOpen_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -8940,11 +8940,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk(struct w_steam_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk(struct w_iface *_this, uint64_t writeHandle, const void *pvData, int32_t cubData) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamWriteChunk_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, .pvData = pvData, .cubData = cubData, @@ -8954,11 +8954,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose(struct w_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamClose_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); @@ -8966,11 +8966,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel(struct w_steam_iface *_this, uint64_t writeHandle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel(struct w_iface *_this, uint64_t writeHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileWriteStreamCancel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .writeHandle = writeHandle, }; TRACE("%p\n", _this); @@ -8978,11 +8978,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FileExists_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -8991,11 +8991,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted(struct w_steam_iface *_this, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_FilePersisted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -9004,11 +9004,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize(struct w_steam_iface *_this, const char *pchFile) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -9017,11 +9017,11 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp(struct w_steam_iface *_this, const char *pchFile) +int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileTimestamp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -9030,11 +9030,11 @@ int64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms(struct w_steam_iface *_this, const char *pchFile) +uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms(struct w_iface *_this, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetSyncPlatforms_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, }; TRACE("%p\n", _this); @@ -9043,22 +9043,22 @@ uint32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileCount, ¶ms ); return params._ret; } -const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize(struct w_steam_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) +const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize(struct w_iface *_this, int32_t iFile, int32_t *pnFileSizeInBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetFileNameAndSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFile = iFile, .pnFileSizeInBytes = pnFileSizeInBytes, }; @@ -9067,11 +9067,11 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota(struct w_steam_iface *_this, uint64_t *pnTotalBytes, uint64_t *puAvailableBytes) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota(struct w_iface *_this, uint64_t *pnTotalBytes, uint64_t *puAvailableBytes) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetQuota_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnTotalBytes = pnTotalBytes, .puAvailableBytes = puAvailableBytes, }; @@ -9080,44 +9080,44 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForAccount, ¶ms ); return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_IsCloudEnabledForApp, ¶ms ); return params._ret; } -void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp(struct w_steam_iface *_this, int8_t bEnabled) +void __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp(struct w_iface *_this, int8_t bEnabled) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetCloudEnabledForApp, ¶ms ); } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload(struct w_steam_iface *_this, uint64_t hContent, uint32_t unPriority) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload(struct w_iface *_this, uint64_t hContent, uint32_t unPriority) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .unPriority = unPriority, }; @@ -9126,11 +9126,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress(struct w_steam_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress(struct w_iface *_this, uint64_t hContent, int32_t *pnBytesDownloaded, int32_t *pnBytesExpected) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDownloadProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnBytesDownloaded = pnBytesDownloaded, .pnBytesExpected = pnBytesExpected, @@ -9140,11 +9140,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails(struct w_steam_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails(struct w_iface *_this, uint64_t hContent, uint32_t *pnAppID, char **ppchName, int32_t *pnFileSizeInBytes, CSteamID *pSteamIDOwner) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pnAppID = pnAppID, .ppchName = ppchName, @@ -9156,11 +9156,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead(struct w_steam_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead, uint32_t cOffset, uint32_t eAction) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead(struct w_iface *_this, uint64_t hContent, void *pvData, int32_t cubDataToRead, uint32_t cOffset, uint32_t eAction) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCRead_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pvData = pvData, .cubDataToRead = cubDataToRead, @@ -9172,22 +9172,22 @@ int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION01 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCCount, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle(struct w_steam_iface *_this, int32_t iCachedContent) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle(struct w_iface *_this, int32_t iCachedContent) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetCachedUGCHandle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iCachedContent = iCachedContent, }; TRACE("%p\n", _this); @@ -9195,11 +9195,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile(struct w_steam_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile(struct w_iface *_this, const char *pchFile, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags, uint32_t eWorkshopFileType) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishWorkshopFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFile = pchFile, .pchPreviewFile = pchPreviewFile, .nConsumerAppId = nConsumerAppId, @@ -9218,11 +9218,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CreatePublishedFileUpdateRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -9230,11 +9230,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile(struct w_iface *_this, uint64_t updateHandle, const char *pchFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchFile = pchFile, }; @@ -9244,11 +9244,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile(struct w_iface *_this, uint64_t updateHandle, const char *pchPreviewFile) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFilePreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchPreviewFile = pchPreviewFile, }; @@ -9258,11 +9258,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchTitle) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle(struct w_iface *_this, uint64_t updateHandle, const char *pchTitle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchTitle = pchTitle, }; @@ -9272,11 +9272,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchDescription = pchDescription, }; @@ -9286,11 +9286,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility(struct w_steam_iface *_this, uint64_t updateHandle, uint32_t eVisibility) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility(struct w_iface *_this, uint64_t updateHandle, uint32_t eVisibility) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .eVisibility = eVisibility, }; @@ -9299,11 +9299,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags(struct w_steam_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags(struct w_iface *_this, uint64_t updateHandle, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -9312,11 +9312,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate(struct w_steam_iface *_this, uint64_t updateHandle) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate(struct w_iface *_this, uint64_t updateHandle) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_CommitPublishedFileUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, }; TRACE("%p\n", _this); @@ -9324,11 +9324,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t unMaxSecondsOld) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails(struct w_iface *_this, uint64_t unPublishedFileId, uint32_t unMaxSecondsOld) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedFileDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .unMaxSecondsOld = unMaxSecondsOld, }; @@ -9337,11 +9337,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_DeletePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -9349,11 +9349,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserPublishedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -9361,11 +9361,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -9373,11 +9373,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles(struct w_steam_iface *_this, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles(struct w_iface *_this, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSubscribedFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unStartIndex = unStartIndex, }; TRACE("%p\n", _this); @@ -9385,11 +9385,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UnsubscribePublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -9397,11 +9397,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription(struct w_steam_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription(struct w_iface *_this, uint64_t updateHandle, const char *pchChangeDescription) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdatePublishedFileSetChangeDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pchChangeDescription = pchChangeDescription, }; @@ -9411,11 +9411,11 @@ int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -9423,11 +9423,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote(struct w_steam_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote(struct w_iface *_this, uint64_t unPublishedFileId, int8_t bVoteUp) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UpdateUserPublishedItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .bVoteUp = bVoteUp, }; @@ -9436,11 +9436,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails(struct w_steam_iface *_this, uint64_t unPublishedFileId) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails(struct w_iface *_this, uint64_t unPublishedFileId) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetUserPublishedItemVoteDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, }; TRACE("%p\n", _this); @@ -9448,11 +9448,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles(struct w_steam_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles(struct w_iface *_this, CSteamID steamId, uint32_t unStartIndex, w_SteamParamStringArray_t *pRequiredTags, w_SteamParamStringArray_t *pExcludedTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumerateUserSharedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamId = steamId, .unStartIndex = unStartIndex, .pRequiredTags = pRequiredTags, @@ -9463,11 +9463,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo(struct w_steam_iface *_this, uint32_t eVideoProvider, const char *pchVideoAccount, const char *pchVideoIdentifier, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo(struct w_iface *_this, uint32_t eVideoProvider, const char *pchVideoAccount, const char *pchVideoIdentifier, const char *pchPreviewFile, uint32_t nConsumerAppId, const char *pchTitle, const char *pchDescription, uint32_t eVisibility, w_SteamParamStringArray_t *pTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_PublishVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eVideoProvider = eVideoProvider, .pchVideoAccount = pchVideoAccount, .pchVideoIdentifier = pchVideoIdentifier, @@ -9488,11 +9488,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction(struct w_steam_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction(struct w_iface *_this, uint64_t unPublishedFileId, uint32_t eAction) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_SetUserPublishedFileAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unPublishedFileId = unPublishedFileId, .eAction = eAction, }; @@ -9501,11 +9501,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction(struct w_steam_iface *_this, uint32_t eAction, uint32_t unStartIndex) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction(struct w_iface *_this, uint32_t eAction, uint32_t unStartIndex) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedFilesByUserAction_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eAction = eAction, .unStartIndex = unStartIndex, }; @@ -9514,11 +9514,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles(struct w_steam_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles(struct w_iface *_this, uint32_t eEnumerationType, uint32_t unStartIndex, uint32_t unCount, uint32_t unDays, w_SteamParamStringArray_t *pTags, w_SteamParamStringArray_t *pUserTags) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EnumeratePublishedWorkshopFiles_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eEnumerationType = eEnumerationType, .unStartIndex = unStartIndex, .unCount = unCount, @@ -9531,11 +9531,11 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation(struct w_steam_iface *_this, uint64_t hContent, const char *pchLocation, uint32_t unPriority) +uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation(struct w_iface *_this, uint64_t hContent, const char *pchLocation, uint32_t unPriority) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_UGCDownloadToLocation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hContent = hContent, .pchLocation = pchLocation, .unPriority = unPriority, @@ -9546,22 +9546,22 @@ uint64_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION0 return params._ret; } -int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount(struct w_steam_iface *_this) +int32_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChangeCount, ¶ms ); return params._ret; } -const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange(struct w_steam_iface *_this, int32_t iFile, uint32_t *pEChangeType, uint32_t *pEFilePathType) +const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange(struct w_iface *_this, int32_t iFile, uint32_t *pEChangeType, uint32_t *pEFilePathType) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_GetLocalFileChange_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iFile = iFile, .pEChangeType = pEChangeType, .pEFilePathType = pEFilePathType, @@ -9571,22 +9571,22 @@ const char * __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_BeginFileWriteBatch, ¶ms ); return params._ret; } -int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch(struct w_steam_iface *_this) +int8_t __thiscall winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch(struct w_iface *_this) { struct ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_EndFileWriteBatch, ¶ms ); @@ -9661,9 +9661,9 @@ __ASM_BLOCK_BEGIN(winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016 ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016(void *u_iface) +struct w_iface *create_winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION016"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMREMOTESTORAGE_INTERFACE_VERSION016"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamRemoteStorage_STEAMREMOTESTORAGE_INTERFACE_VERSION016_vtable, 59, "STEAMREMOTESTORAGE_INTERFACE_VERSION016"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamScreenshots.c b/lsteamclient/winISteamScreenshots.c index 5d3db4e7..61b78d07 100644 --- a/lsteamclient/winISteamScreenshots.c +++ b/lsteamclient/winISteamScreenshots.c @@ -10,11 +10,11 @@ DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION0 DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation, 12) DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser, 16) -uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot(struct w_steam_iface *_this, void *pubRGB, uint32_t cubRGB, int32_t nWidth, int32_t nHeight) +uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot(struct w_iface *_this, void *pubRGB, uint32_t cubRGB, int32_t nWidth, int32_t nHeight) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_WriteScreenshot_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pubRGB = pubRGB, .cubRGB = cubRGB, .nWidth = nWidth, @@ -25,11 +25,11 @@ uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_W return params._ret; } -uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary(struct w_steam_iface *_this, const char *pchFilename, const char *pchThumbnailFilename, int32_t nWidth, int32_t nHeight) +uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary(struct w_iface *_this, const char *pchFilename, const char *pchThumbnailFilename, int32_t nWidth, int32_t nHeight) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_AddScreenshotToLibrary_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFilename = pchFilename, .pchThumbnailFilename = pchThumbnailFilename, .nWidth = nWidth, @@ -42,32 +42,32 @@ uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_A return params._ret; } -void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot(struct w_steam_iface *_this) +void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot(struct w_iface *_this) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TriggerScreenshot, ¶ms ); } -void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots(struct w_steam_iface *_this, int8_t bHook) +void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots(struct w_iface *_this, int8_t bHook) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bHook = bHook, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_HookScreenshots, ¶ms ); } -int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation(struct w_steam_iface *_this, uint32_t hScreenshot, const char *pchLocation) +int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation(struct w_iface *_this, uint32_t hScreenshot, const char *pchLocation) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_SetLocation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hScreenshot = hScreenshot, .pchLocation = pchLocation, }; @@ -77,11 +77,11 @@ int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_Set return params._ret; } -int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser(struct w_steam_iface *_this, uint32_t hScreenshot, CSteamID steamID) +int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser(struct w_iface *_this, uint32_t hScreenshot, CSteamID steamID) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_TagUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hScreenshot = hScreenshot, .steamID = steamID, }; @@ -105,9 +105,9 @@ __ASM_BLOCK_BEGIN(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_vta ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001(void *u_iface) +struct w_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMSCREENSHOTS_INTERFACE_VERSION001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMSCREENSHOTS_INTERFACE_VERSION001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION001_vtable, 6, "STEAMSCREENSHOTS_INTERFACE_VERSION001"); r->u_iface = u_iface; @@ -122,11 +122,11 @@ DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION0 DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser, 16) DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile, 16) -uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot(struct w_steam_iface *_this, void *pubRGB, uint32_t cubRGB, int32_t nWidth, int32_t nHeight) +uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot(struct w_iface *_this, void *pubRGB, uint32_t cubRGB, int32_t nWidth, int32_t nHeight) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_WriteScreenshot_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pubRGB = pubRGB, .cubRGB = cubRGB, .nWidth = nWidth, @@ -137,11 +137,11 @@ uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_W return params._ret; } -uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary(struct w_steam_iface *_this, const char *pchFilename, const char *pchThumbnailFilename, int32_t nWidth, int32_t nHeight) +uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary(struct w_iface *_this, const char *pchFilename, const char *pchThumbnailFilename, int32_t nWidth, int32_t nHeight) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_AddScreenshotToLibrary_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFilename = pchFilename, .pchThumbnailFilename = pchThumbnailFilename, .nWidth = nWidth, @@ -154,32 +154,32 @@ uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_A return params._ret; } -void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot(struct w_steam_iface *_this) +void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot(struct w_iface *_this) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TriggerScreenshot, ¶ms ); } -void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots(struct w_steam_iface *_this, int8_t bHook) +void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots(struct w_iface *_this, int8_t bHook) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bHook = bHook, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_HookScreenshots, ¶ms ); } -int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation(struct w_steam_iface *_this, uint32_t hScreenshot, const char *pchLocation) +int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation(struct w_iface *_this, uint32_t hScreenshot, const char *pchLocation) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_SetLocation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hScreenshot = hScreenshot, .pchLocation = pchLocation, }; @@ -189,11 +189,11 @@ int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_Set return params._ret; } -int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser(struct w_steam_iface *_this, uint32_t hScreenshot, CSteamID steamID) +int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser(struct w_iface *_this, uint32_t hScreenshot, CSteamID steamID) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hScreenshot = hScreenshot, .steamID = steamID, }; @@ -202,11 +202,11 @@ int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_Tag return params._ret; } -int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile(struct w_steam_iface *_this, uint32_t hScreenshot, uint64_t unPublishedFileID) +int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile(struct w_iface *_this, uint32_t hScreenshot, uint64_t unPublishedFileID) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_TagPublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hScreenshot = hScreenshot, .unPublishedFileID = unPublishedFileID, }; @@ -231,9 +231,9 @@ __ASM_BLOCK_BEGIN(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_vta ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002(void *u_iface) +struct w_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMSCREENSHOTS_INTERFACE_VERSION002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMSCREENSHOTS_INTERFACE_VERSION002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION002_vtable, 7, "STEAMSCREENSHOTS_INTERFACE_VERSION002"); r->u_iface = u_iface; @@ -250,11 +250,11 @@ DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION0 DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked, 4) DEFINE_THISCALL_WRAPPER(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary, 16) -uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot(struct w_steam_iface *_this, void *pubRGB, uint32_t cubRGB, int32_t nWidth, int32_t nHeight) +uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot(struct w_iface *_this, void *pubRGB, uint32_t cubRGB, int32_t nWidth, int32_t nHeight) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_WriteScreenshot_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pubRGB = pubRGB, .cubRGB = cubRGB, .nWidth = nWidth, @@ -265,11 +265,11 @@ uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_W return params._ret; } -uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary(struct w_steam_iface *_this, const char *pchFilename, const char *pchThumbnailFilename, int32_t nWidth, int32_t nHeight) +uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary(struct w_iface *_this, const char *pchFilename, const char *pchThumbnailFilename, int32_t nWidth, int32_t nHeight) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddScreenshotToLibrary_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchFilename = pchFilename, .pchThumbnailFilename = pchThumbnailFilename, .nWidth = nWidth, @@ -282,32 +282,32 @@ uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_A return params._ret; } -void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot(struct w_steam_iface *_this) +void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot(struct w_iface *_this) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TriggerScreenshot, ¶ms ); } -void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots(struct w_steam_iface *_this, int8_t bHook) +void __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots(struct w_iface *_this, int8_t bHook) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bHook = bHook, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_HookScreenshots, ¶ms ); } -int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation(struct w_steam_iface *_this, uint32_t hScreenshot, const char *pchLocation) +int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation(struct w_iface *_this, uint32_t hScreenshot, const char *pchLocation) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_SetLocation_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hScreenshot = hScreenshot, .pchLocation = pchLocation, }; @@ -317,11 +317,11 @@ int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_Set return params._ret; } -int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser(struct w_steam_iface *_this, uint32_t hScreenshot, CSteamID steamID) +int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser(struct w_iface *_this, uint32_t hScreenshot, CSteamID steamID) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hScreenshot = hScreenshot, .steamID = steamID, }; @@ -330,11 +330,11 @@ int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_Tag return params._ret; } -int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile(struct w_steam_iface *_this, uint32_t hScreenshot, uint64_t unPublishedFileID) +int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile(struct w_iface *_this, uint32_t hScreenshot, uint64_t unPublishedFileID) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_TagPublishedFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hScreenshot = hScreenshot, .unPublishedFileID = unPublishedFileID, }; @@ -343,22 +343,22 @@ int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_Tag return params._ret; } -int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked(struct w_steam_iface *_this) +int8_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked(struct w_iface *_this) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_IsScreenshotsHooked, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary(struct w_steam_iface *_this, uint32_t eType, const char *pchFilename, const char *pchVRFilename) +uint32_t __thiscall winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary(struct w_iface *_this, uint32_t eType, const char *pchFilename, const char *pchVRFilename) { struct ISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_AddVRScreenshotToLibrary_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eType = eType, .pchFilename = pchFilename, .pchVRFilename = pchVRFilename, @@ -388,9 +388,9 @@ __ASM_BLOCK_BEGIN(winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_vta ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003(void *u_iface) +struct w_iface *create_winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMSCREENSHOTS_INTERFACE_VERSION003"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMSCREENSHOTS_INTERFACE_VERSION003"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamScreenshots_STEAMSCREENSHOTS_INTERFACE_VERSION003_vtable, 9, "STEAMSCREENSHOTS_INTERFACE_VERSION003"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamTimeline.c b/lsteamclient/winISteamTimeline.c index 248de346..208b9747 100644 --- a/lsteamclient/winISteamTimeline.c +++ b/lsteamclient/winISteamTimeline.c @@ -8,11 +8,11 @@ DEFINE_THISCALL_WRAPPER(winISteamTimeline_STEAMTIMELINE_INTERFACE_V001_ClearTime DEFINE_THISCALL_WRAPPER(winISteamTimeline_STEAMTIMELINE_INTERFACE_V001_AddTimelineEvent, 32) DEFINE_THISCALL_WRAPPER(winISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineGameMode, 8) -void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineStateDescription(struct w_steam_iface *_this, const char *pchDescription, float flTimeDelta) +void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineStateDescription(struct w_iface *_this, const char *pchDescription, float flTimeDelta) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineStateDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDescription = pchDescription, .flTimeDelta = flTimeDelta, }; @@ -21,22 +21,22 @@ void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineStateD STEAMCLIENT_CALL( ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineStateDescription, ¶ms ); } -void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V001_ClearTimelineStateDescription(struct w_steam_iface *_this, float flTimeDelta) +void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V001_ClearTimelineStateDescription(struct w_iface *_this, float flTimeDelta) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_ClearTimelineStateDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .flTimeDelta = flTimeDelta, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_ClearTimelineStateDescription, ¶ms ); } -void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V001_AddTimelineEvent(struct w_steam_iface *_this, const char *pchIcon, const char *pchTitle, const char *pchDescription, uint32_t unPriority, float flStartOffsetSeconds, float flDurationSeconds, uint32_t ePossibleClip) +void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V001_AddTimelineEvent(struct w_iface *_this, const char *pchIcon, const char *pchTitle, const char *pchDescription, uint32_t unPriority, float flStartOffsetSeconds, float flDurationSeconds, uint32_t ePossibleClip) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_AddTimelineEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchIcon = pchIcon, .pchTitle = pchTitle, .pchDescription = pchDescription, @@ -52,11 +52,11 @@ void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V001_AddTimelineEvent( STEAMCLIENT_CALL( ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_AddTimelineEvent, ¶ms ); } -void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineGameMode(struct w_steam_iface *_this, uint32_t eMode) +void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineGameMode(struct w_iface *_this, uint32_t eMode) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V001_SetTimelineGameMode_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eMode = eMode, }; TRACE("%p\n", _this); @@ -76,9 +76,9 @@ __ASM_BLOCK_BEGIN(winISteamTimeline_STEAMTIMELINE_INTERFACE_V001_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamTimeline_STEAMTIMELINE_INTERFACE_V001(void *u_iface) +struct w_iface *create_winISteamTimeline_STEAMTIMELINE_INTERFACE_V001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMTIMELINE_INTERFACE_V001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMTIMELINE_INTERFACE_V001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamTimeline_STEAMTIMELINE_INTERFACE_V001_vtable, 4, "STEAMTIMELINE_INTERFACE_V001"); r->u_iface = u_iface; @@ -104,11 +104,11 @@ DEFINE_THISCALL_WRAPPER(winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePh DEFINE_THISCALL_WRAPPER(winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToGamePhase, 8) DEFINE_THISCALL_WRAPPER(winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToTimelineEvent, 12) -void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineTooltip(struct w_steam_iface *_this, const char *pchDescription, float flTimeDelta) +void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineTooltip(struct w_iface *_this, const char *pchDescription, float flTimeDelta) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineTooltip_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchDescription = pchDescription, .flTimeDelta = flTimeDelta, }; @@ -117,33 +117,33 @@ void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineToolti STEAMCLIENT_CALL( ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineTooltip, ¶ms ); } -void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_ClearTimelineTooltip(struct w_steam_iface *_this, float flTimeDelta) +void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_ClearTimelineTooltip(struct w_iface *_this, float flTimeDelta) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_ClearTimelineTooltip_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .flTimeDelta = flTimeDelta, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_ClearTimelineTooltip, ¶ms ); } -void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineGameMode(struct w_steam_iface *_this, uint32_t eMode) +void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineGameMode(struct w_iface *_this, uint32_t eMode) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineGameMode_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eMode = eMode, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetTimelineGameMode, ¶ms ); } -uint64_t __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddInstantaneousTimelineEvent(struct w_steam_iface *_this, const char *pchTitle, const char *pchDescription, const char *pchIcon, uint32_t unIconPriority, float flStartOffsetSeconds, uint32_t ePossibleClip) +uint64_t __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddInstantaneousTimelineEvent(struct w_iface *_this, const char *pchTitle, const char *pchDescription, const char *pchIcon, uint32_t unIconPriority, float flStartOffsetSeconds, uint32_t ePossibleClip) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddInstantaneousTimelineEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchTitle = pchTitle, .pchDescription = pchDescription, .pchIcon = pchIcon, @@ -159,11 +159,11 @@ uint64_t __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddInstantane return params._ret; } -uint64_t __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddRangeTimelineEvent(struct w_steam_iface *_this, const char *pchTitle, const char *pchDescription, const char *pchIcon, uint32_t unIconPriority, float flStartOffsetSeconds, float flDuration, uint32_t ePossibleClip) +uint64_t __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddRangeTimelineEvent(struct w_iface *_this, const char *pchTitle, const char *pchDescription, const char *pchIcon, uint32_t unIconPriority, float flStartOffsetSeconds, float flDuration, uint32_t ePossibleClip) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddRangeTimelineEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchTitle = pchTitle, .pchDescription = pchDescription, .pchIcon = pchIcon, @@ -180,11 +180,11 @@ uint64_t __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddRangeTimel return params._ret; } -uint64_t __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartRangeTimelineEvent(struct w_steam_iface *_this, const char *pchTitle, const char *pchDescription, const char *pchIcon, uint32_t unPriority, float flStartOffsetSeconds, uint32_t ePossibleClip) +uint64_t __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartRangeTimelineEvent(struct w_iface *_this, const char *pchTitle, const char *pchDescription, const char *pchIcon, uint32_t unPriority, float flStartOffsetSeconds, uint32_t ePossibleClip) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartRangeTimelineEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchTitle = pchTitle, .pchDescription = pchDescription, .pchIcon = pchIcon, @@ -200,11 +200,11 @@ uint64_t __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartRangeTim return params._ret; } -void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_UpdateRangeTimelineEvent(struct w_steam_iface *_this, uint64_t ulEvent, const char *pchTitle, const char *pchDescription, const char *pchIcon, uint32_t unPriority, uint32_t ePossibleClip) +void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_UpdateRangeTimelineEvent(struct w_iface *_this, uint64_t ulEvent, const char *pchTitle, const char *pchDescription, const char *pchIcon, uint32_t unPriority, uint32_t ePossibleClip) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_UpdateRangeTimelineEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulEvent = ulEvent, .pchTitle = pchTitle, .pchDescription = pchDescription, @@ -219,11 +219,11 @@ void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_UpdateRangeTimeli STEAMCLIENT_CALL( ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_UpdateRangeTimelineEvent, ¶ms ); } -void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndRangeTimelineEvent(struct w_steam_iface *_this, uint64_t ulEvent, float flEndOffsetSeconds) +void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndRangeTimelineEvent(struct w_iface *_this, uint64_t ulEvent, float flEndOffsetSeconds) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndRangeTimelineEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulEvent = ulEvent, .flEndOffsetSeconds = flEndOffsetSeconds, }; @@ -231,22 +231,22 @@ void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndRangeTimelineE STEAMCLIENT_CALL( ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndRangeTimelineEvent, ¶ms ); } -void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_RemoveTimelineEvent(struct w_steam_iface *_this, uint64_t ulEvent) +void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_RemoveTimelineEvent(struct w_iface *_this, uint64_t ulEvent) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_RemoveTimelineEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulEvent = ulEvent, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_RemoveTimelineEvent, ¶ms ); } -uint64_t __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesEventRecordingExist(struct w_steam_iface *_this, uint64_t ulEvent) +uint64_t __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesEventRecordingExist(struct w_iface *_this, uint64_t ulEvent) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesEventRecordingExist_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulEvent = ulEvent, }; TRACE("%p\n", _this); @@ -254,31 +254,31 @@ uint64_t __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesEventReco return params._ret; } -void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartGamePhase(struct w_steam_iface *_this) +void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartGamePhase(struct w_iface *_this) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartGamePhase_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_StartGamePhase, ¶ms ); } -void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndGamePhase(struct w_steam_iface *_this) +void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndGamePhase(struct w_iface *_this) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndGamePhase_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_EndGamePhase, ¶ms ); } -void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseID(struct w_steam_iface *_this, const char *pchPhaseID) +void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseID(struct w_iface *_this, const char *pchPhaseID) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPhaseID = pchPhaseID, }; TRACE("%p\n", _this); @@ -286,11 +286,11 @@ void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseID(st STEAMCLIENT_CALL( ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseID, ¶ms ); } -uint64_t __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesGamePhaseRecordingExist(struct w_steam_iface *_this, const char *pchPhaseID) +uint64_t __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesGamePhaseRecordingExist(struct w_iface *_this, const char *pchPhaseID) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesGamePhaseRecordingExist_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPhaseID = pchPhaseID, }; TRACE("%p\n", _this); @@ -299,11 +299,11 @@ uint64_t __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_DoesGamePhase return params._ret; } -void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddGamePhaseTag(struct w_steam_iface *_this, const char *pchTagName, const char *pchTagIcon, const char *pchTagGroup, uint32_t unPriority) +void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddGamePhaseTag(struct w_iface *_this, const char *pchTagName, const char *pchTagIcon, const char *pchTagGroup, uint32_t unPriority) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddGamePhaseTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchTagName = pchTagName, .pchTagIcon = pchTagIcon, .pchTagGroup = pchTagGroup, @@ -316,11 +316,11 @@ void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddGamePhaseTag(s STEAMCLIENT_CALL( ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_AddGamePhaseTag, ¶ms ); } -void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseAttribute(struct w_steam_iface *_this, const char *pchAttributeGroup, const char *pchAttributeValue, uint32_t unPriority) +void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseAttribute(struct w_iface *_this, const char *pchAttributeGroup, const char *pchAttributeValue, uint32_t unPriority) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseAttribute_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchAttributeGroup = pchAttributeGroup, .pchAttributeValue = pchAttributeValue, .unPriority = unPriority, @@ -331,11 +331,11 @@ void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseAttri STEAMCLIENT_CALL( ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_SetGamePhaseAttribute, ¶ms ); } -void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToGamePhase(struct w_steam_iface *_this, const char *pchPhaseID) +void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToGamePhase(struct w_iface *_this, const char *pchPhaseID) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToGamePhase_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPhaseID = pchPhaseID, }; TRACE("%p\n", _this); @@ -343,11 +343,11 @@ void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToGame STEAMCLIENT_CALL( ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToGamePhase, ¶ms ); } -void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToTimelineEvent(struct w_steam_iface *_this, const uint64_t ulEvent) +void __thiscall winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToTimelineEvent(struct w_iface *_this, const uint64_t ulEvent) { struct ISteamTimeline_STEAMTIMELINE_INTERFACE_V004_OpenOverlayToTimelineEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .ulEvent = ulEvent, }; TRACE("%p\n", _this); @@ -381,9 +381,9 @@ __ASM_BLOCK_BEGIN(winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamTimeline_STEAMTIMELINE_INTERFACE_V004(void *u_iface) +struct w_iface *create_winISteamTimeline_STEAMTIMELINE_INTERFACE_V004( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMTIMELINE_INTERFACE_V004"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMTIMELINE_INTERFACE_V004"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamTimeline_STEAMTIMELINE_INTERFACE_V004_vtable, 18, "STEAMTIMELINE_INTERFACE_V004"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamUGC.c b/lsteamclient/winISteamUGC.c index 0710fe86..28f8acaa 100644 --- a/lsteamclient/winISteamUGC.c +++ b/lsteamclient/winISteamUGC.c @@ -18,11 +18,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays, 16) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails, 12) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -36,11 +36,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -52,11 +52,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -64,11 +64,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_126 *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_126 *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -78,11 +78,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_GetQueryUGCResult(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -90,11 +90,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -104,11 +104,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -118,11 +118,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -131,11 +131,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -144,11 +144,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -158,11 +158,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -171,11 +171,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -185,11 +185,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -198,11 +198,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_SetRankedByTrendDay return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION001_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -233,9 +233,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION001_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION001(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION001_vtable, 14, "STEAMUGC_INTERFACE_VERSION001"); r->u_iface = u_iface; @@ -274,11 +274,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribed DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo, 24) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo, 28) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -292,11 +292,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -308,11 +308,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -320,11 +320,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -334,11 +334,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetQueryUGCResult(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -346,11 +346,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -360,11 +360,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -374,11 +374,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -387,11 +387,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -400,11 +400,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse(struct w_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -413,11 +413,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetAllowCachedRespo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -427,11 +427,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -440,11 +440,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -454,11 +454,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -467,11 +467,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetRankedByTrendDay return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -480,11 +480,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_RequestUGCDetails return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem(struct w_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; @@ -493,11 +493,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateItem(struct return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate(struct w_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; @@ -506,11 +506,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_StartItemUpdate(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle(struct w_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; @@ -520,11 +520,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTitle(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription(struct w_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; @@ -534,11 +534,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemDescription( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility(struct w_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; @@ -547,11 +547,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemVisibility(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags(struct w_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -560,11 +560,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent(struct w_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszContentFolder = pszContentFolder, }; @@ -574,11 +574,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemContent(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, }; @@ -588,11 +588,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemPreview(stru return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate(struct w_iface *_this, uint64_t handle, const char *pchChangeNote) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; @@ -602,11 +602,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubmitItemUpdate( return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress(struct w_steam_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress(struct w_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .punBytesProcessed = punBytesProcessed, .punBytesTotal = punBytesTotal, @@ -616,11 +616,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -628,11 +628,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_SubscribeItem(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -640,22 +640,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_UnsubscribeItem(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetNumSubscribedItems, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; @@ -664,11 +664,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetSubscribedItem return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punSizeOnDisk = punSizeOnDisk, .pchFolder = pchFolder, @@ -679,11 +679,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemInstallInfo( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t *pbNeedsUpdate, int8_t *pbIsDownloading, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo(struct w_iface *_this, uint64_t nPublishedFileID, int8_t *pbNeedsUpdate, int8_t *pbIsDownloading, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION002_GetItemUpdateInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .pbNeedsUpdate = pbNeedsUpdate, .pbIsDownloading = pbIsDownloading, @@ -735,9 +735,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION002_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION002(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION002_vtable, 31, "STEAMUGC_INTERFACE_VERSION002"); r->u_iface = u_iface; @@ -776,11 +776,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribed DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo, 28) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo, 28) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -794,11 +794,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -810,11 +810,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -822,11 +822,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -836,11 +836,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -848,11 +848,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -862,11 +862,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -876,11 +876,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -889,11 +889,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -902,11 +902,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse(struct w_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -915,11 +915,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedRespo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -929,11 +929,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -942,11 +942,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -956,11 +956,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -969,11 +969,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDay return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -982,11 +982,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem(struct w_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; @@ -995,11 +995,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem(struct return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate(struct w_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; @@ -1008,11 +1008,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle(struct w_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; @@ -1022,11 +1022,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription(struct w_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; @@ -1036,11 +1036,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility(struct w_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; @@ -1049,11 +1049,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags(struct w_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -1062,11 +1062,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent(struct w_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszContentFolder = pszContentFolder, }; @@ -1076,11 +1076,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, }; @@ -1090,11 +1090,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview(stru return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate(struct w_iface *_this, uint64_t handle, const char *pchChangeNote) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; @@ -1104,11 +1104,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate( return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress(struct w_steam_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress(struct w_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .punBytesProcessed = punBytesProcessed, .punBytesTotal = punBytesTotal, @@ -1118,11 +1118,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -1130,11 +1130,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -1142,22 +1142,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; @@ -1166,11 +1166,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItem return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, int8_t *pbLegacyItem) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, int8_t *pbLegacyItem) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punSizeOnDisk = punSizeOnDisk, .pchFolder = pchFolder, @@ -1182,11 +1182,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t *pbNeedsUpdate, int8_t *pbIsDownloading, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo(struct w_iface *_this, uint64_t nPublishedFileID, int8_t *pbNeedsUpdate, int8_t *pbIsDownloading, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .pbNeedsUpdate = pbNeedsUpdate, .pbIsDownloading = pbIsDownloading, @@ -1238,9 +1238,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION003_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION003(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION003( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION003"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION003"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION003_vtable, 31, "STEAMUGC_INTERFACE_VERSION003"); r->u_iface = u_iface; @@ -1281,11 +1281,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstal DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo, 20) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem, 16) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -1299,11 +1299,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -1315,11 +1315,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -1327,11 +1327,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -1341,11 +1341,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetQueryUGCResult(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -1353,11 +1353,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -1367,11 +1367,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -1381,11 +1381,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -1394,11 +1394,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -1407,11 +1407,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse(struct w_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -1420,11 +1420,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetAllowCachedRespo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -1434,11 +1434,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -1447,11 +1447,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -1461,11 +1461,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -1474,11 +1474,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetRankedByTrendDay return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -1487,11 +1487,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_RequestUGCDetails return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem(struct w_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; @@ -1500,11 +1500,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_CreateItem(struct return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate(struct w_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; @@ -1513,11 +1513,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_StartItemUpdate(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle(struct w_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; @@ -1527,11 +1527,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTitle(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription(struct w_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; @@ -1541,11 +1541,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemDescription( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility(struct w_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; @@ -1554,11 +1554,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemVisibility(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags(struct w_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -1567,11 +1567,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemTags(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent(struct w_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszContentFolder = pszContentFolder, }; @@ -1581,11 +1581,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemContent(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, }; @@ -1595,11 +1595,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SetItemPreview(stru return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate(struct w_iface *_this, uint64_t handle, const char *pchChangeNote) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; @@ -1609,11 +1609,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubmitItemUpdate( return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress(struct w_steam_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress(struct w_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .punBytesProcessed = punBytesProcessed, .punBytesTotal = punBytesTotal, @@ -1623,11 +1623,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -1635,11 +1635,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_SubscribeItem(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -1647,22 +1647,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_UnsubscribeItem(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetNumSubscribedItems, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; @@ -1671,11 +1671,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetSubscribedItem return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -1683,11 +1683,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemState(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punSizeOnDisk = punSizeOnDisk, .pchFolder = pchFolder, @@ -1699,11 +1699,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemInstallInfo( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punBytesDownloaded = punBytesDownloaded, .punBytesTotal = punBytesTotal, @@ -1713,11 +1713,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_GetItemDownloadInfo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION004_DownloadItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; @@ -1768,9 +1768,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION004_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION004(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION004( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION004"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION004"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION004_vtable, 33, "STEAMUGC_INTERFACE_VERSION004"); r->u_iface = u_iface; @@ -1824,11 +1824,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstal DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo, 20) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem, 16) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -1842,11 +1842,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -1858,11 +1858,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDetailsRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -1871,11 +1871,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateQueryUGCDet return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -1883,11 +1883,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -1897,11 +1897,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCResult(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchURL = pchURL, @@ -1912,11 +1912,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCPreviewU return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchMetadata = pchMetadata, @@ -1927,11 +1927,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCMetadata return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren(struct w_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecPublishedFileID = pvecPublishedFileID, @@ -1942,11 +1942,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCChildren return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatistic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .eStatType = eStatType, @@ -1957,11 +1957,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCStatisti return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -1970,11 +1970,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCNumAdd return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, int8_t *pbIsImage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, int8_t *pbIsImage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAdditionalPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .previewIndex = previewIndex, @@ -1987,11 +1987,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetQueryUGCAddition return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -1999,11 +1999,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -2013,11 +2013,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -2027,11 +2027,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -2040,11 +2040,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata(struct w_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; @@ -2053,11 +2053,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnMetadata(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren(struct w_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; @@ -2066,11 +2066,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnChildren(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews(struct w_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; @@ -2079,11 +2079,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnAdditional return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -2092,11 +2092,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse(struct w_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -2105,11 +2105,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetAllowCachedRespo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -2119,11 +2119,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -2132,11 +2132,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -2146,11 +2146,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -2159,11 +2159,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetRankedByTrendDay return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -2172,11 +2172,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_RequestUGCDetails return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem(struct w_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; @@ -2185,11 +2185,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_CreateItem(struct return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate(struct w_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; @@ -2198,11 +2198,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_StartItemUpdate(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle(struct w_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; @@ -2212,11 +2212,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTitle(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription(struct w_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; @@ -2226,11 +2226,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemDescription( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata(struct w_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; @@ -2240,11 +2240,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemMetadata(str return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility(struct w_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; @@ -2253,11 +2253,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemVisibility(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags(struct w_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -2266,11 +2266,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemTags(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent(struct w_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszContentFolder = pszContentFolder, }; @@ -2280,11 +2280,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemContent(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, }; @@ -2294,11 +2294,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SetItemPreview(stru return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate(struct w_iface *_this, uint64_t handle, const char *pchChangeNote) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; @@ -2308,11 +2308,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubmitItemUpdate( return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress(struct w_steam_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress(struct w_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .punBytesProcessed = punBytesProcessed, .punBytesTotal = punBytesTotal, @@ -2322,11 +2322,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -2335,11 +2335,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_AddItemToFavorite return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -2348,11 +2348,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_RemoveItemFromFav return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -2360,11 +2360,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_SubscribeItem(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -2372,22 +2372,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_UnsubscribeItem(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetNumSubscribedItems, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; @@ -2396,11 +2396,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetSubscribedItem return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -2408,11 +2408,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemState(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punSizeOnDisk = punSizeOnDisk, .pchFolder = pchFolder, @@ -2424,11 +2424,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemInstallInfo( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punBytesDownloaded = punBytesDownloaded, .punBytesTotal = punBytesTotal, @@ -2438,11 +2438,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_GetItemDownloadInfo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION005_DownloadItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; @@ -2506,9 +2506,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION005_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION005(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION005( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION005"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION005"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION005_vtable, 46, "STEAMUGC_INTERFACE_VERSION005"); r->u_iface = u_iface; @@ -2566,11 +2566,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstal DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo, 20) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem, 16) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -2584,11 +2584,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -2600,11 +2600,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDetailsRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -2613,11 +2613,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateQueryUGCDet return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -2625,11 +2625,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -2639,11 +2639,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCResult(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchURL = pchURL, @@ -2654,11 +2654,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCPreviewU return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchMetadata = pchMetadata, @@ -2669,11 +2669,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCMetadata return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren(struct w_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecPublishedFileID = pvecPublishedFileID, @@ -2684,11 +2684,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCChildren return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatistic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .eStatType = eStatType, @@ -2699,11 +2699,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCStatisti return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -2712,11 +2712,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCNumAdd return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, int8_t *pbIsImage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, int8_t *pbIsImage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAdditionalPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .previewIndex = previewIndex, @@ -2729,11 +2729,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetQueryUGCAddition return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -2741,11 +2741,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -2755,11 +2755,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -2769,11 +2769,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -2782,11 +2782,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata(struct w_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; @@ -2795,11 +2795,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnMetadata(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren(struct w_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; @@ -2808,11 +2808,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnChildren(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews(struct w_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; @@ -2821,11 +2821,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnAdditional return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -2834,11 +2834,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -2848,11 +2848,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetLanguage(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse(struct w_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -2861,11 +2861,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetAllowCachedRespo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -2875,11 +2875,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -2888,11 +2888,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -2902,11 +2902,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -2915,11 +2915,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetRankedByTrendDay return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -2928,11 +2928,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_RequestUGCDetails return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem(struct w_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; @@ -2941,11 +2941,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_CreateItem(struct return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate(struct w_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; @@ -2954,11 +2954,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_StartItemUpdate(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle(struct w_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; @@ -2968,11 +2968,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTitle(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription(struct w_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; @@ -2982,11 +2982,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemDescription( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -2996,11 +2996,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemUpdateLangua return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata(struct w_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; @@ -3010,11 +3010,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemMetadata(str return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility(struct w_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; @@ -3023,11 +3023,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemVisibility(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags(struct w_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -3036,11 +3036,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemTags(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent(struct w_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszContentFolder = pszContentFolder, }; @@ -3050,11 +3050,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemContent(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, }; @@ -3064,11 +3064,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetItemPreview(stru return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate(struct w_iface *_this, uint64_t handle, const char *pchChangeNote) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; @@ -3078,11 +3078,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubmitItemUpdate( return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress(struct w_steam_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress(struct w_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .punBytesProcessed = punBytesProcessed, .punBytesTotal = punBytesTotal, @@ -3092,11 +3092,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; @@ -3105,11 +3105,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -3117,11 +3117,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -3130,11 +3130,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_AddItemToFavorite return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -3143,11 +3143,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_RemoveItemFromFav return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -3155,11 +3155,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_SubscribeItem(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -3167,22 +3167,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_UnsubscribeItem(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetNumSubscribedItems, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; @@ -3191,11 +3191,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetSubscribedItem return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -3203,11 +3203,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemState(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punSizeOnDisk = punSizeOnDisk, .pchFolder = pchFolder, @@ -3219,11 +3219,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemInstallInfo( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punBytesDownloaded = punBytesDownloaded, .punBytesTotal = punBytesTotal, @@ -3233,11 +3233,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_GetItemDownloadInfo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION006_DownloadItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; @@ -3305,9 +3305,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION006_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION006(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION006( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION006"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION006"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION006_vtable, 50, "STEAMUGC_INTERFACE_VERSION006"); r->u_iface = u_iface; @@ -3373,11 +3373,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem, DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer, 12) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads, 8) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -3391,11 +3391,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -3407,11 +3407,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDetailsRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -3420,11 +3420,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateQueryUGCDet return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -3432,11 +3432,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -3446,11 +3446,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCResult(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchURL = pchURL, @@ -3461,11 +3461,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCPreviewU return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchMetadata = pchMetadata, @@ -3476,11 +3476,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCMetadata return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren(struct w_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecPublishedFileID = pvecPublishedFileID, @@ -3491,11 +3491,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCChildren return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatistic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .eStatType = eStatType, @@ -3506,11 +3506,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCStatisti return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -3519,11 +3519,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumAdd return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, int8_t *pbIsImage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, int8_t *pbIsImage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAdditionalPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .previewIndex = previewIndex, @@ -3536,11 +3536,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCAddition return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -3549,11 +3549,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCNumKey return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .keyValueTagIndex = keyValueTagIndex, @@ -3567,11 +3567,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetQueryUGCKeyValue return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -3579,11 +3579,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -3593,11 +3593,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -3607,11 +3607,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags(struct w_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; @@ -3620,11 +3620,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnKeyValueTa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -3633,11 +3633,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata(struct w_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; @@ -3646,11 +3646,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnMetadata(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren(struct w_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; @@ -3659,11 +3659,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnChildren(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews(struct w_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; @@ -3672,11 +3672,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnAdditional return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -3685,11 +3685,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -3699,11 +3699,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetLanguage(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse(struct w_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -3712,11 +3712,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetAllowCachedRespo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -3726,11 +3726,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -3739,11 +3739,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -3753,11 +3753,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -3766,11 +3766,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetRankedByTrendDay return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pKey = pKey, .pValue = pValue, @@ -3782,11 +3782,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddRequiredKeyValue return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -3795,11 +3795,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_RequestUGCDetails return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem(struct w_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; @@ -3808,11 +3808,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_CreateItem(struct return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate(struct w_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; @@ -3821,11 +3821,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_StartItemUpdate(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle(struct w_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; @@ -3835,11 +3835,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTitle(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription(struct w_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; @@ -3849,11 +3849,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemDescription( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -3863,11 +3863,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemUpdateLangua return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata(struct w_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; @@ -3877,11 +3877,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemMetadata(str return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility(struct w_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; @@ -3890,11 +3890,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemVisibility(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags(struct w_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -3903,11 +3903,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemTags(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent(struct w_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszContentFolder = pszContentFolder, }; @@ -3917,11 +3917,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemContent(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, }; @@ -3931,11 +3931,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetItemPreview(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags(struct w_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, }; @@ -3945,11 +3945,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemKeyValueT return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, .pchValue = pchValue, @@ -3961,11 +3961,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemKeyValueTag( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate(struct w_iface *_this, uint64_t handle, const char *pchChangeNote) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; @@ -3975,11 +3975,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubmitItemUpdate( return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress(struct w_steam_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress(struct w_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .punBytesProcessed = punBytesProcessed, .punBytesTotal = punBytesTotal, @@ -3989,11 +3989,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; @@ -4002,11 +4002,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -4014,11 +4014,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -4027,11 +4027,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_AddItemToFavorite return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -4040,11 +4040,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_RemoveItemFromFav return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -4052,11 +4052,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SubscribeItem(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -4064,22 +4064,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_UnsubscribeItem(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetNumSubscribedItems, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; @@ -4088,11 +4088,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetSubscribedItem return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -4100,11 +4100,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemState(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punSizeOnDisk = punSizeOnDisk, .pchFolder = pchFolder, @@ -4116,11 +4116,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemInstallInfo( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punBytesDownloaded = punBytesDownloaded, .punBytesTotal = punBytesTotal, @@ -4130,11 +4130,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_GetItemDownloadInfo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; @@ -4143,11 +4143,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_DownloadItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer(struct w_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, .pszFolder = pszFolder, }; @@ -4157,11 +4157,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_BInitWorkshopForGam return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads(struct w_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION007_SuspendDownloads_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); @@ -4235,9 +4235,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION007_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION007(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION007( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION007"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION007"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION007_vtable, 58, "STEAMUGC_INTERFACE_VERSION007"); r->u_iface = u_iface; @@ -4308,11 +4308,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem, DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer, 12) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads, 8) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -4326,11 +4326,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -4342,11 +4342,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDetailsRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -4355,11 +4355,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateQueryUGCDet return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -4367,11 +4367,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -4381,11 +4381,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCResult(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchURL = pchURL, @@ -4396,11 +4396,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCPreviewU return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchMetadata = pchMetadata, @@ -4411,11 +4411,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCMetadata return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren(struct w_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecPublishedFileID = pvecPublishedFileID, @@ -4426,11 +4426,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCChildren return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint32_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatistic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .eStatType = eStatType, @@ -4441,11 +4441,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCStatisti return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -4454,11 +4454,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumAdd return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAdditionalPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .previewIndex = previewIndex, @@ -4473,11 +4473,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCAddition return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -4486,11 +4486,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCNumKey return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .keyValueTagIndex = keyValueTagIndex, @@ -4504,11 +4504,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetQueryUGCKeyValue return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -4516,11 +4516,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -4530,11 +4530,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -4544,11 +4544,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags(struct w_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; @@ -4557,11 +4557,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnKeyValueTa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -4570,11 +4570,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata(struct w_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; @@ -4583,11 +4583,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnMetadata(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren(struct w_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; @@ -4596,11 +4596,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnChildren(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews(struct w_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; @@ -4609,11 +4609,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnAdditional return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -4622,11 +4622,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -4636,11 +4636,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetLanguage(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse(struct w_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -4649,11 +4649,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetAllowCachedRespo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -4663,11 +4663,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -4676,11 +4676,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -4690,11 +4690,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -4703,11 +4703,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetRankedByTrendDay return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pKey = pKey, .pValue = pValue, @@ -4719,11 +4719,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddRequiredKeyValue return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -4732,11 +4732,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RequestUGCDetails return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem(struct w_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; @@ -4745,11 +4745,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_CreateItem(struct return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate(struct w_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; @@ -4758,11 +4758,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_StartItemUpdate(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle(struct w_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; @@ -4772,11 +4772,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTitle(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription(struct w_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; @@ -4786,11 +4786,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemDescription( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -4800,11 +4800,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemUpdateLangua return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata(struct w_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; @@ -4814,11 +4814,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemMetadata(str return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility(struct w_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; @@ -4827,11 +4827,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemVisibility(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags(struct w_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -4840,11 +4840,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemTags(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent(struct w_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszContentFolder = pszContentFolder, }; @@ -4854,11 +4854,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemContent(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, }; @@ -4868,11 +4868,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetItemPreview(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags(struct w_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, }; @@ -4882,11 +4882,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemKeyValueT return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, .pchValue = pchValue, @@ -4898,11 +4898,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemKeyValueTag( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, .type = type, @@ -4913,11 +4913,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewFile( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo(struct w_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; @@ -4927,11 +4927,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemPreviewVideo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszPreviewFile = pszPreviewFile, @@ -4942,11 +4942,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewFi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszVideoID = pszVideoID, @@ -4957,11 +4957,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UpdateItemPreviewVi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -4970,11 +4970,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemPreview(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate(struct w_iface *_this, uint64_t handle, const char *pchChangeNote) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; @@ -4984,11 +4984,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubmitItemUpdate( return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress(struct w_steam_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress(struct w_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .punBytesProcessed = punBytesProcessed, .punBytesTotal = punBytesTotal, @@ -4998,11 +4998,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; @@ -5011,11 +5011,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -5023,11 +5023,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -5036,11 +5036,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_AddItemToFavorite return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -5049,11 +5049,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_RemoveItemFromFav return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -5061,11 +5061,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SubscribeItem(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -5073,22 +5073,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_UnsubscribeItem(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetNumSubscribedItems, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; @@ -5097,11 +5097,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetSubscribedItem return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -5109,11 +5109,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemState(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punSizeOnDisk = punSizeOnDisk, .pchFolder = pchFolder, @@ -5125,11 +5125,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemInstallInfo( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punBytesDownloaded = punBytesDownloaded, .punBytesTotal = punBytesTotal, @@ -5139,11 +5139,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_GetItemDownloadInfo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; @@ -5152,11 +5152,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_DownloadItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer(struct w_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, .pszFolder = pszFolder, }; @@ -5166,11 +5166,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_BInitWorkshopForGam return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads(struct w_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION008_SuspendDownloads_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); @@ -5249,9 +5249,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION008_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION008(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION008( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION008"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION008"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION008_vtable, 63, "STEAMUGC_INTERFACE_VERSION008"); r->u_iface = u_iface; @@ -5326,11 +5326,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytime DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking, 12) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems, 4) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -5344,11 +5344,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -5360,11 +5360,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDetailsRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -5373,11 +5373,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateQueryUGCDet return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -5385,11 +5385,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -5399,11 +5399,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCResult(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchURL = pchURL, @@ -5414,11 +5414,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCPreviewU return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchMetadata = pchMetadata, @@ -5429,11 +5429,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCMetadata return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren(struct w_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecPublishedFileID = pvecPublishedFileID, @@ -5444,11 +5444,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCChildren return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatistic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .eStatType = eStatType, @@ -5459,11 +5459,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCStatisti return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -5472,11 +5472,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumAdd return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAdditionalPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .previewIndex = previewIndex, @@ -5491,11 +5491,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCAddition return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -5504,11 +5504,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCNumKey return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .keyValueTagIndex = keyValueTagIndex, @@ -5522,11 +5522,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetQueryUGCKeyValue return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -5534,11 +5534,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -5548,11 +5548,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -5562,11 +5562,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs(struct w_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; @@ -5575,11 +5575,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnOnlyIDs(st return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags(struct w_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; @@ -5588,11 +5588,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnKeyValueTa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -5601,11 +5601,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata(struct w_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; @@ -5614,11 +5614,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnMetadata(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren(struct w_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; @@ -5627,11 +5627,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnChildren(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews(struct w_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; @@ -5640,11 +5640,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnAdditional return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -5653,11 +5653,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -5667,11 +5667,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetLanguage(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse(struct w_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -5680,11 +5680,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetAllowCachedRespo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -5694,11 +5694,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -5707,11 +5707,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -5721,11 +5721,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -5734,11 +5734,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetRankedByTrendDay return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pKey = pKey, .pValue = pValue, @@ -5750,11 +5750,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddRequiredKeyValue return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -5763,11 +5763,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RequestUGCDetails return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem(struct w_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; @@ -5776,11 +5776,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_CreateItem(struct return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate(struct w_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; @@ -5789,11 +5789,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartItemUpdate(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle(struct w_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; @@ -5803,11 +5803,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTitle(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription(struct w_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; @@ -5817,11 +5817,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemDescription( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -5831,11 +5831,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemUpdateLangua return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata(struct w_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; @@ -5845,11 +5845,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemMetadata(str return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility(struct w_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; @@ -5858,11 +5858,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemVisibility(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags(struct w_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -5871,11 +5871,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemTags(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent(struct w_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszContentFolder = pszContentFolder, }; @@ -5885,11 +5885,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemContent(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, }; @@ -5899,11 +5899,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetItemPreview(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags(struct w_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, }; @@ -5913,11 +5913,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemKeyValueT return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, .pchValue = pchValue, @@ -5929,11 +5929,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemKeyValueTag( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, .type = type, @@ -5944,11 +5944,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewFile( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo(struct w_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; @@ -5958,11 +5958,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemPreviewVideo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszPreviewFile = pszPreviewFile, @@ -5973,11 +5973,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewFi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszVideoID = pszVideoID, @@ -5988,11 +5988,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UpdateItemPreviewVi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -6001,11 +6001,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemPreview(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate(struct w_iface *_this, uint64_t handle, const char *pchChangeNote) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; @@ -6015,11 +6015,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubmitItemUpdate( return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress(struct w_steam_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress(struct w_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .punBytesProcessed = punBytesProcessed, .punBytesTotal = punBytesTotal, @@ -6029,11 +6029,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; @@ -6042,11 +6042,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -6054,11 +6054,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -6067,11 +6067,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_AddItemToFavorite return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -6080,11 +6080,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_RemoveItemFromFav return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -6092,11 +6092,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SubscribeItem(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -6104,22 +6104,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_UnsubscribeItem(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetNumSubscribedItems, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; @@ -6128,11 +6128,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetSubscribedItem return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -6140,11 +6140,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemState(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punSizeOnDisk = punSizeOnDisk, .pchFolder = pchFolder, @@ -6156,11 +6156,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemInstallInfo( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punBytesDownloaded = punBytesDownloaded, .punBytesTotal = punBytesTotal, @@ -6170,11 +6170,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_GetItemDownloadInfo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; @@ -6183,11 +6183,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_DownloadItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer(struct w_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, .pszFolder = pszFolder, }; @@ -6197,22 +6197,22 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_BInitWorkshopForGam return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads(struct w_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_SuspendDownloads, ¶ms ); } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -6221,11 +6221,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StartPlaytimeTrac return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -6234,11 +6234,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrack return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION009_StopPlaytimeTrackingForAllItems, ¶ms ); @@ -6321,9 +6321,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION009_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION009(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION009( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION009"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION009"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION009_vtable, 67, "STEAMUGC_INTERFACE_VERSION009"); r->u_iface = u_iface; @@ -6405,11 +6405,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDepe DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies, 12) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem, 12) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -6423,11 +6423,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -6439,11 +6439,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDetailsRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -6452,11 +6452,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateQueryUGCDet return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -6464,11 +6464,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -6478,11 +6478,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCResult(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchURL = pchURL, @@ -6493,11 +6493,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCPreviewU return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchMetadata = pchMetadata, @@ -6508,11 +6508,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCMetadata return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren(struct w_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecPublishedFileID = pvecPublishedFileID, @@ -6523,11 +6523,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCChildren return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatistic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .eStatType = eStatType, @@ -6538,11 +6538,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCStatisti return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -6551,11 +6551,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumAdd return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAdditionalPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .previewIndex = previewIndex, @@ -6570,11 +6570,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCAddition return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -6583,11 +6583,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCNumKey return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .keyValueTagIndex = keyValueTagIndex, @@ -6601,11 +6601,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetQueryUGCKeyValue return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -6613,11 +6613,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -6627,11 +6627,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -6641,11 +6641,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs(struct w_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; @@ -6654,11 +6654,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnOnlyIDs(st return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags(struct w_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; @@ -6667,11 +6667,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnKeyValueTa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -6680,11 +6680,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata(struct w_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; @@ -6693,11 +6693,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnMetadata(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren(struct w_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; @@ -6706,11 +6706,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnChildren(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews(struct w_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; @@ -6719,11 +6719,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnAdditional return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -6732,11 +6732,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -6745,11 +6745,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetReturnPlaytimeSt return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -6759,11 +6759,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetLanguage(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse(struct w_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -6772,11 +6772,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetAllowCachedRespo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -6786,11 +6786,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -6799,11 +6799,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -6813,11 +6813,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -6826,11 +6826,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetRankedByTrendDay return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pKey = pKey, .pValue = pValue, @@ -6842,11 +6842,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddRequiredKeyValue return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -6855,11 +6855,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RequestUGCDetails return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem(struct w_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; @@ -6868,11 +6868,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_CreateItem(struct return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate(struct w_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; @@ -6881,11 +6881,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartItemUpdate(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle(struct w_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; @@ -6895,11 +6895,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTitle(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription(struct w_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; @@ -6909,11 +6909,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemDescription( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -6923,11 +6923,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemUpdateLangua return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata(struct w_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; @@ -6937,11 +6937,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemMetadata(str return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility(struct w_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; @@ -6950,11 +6950,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemVisibility(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags(struct w_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -6963,11 +6963,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemTags(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent(struct w_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszContentFolder = pszContentFolder, }; @@ -6977,11 +6977,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemContent(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, }; @@ -6991,11 +6991,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetItemPreview(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags(struct w_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, }; @@ -7005,11 +7005,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemKeyValueT return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, .pchValue = pchValue, @@ -7021,11 +7021,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemKeyValueTag( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, .type = type, @@ -7036,11 +7036,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewFile( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo(struct w_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; @@ -7050,11 +7050,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemPreviewVideo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszPreviewFile = pszPreviewFile, @@ -7065,11 +7065,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewFi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszVideoID = pszVideoID, @@ -7080,11 +7080,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UpdateItemPreviewVi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -7093,11 +7093,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemPreview(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate(struct w_iface *_this, uint64_t handle, const char *pchChangeNote) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; @@ -7107,11 +7107,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubmitItemUpdate( return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress(struct w_steam_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress(struct w_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .punBytesProcessed = punBytesProcessed, .punBytesTotal = punBytesTotal, @@ -7121,11 +7121,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; @@ -7134,11 +7134,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -7146,11 +7146,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -7159,11 +7159,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddItemToFavorite return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -7172,11 +7172,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveItemFromFav return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -7184,11 +7184,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SubscribeItem(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -7196,22 +7196,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_UnsubscribeItem(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetNumSubscribedItems, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; @@ -7220,11 +7220,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetSubscribedItem return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -7232,11 +7232,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemState(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punSizeOnDisk = punSizeOnDisk, .pchFolder = pchFolder, @@ -7248,11 +7248,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemInstallInfo( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punBytesDownloaded = punBytesDownloaded, .punBytesTotal = punBytesTotal, @@ -7262,11 +7262,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetItemDownloadInfo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; @@ -7275,11 +7275,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_DownloadItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer(struct w_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, .pszFolder = pszFolder, }; @@ -7289,22 +7289,22 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_BInitWorkshopForGam return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads(struct w_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_SuspendDownloads, ¶ms ); } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -7313,11 +7313,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_StartPlaytimeTrac return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -7326,22 +7326,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrack return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION010_StopPlaytimeTrackingForAllItems, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -7350,11 +7350,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddDependency(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -7363,11 +7363,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -7376,11 +7376,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_AddAppDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -7389,11 +7389,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_RemoveAppDependen return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencies_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -7401,11 +7401,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_GetAppDependencie return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION010_DeleteItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -7496,9 +7496,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION010_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION010(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION010( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION010"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION010"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION010_vtable, 74, "STEAMUGC_INTERFACE_VERSION010"); r->u_iface = u_iface; @@ -7582,11 +7582,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDepe DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies, 12) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem, 12) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -7600,11 +7600,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -7616,11 +7616,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, const char *pchCursor) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, const char *pchCursor) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGCRequest_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -7633,11 +7633,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDetailsRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -7646,11 +7646,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateQueryUGCDet return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -7658,11 +7658,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -7672,11 +7672,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCResult(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchURL = pchURL, @@ -7687,11 +7687,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCPreviewU return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchMetadata = pchMetadata, @@ -7702,11 +7702,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCMetadata return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren(struct w_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecPublishedFileID = pvecPublishedFileID, @@ -7717,11 +7717,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCChildren return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatistic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .eStatType = eStatType, @@ -7732,11 +7732,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCStatisti return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -7745,11 +7745,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumAdd return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAdditionalPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .previewIndex = previewIndex, @@ -7764,11 +7764,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCAddition return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -7777,11 +7777,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCNumKey return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .keyValueTagIndex = keyValueTagIndex, @@ -7795,11 +7795,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetQueryUGCKeyValue return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -7807,11 +7807,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -7821,11 +7821,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -7835,11 +7835,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs(struct w_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; @@ -7848,11 +7848,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnOnlyIDs(st return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags(struct w_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; @@ -7861,11 +7861,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnKeyValueTa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -7874,11 +7874,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata(struct w_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; @@ -7887,11 +7887,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnMetadata(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren(struct w_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; @@ -7900,11 +7900,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnChildren(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews(struct w_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; @@ -7913,11 +7913,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnAdditional return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -7926,11 +7926,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -7939,11 +7939,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetReturnPlaytimeSt return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -7953,11 +7953,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetLanguage(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse(struct w_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -7966,11 +7966,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowCachedRespo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -7980,11 +7980,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -7993,11 +7993,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -8007,11 +8007,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -8020,11 +8020,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetRankedByTrendDay return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pKey = pKey, .pValue = pValue, @@ -8036,11 +8036,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddRequiredKeyValue return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -8049,11 +8049,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RequestUGCDetails return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem(struct w_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; @@ -8062,11 +8062,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_CreateItem(struct return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate(struct w_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; @@ -8075,11 +8075,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartItemUpdate(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle(struct w_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; @@ -8089,11 +8089,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTitle(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription(struct w_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; @@ -8103,11 +8103,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemDescription( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -8117,11 +8117,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemUpdateLangua return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata(struct w_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; @@ -8131,11 +8131,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemMetadata(str return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility(struct w_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; @@ -8144,11 +8144,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemVisibility(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags(struct w_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -8157,11 +8157,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemTags(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent(struct w_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszContentFolder = pszContentFolder, }; @@ -8171,11 +8171,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemContent(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, }; @@ -8185,11 +8185,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetItemPreview(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload(struct w_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUpload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bAllowLegacyUpload = bAllowLegacyUpload, }; @@ -8198,11 +8198,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetAllowLegacyUploa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags(struct w_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, }; @@ -8212,11 +8212,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemKeyValueT return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, .pchValue = pchValue, @@ -8228,11 +8228,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemKeyValueTag( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, .type = type, @@ -8243,11 +8243,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewFile( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo(struct w_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; @@ -8257,11 +8257,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemPreviewVideo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszPreviewFile = pszPreviewFile, @@ -8272,11 +8272,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewFi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszVideoID = pszVideoID, @@ -8287,11 +8287,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UpdateItemPreviewVi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -8300,11 +8300,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemPreview(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate(struct w_iface *_this, uint64_t handle, const char *pchChangeNote) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; @@ -8314,11 +8314,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubmitItemUpdate( return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress(struct w_steam_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress(struct w_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .punBytesProcessed = punBytesProcessed, .punBytesTotal = punBytesTotal, @@ -8328,11 +8328,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; @@ -8341,11 +8341,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -8353,11 +8353,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -8366,11 +8366,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddItemToFavorite return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -8379,11 +8379,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveItemFromFav return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -8391,11 +8391,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SubscribeItem(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -8403,22 +8403,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_UnsubscribeItem(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetNumSubscribedItems, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; @@ -8427,11 +8427,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetSubscribedItem return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -8439,11 +8439,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemState(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punSizeOnDisk = punSizeOnDisk, .pchFolder = pchFolder, @@ -8455,11 +8455,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemInstallInfo( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punBytesDownloaded = punBytesDownloaded, .punBytesTotal = punBytesTotal, @@ -8469,11 +8469,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetItemDownloadInfo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; @@ -8482,11 +8482,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_DownloadItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer(struct w_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, .pszFolder = pszFolder, }; @@ -8496,22 +8496,22 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_BInitWorkshopForGam return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads(struct w_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_SuspendDownloads, ¶ms ); } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -8520,11 +8520,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_StartPlaytimeTrac return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -8533,22 +8533,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrack return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION012_StopPlaytimeTrackingForAllItems, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -8557,11 +8557,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddDependency(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -8570,11 +8570,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -8583,11 +8583,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_AddAppDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -8596,11 +8596,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_RemoveAppDependen return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencies_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -8608,11 +8608,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_GetAppDependencie return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION012_DeleteItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -8705,9 +8705,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION012_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION012(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION012( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION012"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION012"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION012_vtable, 76, "STEAMUGC_INTERFACE_VERSION012"); r->u_iface = u_iface; @@ -8793,11 +8793,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDepe DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies, 12) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem, 12) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -8811,11 +8811,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -8827,11 +8827,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, const char *pchCursor) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, const char *pchCursor) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGCRequest_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -8844,11 +8844,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDetailsRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -8857,11 +8857,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateQueryUGCDet return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -8869,11 +8869,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -8883,11 +8883,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCResult(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchURL = pchURL, @@ -8898,11 +8898,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCPreviewU return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchMetadata = pchMetadata, @@ -8913,11 +8913,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCMetadata return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren(struct w_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecPublishedFileID = pvecPublishedFileID, @@ -8928,11 +8928,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCChildren return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatistic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .eStatType = eStatType, @@ -8943,11 +8943,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCStatisti return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -8956,11 +8956,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumAdd return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAdditionalPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .previewIndex = previewIndex, @@ -8975,11 +8975,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCAddition return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -8988,11 +8988,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCNumKey return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .keyValueTagIndex = keyValueTagIndex, @@ -9006,11 +9006,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValue return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValueTag_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchKey = pchKey, @@ -9023,11 +9023,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetQueryUGCKeyValue return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -9035,11 +9035,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -9049,11 +9049,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -9063,11 +9063,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs(struct w_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; @@ -9076,11 +9076,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnOnlyIDs(st return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags(struct w_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; @@ -9089,11 +9089,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnKeyValueTa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -9102,11 +9102,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata(struct w_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; @@ -9115,11 +9115,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnMetadata(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren(struct w_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; @@ -9128,11 +9128,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnChildren(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews(struct w_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; @@ -9141,11 +9141,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnAdditional return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -9154,11 +9154,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -9167,11 +9167,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetReturnPlaytimeSt return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -9181,11 +9181,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetLanguage(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse(struct w_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -9194,11 +9194,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowCachedRespo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -9208,11 +9208,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -9221,11 +9221,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -9235,11 +9235,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -9248,11 +9248,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetRankedByTrendDay return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pKey = pKey, .pValue = pValue, @@ -9264,11 +9264,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddRequiredKeyValue return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -9277,11 +9277,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RequestUGCDetails return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem(struct w_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; @@ -9290,11 +9290,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_CreateItem(struct return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate(struct w_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; @@ -9303,11 +9303,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartItemUpdate(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle(struct w_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; @@ -9317,11 +9317,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTitle(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription(struct w_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; @@ -9331,11 +9331,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemDescription( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -9345,11 +9345,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemUpdateLangua return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata(struct w_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; @@ -9359,11 +9359,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemMetadata(str return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility(struct w_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; @@ -9372,11 +9372,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemVisibility(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags(struct w_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -9385,11 +9385,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemTags(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent(struct w_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszContentFolder = pszContentFolder, }; @@ -9399,11 +9399,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemContent(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, }; @@ -9413,11 +9413,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetItemPreview(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload(struct w_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUpload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bAllowLegacyUpload = bAllowLegacyUpload, }; @@ -9426,11 +9426,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetAllowLegacyUploa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -9438,11 +9438,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAllItemKeyVal return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags(struct w_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, }; @@ -9452,11 +9452,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemKeyValueT return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, .pchValue = pchValue, @@ -9468,11 +9468,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemKeyValueTag( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, .type = type, @@ -9483,11 +9483,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewFile( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo(struct w_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; @@ -9497,11 +9497,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemPreviewVideo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszPreviewFile = pszPreviewFile, @@ -9512,11 +9512,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewFi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszVideoID = pszVideoID, @@ -9527,11 +9527,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UpdateItemPreviewVi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -9540,11 +9540,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemPreview(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate(struct w_iface *_this, uint64_t handle, const char *pchChangeNote) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; @@ -9554,11 +9554,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubmitItemUpdate( return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress(struct w_steam_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress(struct w_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .punBytesProcessed = punBytesProcessed, .punBytesTotal = punBytesTotal, @@ -9568,11 +9568,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; @@ -9581,11 +9581,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -9593,11 +9593,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -9606,11 +9606,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddItemToFavorite return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -9619,11 +9619,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveItemFromFav return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -9631,11 +9631,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SubscribeItem(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -9643,22 +9643,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_UnsubscribeItem(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetNumSubscribedItems, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; @@ -9667,11 +9667,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetSubscribedItem return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -9679,11 +9679,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemState(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punSizeOnDisk = punSizeOnDisk, .pchFolder = pchFolder, @@ -9695,11 +9695,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemInstallInfo( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punBytesDownloaded = punBytesDownloaded, .punBytesTotal = punBytesTotal, @@ -9709,11 +9709,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetItemDownloadInfo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; @@ -9722,11 +9722,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_DownloadItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer(struct w_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, .pszFolder = pszFolder, }; @@ -9736,22 +9736,22 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_BInitWorkshopForGam return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads(struct w_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_SuspendDownloads, ¶ms ); } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -9760,11 +9760,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_StartPlaytimeTrac return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -9773,22 +9773,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrack return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION013_StopPlaytimeTrackingForAllItems, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -9797,11 +9797,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddDependency(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -9810,11 +9810,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -9823,11 +9823,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_AddAppDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -9836,11 +9836,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_RemoveAppDependen return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencies_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -9848,11 +9848,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_GetAppDependencie return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION013_DeleteItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -9947,9 +9947,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION013_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION013(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION013( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION013"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION013"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION013_vtable, 78, "STEAMUGC_INTERFACE_VERSION013"); r->u_iface = u_iface; @@ -10036,11 +10036,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDepe DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies, 12) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem, 12) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -10054,11 +10054,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -10070,11 +10070,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, const char *pchCursor) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, const char *pchCursor) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGCRequest_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -10087,11 +10087,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDetailsRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -10100,11 +10100,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateQueryUGCDet return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -10112,11 +10112,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -10126,11 +10126,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCResult(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchURL = pchURL, @@ -10141,11 +10141,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCPreviewU return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchMetadata = pchMetadata, @@ -10156,11 +10156,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCMetadata return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren(struct w_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecPublishedFileID = pvecPublishedFileID, @@ -10171,11 +10171,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCChildren return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatistic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .eStatType = eStatType, @@ -10186,11 +10186,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCStatisti return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -10199,11 +10199,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumAdd return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAdditionalPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .previewIndex = previewIndex, @@ -10218,11 +10218,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCAddition return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -10231,11 +10231,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCNumKey return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .keyValueTagIndex = keyValueTagIndex, @@ -10249,11 +10249,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValue return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValueTag_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchKey = pchKey, @@ -10266,11 +10266,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetQueryUGCKeyValue return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -10278,11 +10278,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -10292,11 +10292,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup(struct w_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagGroups = pTagGroups, }; @@ -10305,11 +10305,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredTagGroup return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -10319,11 +10319,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs(struct w_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; @@ -10332,11 +10332,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnOnlyIDs(st return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags(struct w_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; @@ -10345,11 +10345,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnKeyValueTa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -10358,11 +10358,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata(struct w_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; @@ -10371,11 +10371,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnMetadata(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren(struct w_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; @@ -10384,11 +10384,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnChildren(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews(struct w_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; @@ -10397,11 +10397,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnAdditional return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -10410,11 +10410,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -10423,11 +10423,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetReturnPlaytimeSt return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -10437,11 +10437,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetLanguage(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse(struct w_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -10450,11 +10450,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowCachedRespo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -10464,11 +10464,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -10477,11 +10477,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -10491,11 +10491,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -10504,11 +10504,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetRankedByTrendDay return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pKey = pKey, .pValue = pValue, @@ -10520,11 +10520,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddRequiredKeyValue return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -10533,11 +10533,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RequestUGCDetails return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem(struct w_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; @@ -10546,11 +10546,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_CreateItem(struct return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate(struct w_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; @@ -10559,11 +10559,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartItemUpdate(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle(struct w_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; @@ -10573,11 +10573,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTitle(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription(struct w_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; @@ -10587,11 +10587,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemDescription( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -10601,11 +10601,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemUpdateLangua return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata(struct w_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; @@ -10615,11 +10615,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemMetadata(str return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility(struct w_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; @@ -10628,11 +10628,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemVisibility(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags(struct w_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -10641,11 +10641,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemTags(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent(struct w_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszContentFolder = pszContentFolder, }; @@ -10655,11 +10655,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemContent(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, }; @@ -10669,11 +10669,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetItemPreview(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload(struct w_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUpload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bAllowLegacyUpload = bAllowLegacyUpload, }; @@ -10682,11 +10682,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetAllowLegacyUploa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -10694,11 +10694,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAllItemKeyVal return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags(struct w_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, }; @@ -10708,11 +10708,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemKeyValueT return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, .pchValue = pchValue, @@ -10724,11 +10724,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemKeyValueTag( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, .type = type, @@ -10739,11 +10739,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewFile( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo(struct w_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; @@ -10753,11 +10753,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemPreviewVideo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszPreviewFile = pszPreviewFile, @@ -10768,11 +10768,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewFi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszVideoID = pszVideoID, @@ -10783,11 +10783,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UpdateItemPreviewVi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -10796,11 +10796,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemPreview(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate(struct w_iface *_this, uint64_t handle, const char *pchChangeNote) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; @@ -10810,11 +10810,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubmitItemUpdate( return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress(struct w_steam_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress(struct w_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .punBytesProcessed = punBytesProcessed, .punBytesTotal = punBytesTotal, @@ -10824,11 +10824,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; @@ -10837,11 +10837,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -10849,11 +10849,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -10862,11 +10862,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddItemToFavorite return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -10875,11 +10875,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveItemFromFav return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -10887,11 +10887,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SubscribeItem(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -10899,22 +10899,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_UnsubscribeItem(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetNumSubscribedItems, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; @@ -10923,11 +10923,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetSubscribedItem return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -10935,11 +10935,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemState(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punSizeOnDisk = punSizeOnDisk, .pchFolder = pchFolder, @@ -10951,11 +10951,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemInstallInfo( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punBytesDownloaded = punBytesDownloaded, .punBytesTotal = punBytesTotal, @@ -10965,11 +10965,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetItemDownloadInfo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; @@ -10978,11 +10978,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_DownloadItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer(struct w_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, .pszFolder = pszFolder, }; @@ -10992,22 +10992,22 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_BInitWorkshopForGam return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads(struct w_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_SuspendDownloads, ¶ms ); } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -11016,11 +11016,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_StartPlaytimeTrac return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -11029,22 +11029,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrack return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION014_StopPlaytimeTrackingForAllItems, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -11053,11 +11053,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddDependency(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -11066,11 +11066,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -11079,11 +11079,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_AddAppDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -11092,11 +11092,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_RemoveAppDependen return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencies_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -11104,11 +11104,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_GetAppDependencie return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION014_DeleteItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -11204,9 +11204,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION014_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION014(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION014( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION014"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION014"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION014_vtable, 79, "STEAMUGC_INTERFACE_VERSION014"); r->u_iface = u_iface; @@ -11298,11 +11298,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem, 1 DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA, 4) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus, 4) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -11316,11 +11316,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -11332,11 +11332,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, const char *pchCursor) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, const char *pchCursor) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGCRequest_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -11349,11 +11349,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDetailsRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -11362,11 +11362,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateQueryUGCDet return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -11374,11 +11374,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -11388,11 +11388,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCResult(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -11401,11 +11401,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumTag return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .indexTag = indexTag, @@ -11417,11 +11417,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDisplayName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .indexTag = indexTag, @@ -11433,11 +11433,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCTagDispl return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchURL = pchURL, @@ -11448,11 +11448,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCPreviewU return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchMetadata = pchMetadata, @@ -11463,11 +11463,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCMetadata return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren(struct w_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecPublishedFileID = pvecPublishedFileID, @@ -11478,11 +11478,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCChildren return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatistic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .eStatType = eStatType, @@ -11493,11 +11493,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCStatisti return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -11506,11 +11506,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumAdd return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAdditionalPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .previewIndex = previewIndex, @@ -11525,11 +11525,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCAddition return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -11538,11 +11538,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCNumKey return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .keyValueTagIndex = keyValueTagIndex, @@ -11556,11 +11556,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValue return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValueTag_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchKey = pchKey, @@ -11573,11 +11573,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetQueryUGCKeyValue return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -11585,11 +11585,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -11599,11 +11599,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup(struct w_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagGroups = pTagGroups, }; @@ -11612,11 +11612,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredTagGroup return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -11626,11 +11626,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs(struct w_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; @@ -11639,11 +11639,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnOnlyIDs(st return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags(struct w_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; @@ -11652,11 +11652,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnKeyValueTa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -11665,11 +11665,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata(struct w_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; @@ -11678,11 +11678,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnMetadata(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren(struct w_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; @@ -11691,11 +11691,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnChildren(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews(struct w_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; @@ -11704,11 +11704,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnAdditional return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -11717,11 +11717,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -11730,11 +11730,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetReturnPlaytimeSt return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -11744,11 +11744,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetLanguage(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse(struct w_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -11757,11 +11757,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowCachedRespo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -11771,11 +11771,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -11784,11 +11784,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -11798,11 +11798,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -11811,11 +11811,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetRankedByTrendDay return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pKey = pKey, .pValue = pValue, @@ -11827,11 +11827,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddRequiredKeyValue return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -11840,11 +11840,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RequestUGCDetails return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem(struct w_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; @@ -11853,11 +11853,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_CreateItem(struct return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate(struct w_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; @@ -11866,11 +11866,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartItemUpdate(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle(struct w_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; @@ -11880,11 +11880,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTitle(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription(struct w_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; @@ -11894,11 +11894,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemDescription( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -11908,11 +11908,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemUpdateLangua return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata(struct w_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; @@ -11922,11 +11922,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemMetadata(str return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility(struct w_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; @@ -11935,11 +11935,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemVisibility(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags(struct w_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -11948,11 +11948,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemTags(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent(struct w_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszContentFolder = pszContentFolder, }; @@ -11962,11 +11962,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemContent(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, }; @@ -11976,11 +11976,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetItemPreview(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload(struct w_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUpload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bAllowLegacyUpload = bAllowLegacyUpload, }; @@ -11989,11 +11989,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetAllowLegacyUploa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -12001,11 +12001,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAllItemKeyVal return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags(struct w_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, }; @@ -12015,11 +12015,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemKeyValueT return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, .pchValue = pchValue, @@ -12031,11 +12031,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemKeyValueTag( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, .type = type, @@ -12046,11 +12046,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewFile( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo(struct w_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; @@ -12060,11 +12060,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemPreviewVideo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszPreviewFile = pszPreviewFile, @@ -12075,11 +12075,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewFi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszVideoID = pszVideoID, @@ -12090,11 +12090,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UpdateItemPreviewVi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -12103,11 +12103,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemPreview(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate(struct w_iface *_this, uint64_t handle, const char *pchChangeNote) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; @@ -12117,11 +12117,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubmitItemUpdate( return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress(struct w_steam_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress(struct w_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .punBytesProcessed = punBytesProcessed, .punBytesTotal = punBytesTotal, @@ -12131,11 +12131,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; @@ -12144,11 +12144,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -12156,11 +12156,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -12169,11 +12169,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddItemToFavorite return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -12182,11 +12182,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveItemFromFav return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -12194,11 +12194,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SubscribeItem(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -12206,22 +12206,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_UnsubscribeItem(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetNumSubscribedItems, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; @@ -12230,11 +12230,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetSubscribedItem return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -12242,11 +12242,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemState(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punSizeOnDisk = punSizeOnDisk, .pchFolder = pchFolder, @@ -12258,11 +12258,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemInstallInfo( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punBytesDownloaded = punBytesDownloaded, .punBytesTotal = punBytesTotal, @@ -12272,11 +12272,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetItemDownloadInfo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; @@ -12285,11 +12285,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_DownloadItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer(struct w_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, .pszFolder = pszFolder, }; @@ -12299,22 +12299,22 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_BInitWorkshopForGam return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads(struct w_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_SuspendDownloads, ¶ms ); } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -12323,11 +12323,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_StartPlaytimeTrac return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -12336,22 +12336,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrack return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_StopPlaytimeTrackingForAllItems, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -12360,11 +12360,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddDependency(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -12373,11 +12373,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -12386,11 +12386,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_AddAppDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -12399,11 +12399,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_RemoveAppDependen return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencies_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -12411,11 +12411,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetAppDependencie return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -12423,22 +12423,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_DeleteItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA(struct w_steam_iface *_this) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_ShowWorkshopEULA, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION015_GetWorkshopEULAStatus, ¶ms ); @@ -12538,9 +12538,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION015_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION015(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION015( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION015"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION015"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION015_vtable, 84, "STEAMUGC_INTERFACE_VERSION015"); r->u_iface = u_iface; @@ -12634,11 +12634,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem, 1 DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA, 4) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus, 4) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -12652,11 +12652,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -12668,11 +12668,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, const char *pchCursor) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, const char *pchCursor) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGCRequest_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -12685,11 +12685,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDetailsRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -12698,11 +12698,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateQueryUGCDet return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -12710,11 +12710,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -12724,11 +12724,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCResult(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -12737,11 +12737,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumTag return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .indexTag = indexTag, @@ -12753,11 +12753,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDisplayName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .indexTag = indexTag, @@ -12769,11 +12769,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCTagDispl return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchURL = pchURL, @@ -12784,11 +12784,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCPreviewU return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchMetadata = pchMetadata, @@ -12799,11 +12799,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCMetadata return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren(struct w_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecPublishedFileID = pvecPublishedFileID, @@ -12814,11 +12814,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCChildren return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatistic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .eStatType = eStatType, @@ -12829,11 +12829,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCStatisti return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -12842,11 +12842,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumAdd return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAdditionalPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .previewIndex = previewIndex, @@ -12861,11 +12861,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCAddition return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -12874,11 +12874,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCNumKey return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .keyValueTagIndex = keyValueTagIndex, @@ -12892,11 +12892,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValue return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValueTag_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchKey = pchKey, @@ -12909,11 +12909,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetQueryUGCKeyValue return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -12921,11 +12921,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -12935,11 +12935,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup(struct w_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagGroups = pTagGroups, }; @@ -12948,11 +12948,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredTagGroup return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -12962,11 +12962,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs(struct w_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; @@ -12975,11 +12975,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnOnlyIDs(st return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags(struct w_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; @@ -12988,11 +12988,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnKeyValueTa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -13001,11 +13001,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata(struct w_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; @@ -13014,11 +13014,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnMetadata(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren(struct w_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; @@ -13027,11 +13027,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnChildren(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews(struct w_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; @@ -13040,11 +13040,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnAdditional return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -13053,11 +13053,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -13066,11 +13066,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetReturnPlaytimeSt return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -13080,11 +13080,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetLanguage(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse(struct w_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -13093,11 +13093,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowCachedRespo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -13107,11 +13107,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -13120,11 +13120,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -13134,11 +13134,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -13147,11 +13147,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetRankedByTrendDay return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange(struct w_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateRange_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .rtStart = rtStart, .rtEnd = rtEnd, @@ -13161,11 +13161,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeCreatedDateR return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange(struct w_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateRange_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .rtStart = rtStart, .rtEnd = rtEnd, @@ -13175,11 +13175,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetTimeUpdatedDateR return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pKey = pKey, .pValue = pValue, @@ -13191,11 +13191,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddRequiredKeyValue return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -13204,11 +13204,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RequestUGCDetails return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem(struct w_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; @@ -13217,11 +13217,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_CreateItem(struct return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate(struct w_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; @@ -13230,11 +13230,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartItemUpdate(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle(struct w_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; @@ -13244,11 +13244,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTitle(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription(struct w_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; @@ -13258,11 +13258,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemDescription( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -13272,11 +13272,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemUpdateLangua return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata(struct w_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; @@ -13286,11 +13286,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemMetadata(str return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility(struct w_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; @@ -13299,11 +13299,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemVisibility(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags(struct w_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -13312,11 +13312,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemTags(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent(struct w_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszContentFolder = pszContentFolder, }; @@ -13326,11 +13326,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemContent(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, }; @@ -13340,11 +13340,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetItemPreview(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload(struct w_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUpload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bAllowLegacyUpload = bAllowLegacyUpload, }; @@ -13353,11 +13353,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetAllowLegacyUploa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -13365,11 +13365,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAllItemKeyVal return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags(struct w_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, }; @@ -13379,11 +13379,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemKeyValueT return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, .pchValue = pchValue, @@ -13395,11 +13395,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemKeyValueTag( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, .type = type, @@ -13410,11 +13410,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewFile( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo(struct w_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; @@ -13424,11 +13424,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemPreviewVideo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszPreviewFile = pszPreviewFile, @@ -13439,11 +13439,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewFi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszVideoID = pszVideoID, @@ -13454,11 +13454,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UpdateItemPreviewVi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -13467,11 +13467,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemPreview(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate(struct w_iface *_this, uint64_t handle, const char *pchChangeNote) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; @@ -13481,11 +13481,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubmitItemUpdate( return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress(struct w_steam_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress(struct w_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .punBytesProcessed = punBytesProcessed, .punBytesTotal = punBytesTotal, @@ -13495,11 +13495,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; @@ -13508,11 +13508,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -13520,11 +13520,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -13533,11 +13533,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddItemToFavorite return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -13546,11 +13546,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveItemFromFav return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -13558,11 +13558,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SubscribeItem(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -13570,22 +13570,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_UnsubscribeItem(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetNumSubscribedItems, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; @@ -13594,11 +13594,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetSubscribedItem return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -13606,11 +13606,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemState(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punSizeOnDisk = punSizeOnDisk, .pchFolder = pchFolder, @@ -13622,11 +13622,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemInstallInfo( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punBytesDownloaded = punBytesDownloaded, .punBytesTotal = punBytesTotal, @@ -13636,11 +13636,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetItemDownloadInfo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; @@ -13649,11 +13649,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_DownloadItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer(struct w_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, .pszFolder = pszFolder, }; @@ -13663,22 +13663,22 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_BInitWorkshopForGam return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads(struct w_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_SuspendDownloads, ¶ms ); } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -13687,11 +13687,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_StartPlaytimeTrac return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -13700,22 +13700,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrack return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_StopPlaytimeTrackingForAllItems, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -13724,11 +13724,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddDependency(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -13737,11 +13737,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -13750,11 +13750,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_AddAppDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -13763,11 +13763,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_RemoveAppDependen return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencies_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -13775,11 +13775,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetAppDependencie return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -13787,22 +13787,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_DeleteItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA(struct w_steam_iface *_this) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_ShowWorkshopEULA, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION016_GetWorkshopEULAStatus, ¶ms ); @@ -13904,9 +13904,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION016_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION016(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION016( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION016"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION016"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION016_vtable, 86, "STEAMUGC_INTERFACE_VERSION016"); r->u_iface = u_iface; @@ -14003,11 +14003,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem, 1 DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA, 4) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus, 4) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -14021,11 +14021,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -14037,11 +14037,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, const char *pchCursor) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, const char *pchCursor) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGCRequest_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -14054,11 +14054,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDetailsRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -14067,11 +14067,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateQueryUGCDet return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -14079,11 +14079,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -14093,11 +14093,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCResult(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -14106,11 +14106,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumTag return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .indexTag = indexTag, @@ -14122,11 +14122,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDisplayName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .indexTag = indexTag, @@ -14138,11 +14138,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCTagDispl return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchURL = pchURL, @@ -14153,11 +14153,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCPreviewU return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchMetadata = pchMetadata, @@ -14168,11 +14168,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCMetadata return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren(struct w_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecPublishedFileID = pvecPublishedFileID, @@ -14183,11 +14183,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCChildren return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatistic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .eStatType = eStatType, @@ -14198,11 +14198,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCStatisti return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -14211,11 +14211,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumAdd return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAdditionalPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .previewIndex = previewIndex, @@ -14230,11 +14230,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCAddition return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -14243,11 +14243,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCNumKey return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .keyValueTagIndex = keyValueTagIndex, @@ -14261,11 +14261,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValue return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValueTag_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchKey = pchKey, @@ -14278,11 +14278,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCKeyValue return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t *pvecDescriptors, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t *pvecDescriptors, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCContentDescriptors_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecDescriptors = pvecDescriptors, @@ -14293,11 +14293,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetQueryUGCConten return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -14305,11 +14305,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -14319,11 +14319,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup(struct w_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagGroups = pTagGroups, }; @@ -14332,11 +14332,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredTagGroup return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -14346,11 +14346,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs(struct w_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; @@ -14359,11 +14359,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnOnlyIDs(st return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags(struct w_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; @@ -14372,11 +14372,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnKeyValueTa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -14385,11 +14385,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata(struct w_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; @@ -14398,11 +14398,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnMetadata(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren(struct w_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; @@ -14411,11 +14411,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnChildren(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews(struct w_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; @@ -14424,11 +14424,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnAdditional return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -14437,11 +14437,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -14450,11 +14450,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetReturnPlaytimeSt return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -14464,11 +14464,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetLanguage(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse(struct w_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -14477,11 +14477,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowCachedRespo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -14491,11 +14491,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -14504,11 +14504,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -14518,11 +14518,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -14531,11 +14531,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetRankedByTrendDay return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange(struct w_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateRange_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .rtStart = rtStart, .rtEnd = rtEnd, @@ -14545,11 +14545,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeCreatedDateR return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange(struct w_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateRange_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .rtStart = rtStart, .rtEnd = rtEnd, @@ -14559,11 +14559,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetTimeUpdatedDateR return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pKey = pKey, .pValue = pValue, @@ -14575,11 +14575,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddRequiredKeyValue return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -14588,11 +14588,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RequestUGCDetails return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem(struct w_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; @@ -14601,11 +14601,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_CreateItem(struct return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate(struct w_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; @@ -14614,11 +14614,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartItemUpdate(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle(struct w_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; @@ -14628,11 +14628,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTitle(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription(struct w_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; @@ -14642,11 +14642,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemDescription( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -14656,11 +14656,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemUpdateLangua return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata(struct w_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; @@ -14670,11 +14670,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemMetadata(str return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility(struct w_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; @@ -14683,11 +14683,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemVisibility(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags(struct w_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, }; @@ -14696,11 +14696,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemTags(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent(struct w_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszContentFolder = pszContentFolder, }; @@ -14710,11 +14710,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemContent(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, }; @@ -14724,11 +14724,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetItemPreview(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload(struct w_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUpload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bAllowLegacyUpload = bAllowLegacyUpload, }; @@ -14737,11 +14737,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetAllowLegacyUploa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -14749,11 +14749,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAllItemKeyVal return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags(struct w_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, }; @@ -14763,11 +14763,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemKeyValueT return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, .pchValue = pchValue, @@ -14779,11 +14779,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemKeyValueTag( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, .type = type, @@ -14794,11 +14794,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewFile( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo(struct w_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; @@ -14808,11 +14808,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemPreviewVideo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszPreviewFile = pszPreviewFile, @@ -14823,11 +14823,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewFi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszVideoID = pszVideoID, @@ -14838,11 +14838,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UpdateItemPreviewVi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -14851,11 +14851,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemPreview(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor(struct w_iface *_this, uint64_t handle, uint32_t descid) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescriptor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .descid = descid, }; @@ -14864,11 +14864,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddContentDescripto return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor(struct w_iface *_this, uint64_t handle, uint32_t descid) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescriptor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .descid = descid, }; @@ -14877,11 +14877,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveContentDescri return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate(struct w_iface *_this, uint64_t handle, const char *pchChangeNote) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; @@ -14891,11 +14891,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubmitItemUpdate( return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress(struct w_steam_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress(struct w_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .punBytesProcessed = punBytesProcessed, .punBytesTotal = punBytesTotal, @@ -14905,11 +14905,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; @@ -14918,11 +14918,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -14930,11 +14930,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -14943,11 +14943,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddItemToFavorite return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -14956,11 +14956,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveItemFromFav return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -14968,11 +14968,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SubscribeItem(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -14980,22 +14980,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_UnsubscribeItem(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetNumSubscribedItems, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; @@ -15004,11 +15004,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetSubscribedItem return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -15016,11 +15016,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemState(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punSizeOnDisk = punSizeOnDisk, .pchFolder = pchFolder, @@ -15032,11 +15032,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemInstallInfo( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punBytesDownloaded = punBytesDownloaded, .punBytesTotal = punBytesTotal, @@ -15046,11 +15046,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetItemDownloadInfo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; @@ -15059,11 +15059,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_DownloadItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer(struct w_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, .pszFolder = pszFolder, }; @@ -15073,22 +15073,22 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_BInitWorkshopForGam return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads(struct w_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_SuspendDownloads, ¶ms ); } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -15097,11 +15097,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_StartPlaytimeTrac return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -15110,22 +15110,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrack return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_StopPlaytimeTrackingForAllItems, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -15134,11 +15134,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddDependency(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -15147,11 +15147,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -15160,11 +15160,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_AddAppDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -15173,11 +15173,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_RemoveAppDependen return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencies_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -15185,11 +15185,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetAppDependencie return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -15197,22 +15197,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_DeleteItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA(struct w_steam_iface *_this) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_ShowWorkshopEULA, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION017_GetWorkshopEULAStatus, ¶ms ); @@ -15317,9 +15317,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION017_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION017(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION017( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION017"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION017"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION017_vtable, 89, "STEAMUGC_INTERFACE_VERSION017"); r->u_iface = u_iface; @@ -15417,11 +15417,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopE DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus, 4) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences, 12) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -15435,11 +15435,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -15451,11 +15451,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, const char *pchCursor) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, const char *pchCursor) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGCRequest_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -15468,11 +15468,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDetailsRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -15481,11 +15481,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateQueryUGCDet return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -15493,11 +15493,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_128x *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -15507,11 +15507,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCResult(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -15520,11 +15520,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumTag return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .indexTag = indexTag, @@ -15536,11 +15536,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDisplayName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .indexTag = indexTag, @@ -15552,11 +15552,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCTagDispl return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchURL = pchURL, @@ -15567,11 +15567,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCPreviewU return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchMetadata = pchMetadata, @@ -15582,11 +15582,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCMetadata return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren(struct w_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecPublishedFileID = pvecPublishedFileID, @@ -15597,11 +15597,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCChildren return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatistic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .eStatType = eStatType, @@ -15612,11 +15612,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCStatisti return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -15625,11 +15625,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumAdd return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAdditionalPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .previewIndex = previewIndex, @@ -15644,11 +15644,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCAddition return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -15657,11 +15657,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCNumKey return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .keyValueTagIndex = keyValueTagIndex, @@ -15675,11 +15675,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValue return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValueTag_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchKey = pchKey, @@ -15692,11 +15692,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCKeyValue return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t *pvecDescriptors, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t *pvecDescriptors, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCContentDescriptors_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecDescriptors = pvecDescriptors, @@ -15707,11 +15707,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetQueryUGCConten return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -15719,11 +15719,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -15733,11 +15733,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup(struct w_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagGroups = pTagGroups, }; @@ -15746,11 +15746,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredTagGroup return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -15760,11 +15760,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs(struct w_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; @@ -15773,11 +15773,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnOnlyIDs(st return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags(struct w_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; @@ -15786,11 +15786,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnKeyValueTa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -15799,11 +15799,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata(struct w_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; @@ -15812,11 +15812,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnMetadata(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren(struct w_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; @@ -15825,11 +15825,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnChildren(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews(struct w_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; @@ -15838,11 +15838,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnAdditional return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -15851,11 +15851,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -15864,11 +15864,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetReturnPlaytimeSt return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -15878,11 +15878,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetLanguage(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse(struct w_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -15891,11 +15891,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowCachedRespo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -15905,11 +15905,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -15918,11 +15918,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -15932,11 +15932,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -15945,11 +15945,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetRankedByTrendDay return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange(struct w_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateRange_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .rtStart = rtStart, .rtEnd = rtEnd, @@ -15959,11 +15959,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeCreatedDateR return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange(struct w_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateRange_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .rtStart = rtStart, .rtEnd = rtEnd, @@ -15973,11 +15973,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetTimeUpdatedDateR return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pKey = pKey, .pValue = pValue, @@ -15989,11 +15989,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddRequiredKeyValue return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -16002,11 +16002,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RequestUGCDetails return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem(struct w_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; @@ -16015,11 +16015,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_CreateItem(struct return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate(struct w_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; @@ -16028,11 +16028,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartItemUpdate(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle(struct w_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; @@ -16042,11 +16042,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTitle(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription(struct w_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; @@ -16056,11 +16056,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemDescription( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -16070,11 +16070,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemUpdateLangua return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata(struct w_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; @@ -16084,11 +16084,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemMetadata(str return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility(struct w_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; @@ -16097,11 +16097,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemVisibility(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags, int8_t bAllowAdminTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags(struct w_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags, int8_t bAllowAdminTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, .bAllowAdminTags = bAllowAdminTags, @@ -16111,11 +16111,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemTags(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent(struct w_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszContentFolder = pszContentFolder, }; @@ -16125,11 +16125,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemContent(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, }; @@ -16139,11 +16139,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetItemPreview(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload(struct w_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUpload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bAllowLegacyUpload = bAllowLegacyUpload, }; @@ -16152,11 +16152,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetAllowLegacyUploa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -16164,11 +16164,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAllItemKeyVal return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags(struct w_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, }; @@ -16178,11 +16178,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemKeyValueT return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, .pchValue = pchValue, @@ -16194,11 +16194,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemKeyValueTag( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, .type = type, @@ -16209,11 +16209,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewFile( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo(struct w_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; @@ -16223,11 +16223,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemPreviewVideo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszPreviewFile = pszPreviewFile, @@ -16238,11 +16238,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewFi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszVideoID = pszVideoID, @@ -16253,11 +16253,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UpdateItemPreviewVi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -16266,11 +16266,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemPreview(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor(struct w_iface *_this, uint64_t handle, uint32_t descid) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescriptor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .descid = descid, }; @@ -16279,11 +16279,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddContentDescripto return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor(struct w_iface *_this, uint64_t handle, uint32_t descid) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescriptor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .descid = descid, }; @@ -16292,11 +16292,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveContentDescri return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate(struct w_iface *_this, uint64_t handle, const char *pchChangeNote) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; @@ -16306,11 +16306,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubmitItemUpdate( return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress(struct w_steam_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress(struct w_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .punBytesProcessed = punBytesProcessed, .punBytesTotal = punBytesTotal, @@ -16320,11 +16320,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; @@ -16333,11 +16333,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -16345,11 +16345,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -16358,11 +16358,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddItemToFavorite return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -16371,11 +16371,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveItemFromFav return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -16383,11 +16383,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SubscribeItem(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -16395,22 +16395,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_UnsubscribeItem(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetNumSubscribedItems, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; @@ -16419,11 +16419,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetSubscribedItem return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -16431,11 +16431,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemState(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punSizeOnDisk = punSizeOnDisk, .pchFolder = pchFolder, @@ -16447,11 +16447,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemInstallInfo( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punBytesDownloaded = punBytesDownloaded, .punBytesTotal = punBytesTotal, @@ -16461,11 +16461,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetItemDownloadInfo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; @@ -16474,11 +16474,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_DownloadItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer(struct w_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, .pszFolder = pszFolder, }; @@ -16488,22 +16488,22 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_BInitWorkshopForGam return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads(struct w_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_SuspendDownloads, ¶ms ); } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -16512,11 +16512,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_StartPlaytimeTrac return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -16525,22 +16525,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrack return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_StopPlaytimeTrackingForAllItems, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -16549,11 +16549,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddDependency(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -16562,11 +16562,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -16575,11 +16575,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_AddAppDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -16588,11 +16588,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_RemoveAppDependen return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencies_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -16600,11 +16600,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetAppDependencie return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -16612,33 +16612,33 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_DeleteItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA(struct w_steam_iface *_this) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_ShowWorkshopEULA, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetWorkshopEULAStatus, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences(struct w_steam_iface *_this, uint32_t *pvecDescriptors, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences(struct w_iface *_this, uint32_t *pvecDescriptors, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION018_GetUserContentDescriptorPreferences_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecDescriptors = pvecDescriptors, .cMaxEntries = cMaxEntries, }; @@ -16746,9 +16746,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION018_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION018(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION018( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION018"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION018"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION018_vtable, 90, "STEAMUGC_INTERFACE_VERSION018"); r->u_iface = u_iface; @@ -16850,11 +16850,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION020_ShowWorkshopE DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetWorkshopEULAStatus, 4) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserContentDescriptorPreferences, 12) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -16868,11 +16868,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -16884,11 +16884,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest_2(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, const char *pchCursor) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest_2(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, const char *pchCursor) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGCRequest_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -16901,11 +16901,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUGCDetailsRequest(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUGCDetailsRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -16914,11 +16914,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateQueryUGCDet return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -16926,11 +16926,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_160 *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_160 *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -16940,11 +16940,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCResult(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -16953,11 +16953,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumTag return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .indexTag = indexTag, @@ -16969,11 +16969,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTagDisplayName(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTagDisplayName(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTagDisplayName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .indexTag = indexTag, @@ -16985,11 +16985,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCTagDispl return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCPreviewURL(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCPreviewURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchURL = pchURL, @@ -17000,11 +17000,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCPreviewU return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCMetadata(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchMetadata = pchMetadata, @@ -17015,11 +17015,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCMetadata return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCChildren(struct w_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecPublishedFileID = pvecPublishedFileID, @@ -17030,11 +17030,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCChildren return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCStatistic(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCStatistic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .eStatType = eStatType, @@ -17045,11 +17045,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCStatisti return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumAdditionalPreviews(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -17058,11 +17058,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumAdd return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCAdditionalPreview(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCAdditionalPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .previewIndex = previewIndex, @@ -17077,11 +17077,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCAddition return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumKeyValueTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -17090,11 +17090,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCNumKey return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .keyValueTagIndex = keyValueTagIndex, @@ -17108,11 +17108,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValue return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag_2(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValueTag_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchKey = pchKey, @@ -17125,11 +17125,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCKeyValue return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSupportedGameVersions(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSupportedGameVersions(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSupportedGameVersions_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -17138,11 +17138,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSupportedGa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSupportedGameVersionData(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t versionIndex, char *pchGameBranchMin, char *pchGameBranchMax, uint32_t cchGameBranchSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSupportedGameVersionData(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t versionIndex, char *pchGameBranchMin, char *pchGameBranchMax, uint32_t cchGameBranchSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSupportedGameVersionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .versionIndex = versionIndex, @@ -17155,11 +17155,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSupportedGameVer return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCContentDescriptors(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t *pvecDescriptors, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCContentDescriptors(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t *pvecDescriptors, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCContentDescriptors_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecDescriptors = pvecDescriptors, @@ -17170,11 +17170,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetQueryUGCConten return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -17182,11 +17182,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -17196,11 +17196,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTagGroup(struct w_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTagGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagGroups = pTagGroups, }; @@ -17209,11 +17209,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredTagGroup return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -17223,11 +17223,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnOnlyIDs(struct w_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnOnlyIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; @@ -17236,11 +17236,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnOnlyIDs(st return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnKeyValueTags(struct w_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; @@ -17249,11 +17249,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnKeyValueTa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -17262,11 +17262,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnMetadata(struct w_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; @@ -17275,11 +17275,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnMetadata(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnChildren(struct w_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; @@ -17288,11 +17288,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnChildren(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnAdditionalPreviews(struct w_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; @@ -17301,11 +17301,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnAdditional return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -17314,11 +17314,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnPlaytimeStats(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnPlaytimeStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -17327,11 +17327,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetReturnPlaytimeSt return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -17341,11 +17341,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetLanguage(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowCachedResponse(struct w_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowCachedResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -17354,11 +17354,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowCachedRespo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAdminQuery(struct w_steam_iface *_this, uint64_t handle, int8_t bAdminQuery) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAdminQuery(struct w_iface *_this, uint64_t handle, int8_t bAdminQuery) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAdminQuery_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bAdminQuery = bAdminQuery, }; @@ -17367,11 +17367,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAdminQuery(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -17381,11 +17381,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -17394,11 +17394,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -17408,11 +17408,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -17421,11 +17421,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRankedByTrendDay return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeCreatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeCreatedDateRange(struct w_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeCreatedDateRange_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .rtStart = rtStart, .rtEnd = rtEnd, @@ -17435,11 +17435,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeCreatedDateR return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeUpdatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeUpdatedDateRange(struct w_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeUpdatedDateRange_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .rtStart = rtStart, .rtEnd = rtEnd, @@ -17449,11 +17449,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetTimeUpdatedDateR return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pKey = pKey, .pValue = pValue, @@ -17465,11 +17465,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddRequiredKeyValue return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -17478,11 +17478,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RequestUGCDetails return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateItem(struct w_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; @@ -17491,11 +17491,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_CreateItem(struct return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartItemUpdate(struct w_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; @@ -17504,11 +17504,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartItemUpdate(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTitle(struct w_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; @@ -17518,11 +17518,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTitle(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemDescription(struct w_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; @@ -17532,11 +17532,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemDescription( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemUpdateLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemUpdateLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -17546,11 +17546,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemUpdateLangua return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemMetadata(struct w_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; @@ -17560,11 +17560,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemMetadata(str return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemVisibility(struct w_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; @@ -17573,11 +17573,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemVisibility(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags, int8_t bAllowAdminTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTags(struct w_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags, int8_t bAllowAdminTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, .bAllowAdminTags = bAllowAdminTags, @@ -17587,11 +17587,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemTags(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemContent(struct w_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemContent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszContentFolder = pszContentFolder, }; @@ -17601,11 +17601,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemContent(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemPreview(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, }; @@ -17615,11 +17615,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetItemPreview(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowLegacyUpload(struct w_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowLegacyUpload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bAllowLegacyUpload = bAllowLegacyUpload, }; @@ -17628,11 +17628,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetAllowLegacyUploa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAllItemKeyValueTags(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAllItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -17640,11 +17640,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAllItemKeyVal return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemKeyValueTags(struct w_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, }; @@ -17654,11 +17654,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemKeyValueT return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, .pchValue = pchValue, @@ -17670,11 +17670,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemKeyValueTag( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewFile(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, .type = type, @@ -17685,11 +17685,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewFile( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewVideo(struct w_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; @@ -17699,11 +17699,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemPreviewVideo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewFile(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszPreviewFile = pszPreviewFile, @@ -17714,11 +17714,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewFi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewVideo(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszVideoID = pszVideoID, @@ -17729,11 +17729,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_UpdateItemPreviewVi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemPreview(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -17742,11 +17742,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemPreview(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddContentDescriptor(struct w_iface *_this, uint64_t handle, uint32_t descid) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddContentDescriptor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .descid = descid, }; @@ -17755,11 +17755,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddContentDescripto return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveContentDescriptor(struct w_iface *_this, uint64_t handle, uint32_t descid) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveContentDescriptor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .descid = descid, }; @@ -17768,11 +17768,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveContentDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRequiredGameVersions(struct w_steam_iface *_this, uint64_t handle, const char *pszGameBranchMin, const char *pszGameBranchMax) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRequiredGameVersions(struct w_iface *_this, uint64_t handle, const char *pszGameBranchMin, const char *pszGameBranchMax) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRequiredGameVersions_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszGameBranchMin = pszGameBranchMin, .pszGameBranchMax = pszGameBranchMax, @@ -17784,11 +17784,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetRequiredGameVers return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubmitItemUpdate(struct w_iface *_this, uint64_t handle, const char *pchChangeNote) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubmitItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; @@ -17798,11 +17798,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubmitItemUpdate( return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemUpdateProgress(struct w_steam_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemUpdateProgress(struct w_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemUpdateProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .punBytesProcessed = punBytesProcessed, .punBytesTotal = punBytesTotal, @@ -17812,11 +17812,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; @@ -17825,11 +17825,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -17837,11 +17837,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemToFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemToFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -17850,11 +17850,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddItemToFavorite return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemFromFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemFromFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -17863,11 +17863,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveItemFromFav return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -17875,11 +17875,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SubscribeItem(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_UnsubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_UnsubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -17887,22 +17887,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_UnsubscribeItem(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSubscribedItems(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSubscribedItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetNumSubscribedItems, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSubscribedItems(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSubscribedItems(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, }; @@ -17911,11 +17911,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetSubscribedItem return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemState(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -17923,11 +17923,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemState(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemInstallInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemInstallInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punSizeOnDisk = punSizeOnDisk, .pchFolder = pchFolder, @@ -17939,11 +17939,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemInstallInfo( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemDownloadInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemDownloadInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punBytesDownloaded = punBytesDownloaded, .punBytesTotal = punBytesTotal, @@ -17953,11 +17953,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetItemDownloadInfo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_DownloadItem(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_DownloadItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; @@ -17966,11 +17966,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_DownloadItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_BInitWorkshopForGameServer(struct w_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_BInitWorkshopForGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, .pszFolder = pszFolder, }; @@ -17980,22 +17980,22 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_BInitWorkshopForGam return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_SuspendDownloads(struct w_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SuspendDownloads_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION020_SuspendDownloads, ¶ms ); } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -18004,11 +18004,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_StartPlaytimeTrac return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -18017,22 +18017,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTrack return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTrackingForAllItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTrackingForAllItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION020_StopPlaytimeTrackingForAllItems, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -18041,11 +18041,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddDependency(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -18054,11 +18054,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -18067,11 +18067,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_AddAppDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -18080,11 +18080,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_RemoveAppDependen return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetAppDependencies(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetAppDependencies(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetAppDependencies_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -18092,11 +18092,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetAppDependencie return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_DeleteItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_DeleteItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_DeleteItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -18104,33 +18104,33 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_DeleteItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_ShowWorkshopEULA(struct w_steam_iface *_this) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_ShowWorkshopEULA(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_ShowWorkshopEULA_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION020_ShowWorkshopEULA, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetWorkshopEULAStatus(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetWorkshopEULAStatus(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetWorkshopEULAStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetWorkshopEULAStatus, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserContentDescriptorPreferences(struct w_steam_iface *_this, uint32_t *pvecDescriptors, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserContentDescriptorPreferences(struct w_iface *_this, uint32_t *pvecDescriptors, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION020_GetUserContentDescriptorPreferences_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecDescriptors = pvecDescriptors, .cMaxEntries = cMaxEntries, }; @@ -18242,9 +18242,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION020_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION020(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION020( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION020"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION020"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION020_vtable, 94, "STEAMUGC_INTERFACE_VERSION020"); r->u_iface = u_iface; @@ -18348,11 +18348,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserConten DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemsDisabledLocally, 16) DEFINE_THISCALL_WRAPPER(winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSubscriptionsLoadOrder, 12) -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUserUGCRequest(struct w_steam_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUserUGCRequest(struct w_iface *_this, uint32_t unAccountID, uint32_t eListType, uint32_t eMatchingUGCType, uint32_t eSortOrder, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUserUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unAccountID = unAccountID, .eListType = eListType, .eMatchingUGCType = eMatchingUGCType, @@ -18366,11 +18366,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUserUG return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, uint32_t unPage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -18382,11 +18382,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest_2(struct w_steam_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, const char *pchCursor) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest_2(struct w_iface *_this, uint32_t eQueryType, uint32_t eMatchingeMatchingUGCTypeFileType, uint32_t nCreatorAppID, uint32_t nConsumerAppID, const char *pchCursor) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGCRequest_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eQueryType = eQueryType, .eMatchingeMatchingUGCTypeFileType = eMatchingeMatchingUGCTypeFileType, .nCreatorAppID = nCreatorAppID, @@ -18399,11 +18399,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryAllUGC return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUGCDetailsRequest(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUGCDetailsRequest(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUGCDetailsRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -18412,11 +18412,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateQueryUGCDet return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SendQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SendQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SendQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -18424,11 +18424,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SendQueryUGCReque return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCResult(struct w_steam_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_160 *pDetails) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCResult(struct w_iface *_this, uint64_t handle, uint32_t index, w_SteamUGCDetails_t_160 *pDetails) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pDetails = pDetails, @@ -18438,11 +18438,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCResult(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -18451,11 +18451,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumTag return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .indexTag = indexTag, @@ -18467,11 +18467,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTagDisplayName(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTagDisplayName(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t indexTag, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTagDisplayName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .indexTag = indexTag, @@ -18483,11 +18483,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCTagDispl return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCPreviewURL(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCPreviewURL(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchURL, uint32_t cchURLSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCPreviewURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchURL = pchURL, @@ -18498,11 +18498,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCPreviewU return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCMetadata(struct w_steam_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCMetadata(struct w_iface *_this, uint64_t handle, uint32_t index, char *pchMetadata, uint32_t cchMetadatasize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchMetadata = pchMetadata, @@ -18513,11 +18513,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCMetadata return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCChildren(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCChildren(struct w_iface *_this, uint64_t handle, uint32_t index, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecPublishedFileID = pvecPublishedFileID, @@ -18528,11 +18528,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCChildren return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCStatistic(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCStatistic(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t eStatType, uint64_t *pStatValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCStatistic_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .eStatType = eStatType, @@ -18543,11 +18543,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCStatisti return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumAdditionalPreviews(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -18556,11 +18556,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumAdd return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCAdditionalPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCAdditionalPreview(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t previewIndex, char *pchURLOrVideoID, uint32_t cchURLSize, char *pchOriginalFileName, uint32_t cchOriginalFileNameSize, uint32_t *pPreviewType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCAdditionalPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .previewIndex = previewIndex, @@ -18575,11 +18575,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCAddition return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumKeyValueTags(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumKeyValueTags(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -18588,11 +18588,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCNumKey return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t keyValueTagIndex, char *pchKey, uint32_t cchKeySize, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .keyValueTagIndex = keyValueTagIndex, @@ -18606,11 +18606,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValue return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag_2(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag_2(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pchKey, char *pchValue, uint32_t cchValueSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValueTag_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pchKey = pchKey, @@ -18623,11 +18623,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCKeyValue return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSupportedGameVersions(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSupportedGameVersions(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSupportedGameVersions_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -18636,11 +18636,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSupportedGa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSupportedGameVersionData(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t versionIndex, char *pchGameBranchMin, char *pchGameBranchMax, uint32_t cchGameBranchSize) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSupportedGameVersionData(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t versionIndex, char *pchGameBranchMin, char *pchGameBranchMax, uint32_t cchGameBranchSize) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSupportedGameVersionData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .versionIndex = versionIndex, @@ -18653,11 +18653,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSupportedGameVer return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCContentDescriptors(struct w_steam_iface *_this, uint64_t handle, uint32_t index, uint32_t *pvecDescriptors, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCContentDescriptors(struct w_iface *_this, uint64_t handle, uint32_t index, uint32_t *pvecDescriptors, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCContentDescriptors_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pvecDescriptors = pvecDescriptors, @@ -18668,11 +18668,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetQueryUGCConten return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_ReleaseQueryUGCRequest(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_ReleaseQueryUGCRequest(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_ReleaseQueryUGCRequest_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -18680,11 +18680,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_ReleaseQueryUGCRequ return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -18694,11 +18694,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTagGroup(struct w_steam_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTagGroup(struct w_iface *_this, uint64_t handle, const w_SteamParamStringArray_t *pTagGroups) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTagGroup_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagGroups = pTagGroups, }; @@ -18707,11 +18707,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredTagGroup return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddExcludedTag(struct w_steam_iface *_this, uint64_t handle, const char *pTagName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddExcludedTag(struct w_iface *_this, uint64_t handle, const char *pTagName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddExcludedTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pTagName = pTagName, }; @@ -18721,11 +18721,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddExcludedTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnOnlyIDs(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnOnlyIDs(struct w_iface *_this, uint64_t handle, int8_t bReturnOnlyIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnOnlyIDs_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnOnlyIDs = bReturnOnlyIDs, }; @@ -18734,11 +18734,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnOnlyIDs(st return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnKeyValueTags(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnKeyValueTags(struct w_iface *_this, uint64_t handle, int8_t bReturnKeyValueTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnKeyValueTags = bReturnKeyValueTags, }; @@ -18747,11 +18747,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnKeyValueTa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnLongDescription(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnLongDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnLongDescription(struct w_iface *_this, uint64_t handle, int8_t bReturnLongDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnLongDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnLongDescription = bReturnLongDescription, }; @@ -18760,11 +18760,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnLongDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnMetadata(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnMetadata) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnMetadata(struct w_iface *_this, uint64_t handle, int8_t bReturnMetadata) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnMetadata = bReturnMetadata, }; @@ -18773,11 +18773,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnMetadata(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnChildren(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnChildren) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnChildren(struct w_iface *_this, uint64_t handle, int8_t bReturnChildren) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnChildren_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnChildren = bReturnChildren, }; @@ -18786,11 +18786,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnChildren(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnAdditionalPreviews(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnAdditionalPreviews(struct w_iface *_this, uint64_t handle, int8_t bReturnAdditionalPreviews) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnAdditionalPreviews_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnAdditionalPreviews = bReturnAdditionalPreviews, }; @@ -18799,11 +18799,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnAdditional return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnTotalOnly(struct w_steam_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnTotalOnly(struct w_iface *_this, uint64_t handle, int8_t bReturnTotalOnly) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnTotalOnly_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bReturnTotalOnly = bReturnTotalOnly, }; @@ -18812,11 +18812,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnTotalOnly( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnPlaytimeStats(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnPlaytimeStats(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnPlaytimeStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -18825,11 +18825,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetReturnPlaytimeSt return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -18839,11 +18839,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetLanguage(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowCachedResponse(struct w_steam_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowCachedResponse(struct w_iface *_this, uint64_t handle, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowCachedResponse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -18852,11 +18852,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowCachedRespo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAdminQuery(struct w_steam_iface *_this, uint64_t handle, int8_t bAdminQuery) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAdminQuery(struct w_iface *_this, uint64_t handle, int8_t bAdminQuery) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAdminQuery_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bAdminQuery = bAdminQuery, }; @@ -18865,11 +18865,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAdminQuery(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetCloudFileNameFilter(struct w_steam_iface *_this, uint64_t handle, const char *pMatchCloudFileName) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetCloudFileNameFilter(struct w_iface *_this, uint64_t handle, const char *pMatchCloudFileName) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetCloudFileNameFilter_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pMatchCloudFileName = pMatchCloudFileName, }; @@ -18879,11 +18879,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetCloudFileNameFil return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetMatchAnyTag(struct w_steam_iface *_this, uint64_t handle, int8_t bMatchAnyTag) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetMatchAnyTag(struct w_iface *_this, uint64_t handle, int8_t bMatchAnyTag) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetMatchAnyTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bMatchAnyTag = bMatchAnyTag, }; @@ -18892,11 +18892,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetMatchAnyTag(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSearchText(struct w_steam_iface *_this, uint64_t handle, const char *pSearchText) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSearchText(struct w_iface *_this, uint64_t handle, const char *pSearchText) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSearchText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pSearchText = pSearchText, }; @@ -18906,11 +18906,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSearchText(struc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRankedByTrendDays(struct w_steam_iface *_this, uint64_t handle, uint32_t unDays) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRankedByTrendDays(struct w_iface *_this, uint64_t handle, uint32_t unDays) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRankedByTrendDays_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .unDays = unDays, }; @@ -18919,11 +18919,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRankedByTrendDay return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeCreatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeCreatedDateRange(struct w_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeCreatedDateRange_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .rtStart = rtStart, .rtEnd = rtEnd, @@ -18933,11 +18933,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeCreatedDateR return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeUpdatedDateRange(struct w_steam_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeUpdatedDateRange(struct w_iface *_this, uint64_t handle, uint32_t rtStart, uint32_t rtEnd) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeUpdatedDateRange_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .rtStart = rtStart, .rtEnd = rtEnd, @@ -18947,11 +18947,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetTimeUpdatedDateR return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pKey, const char *pValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pKey, const char *pValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pKey = pKey, .pValue = pValue, @@ -18963,11 +18963,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddRequiredKeyValue return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RequestUGCDetails(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RequestUGCDetails(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t unMaxAgeSeconds) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RequestUGCDetails_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .unMaxAgeSeconds = unMaxAgeSeconds, }; @@ -18976,11 +18976,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RequestUGCDetails return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateItem(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateItem(struct w_iface *_this, uint32_t nConsumerAppId, uint32_t eFileType) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .eFileType = eFileType, }; @@ -18989,11 +18989,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_CreateItem(struct return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartItemUpdate(struct w_steam_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartItemUpdate(struct w_iface *_this, uint32_t nConsumerAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nConsumerAppId = nConsumerAppId, .nPublishedFileID = nPublishedFileID, }; @@ -19002,11 +19002,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartItemUpdate(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTitle(struct w_steam_iface *_this, uint64_t handle, const char *pchTitle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTitle(struct w_iface *_this, uint64_t handle, const char *pchTitle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTitle_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchTitle = pchTitle, }; @@ -19016,11 +19016,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTitle(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemDescription(struct w_steam_iface *_this, uint64_t handle, const char *pchDescription) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemDescription(struct w_iface *_this, uint64_t handle, const char *pchDescription) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemDescription_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchDescription = pchDescription, }; @@ -19030,11 +19030,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemDescription( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemUpdateLanguage(struct w_steam_iface *_this, uint64_t handle, const char *pchLanguage) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemUpdateLanguage(struct w_iface *_this, uint64_t handle, const char *pchLanguage) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemUpdateLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchLanguage = pchLanguage, }; @@ -19044,11 +19044,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemUpdateLangua return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemMetadata(struct w_steam_iface *_this, uint64_t handle, const char *pchMetaData) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemMetadata(struct w_iface *_this, uint64_t handle, const char *pchMetaData) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemMetadata_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchMetaData = pchMetaData, }; @@ -19058,11 +19058,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemMetadata(str return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemVisibility(struct w_steam_iface *_this, uint64_t handle, uint32_t eVisibility) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemVisibility(struct w_iface *_this, uint64_t handle, uint32_t eVisibility) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemVisibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .eVisibility = eVisibility, }; @@ -19071,11 +19071,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemVisibility(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTags(struct w_steam_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags, int8_t bAllowAdminTags) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTags(struct w_iface *_this, uint64_t updateHandle, const w_SteamParamStringArray_t *pTags, int8_t bAllowAdminTags) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .updateHandle = updateHandle, .pTags = pTags, .bAllowAdminTags = bAllowAdminTags, @@ -19085,11 +19085,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemTags(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemContent(struct w_steam_iface *_this, uint64_t handle, const char *pszContentFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemContent(struct w_iface *_this, uint64_t handle, const char *pszContentFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemContent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszContentFolder = pszContentFolder, }; @@ -19099,11 +19099,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemContent(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemPreview(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemPreview(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, }; @@ -19113,11 +19113,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemPreview(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowLegacyUpload(struct w_steam_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowLegacyUpload(struct w_iface *_this, uint64_t handle, int8_t bAllowLegacyUpload) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowLegacyUpload_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .bAllowLegacyUpload = bAllowLegacyUpload, }; @@ -19126,11 +19126,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetAllowLegacyUploa return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAllItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAllItemKeyValueTags(struct w_iface *_this, uint64_t handle) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAllItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, }; TRACE("%p\n", _this); @@ -19138,11 +19138,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAllItemKeyVal return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemKeyValueTags(struct w_steam_iface *_this, uint64_t handle, const char *pchKey) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemKeyValueTags(struct w_iface *_this, uint64_t handle, const char *pchKey) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemKeyValueTags_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, }; @@ -19152,11 +19152,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemKeyValueT return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemKeyValueTag(struct w_steam_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemKeyValueTag(struct w_iface *_this, uint64_t handle, const char *pchKey, const char *pchValue) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemKeyValueTag_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchKey = pchKey, .pchValue = pchValue, @@ -19168,11 +19168,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemKeyValueTag( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewFile(struct w_iface *_this, uint64_t handle, const char *pszPreviewFile, uint32_t type) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszPreviewFile = pszPreviewFile, .type = type, @@ -19183,11 +19183,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewFile( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewVideo(struct w_iface *_this, uint64_t handle, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszVideoID = pszVideoID, }; @@ -19197,11 +19197,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemPreviewVideo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewFile(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewFile(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszPreviewFile) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewFile_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszPreviewFile = pszPreviewFile, @@ -19212,11 +19212,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewFi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewVideo(struct w_steam_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewVideo(struct w_iface *_this, uint64_t handle, uint32_t index, const char *pszVideoID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewVideo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, .pszVideoID = pszVideoID, @@ -19227,11 +19227,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_UpdateItemPreviewVi return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemPreview(struct w_steam_iface *_this, uint64_t handle, uint32_t index) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemPreview(struct w_iface *_this, uint64_t handle, uint32_t index) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemPreview_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .index = index, }; @@ -19240,11 +19240,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemPreview(s return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddContentDescriptor(struct w_iface *_this, uint64_t handle, uint32_t descid) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddContentDescriptor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .descid = descid, }; @@ -19253,11 +19253,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddContentDescripto return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveContentDescriptor(struct w_steam_iface *_this, uint64_t handle, uint32_t descid) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveContentDescriptor(struct w_iface *_this, uint64_t handle, uint32_t descid) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveContentDescriptor_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .descid = descid, }; @@ -19266,11 +19266,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveContentDescri return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRequiredGameVersions(struct w_steam_iface *_this, uint64_t handle, const char *pszGameBranchMin, const char *pszGameBranchMax) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRequiredGameVersions(struct w_iface *_this, uint64_t handle, const char *pszGameBranchMin, const char *pszGameBranchMax) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRequiredGameVersions_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pszGameBranchMin = pszGameBranchMin, .pszGameBranchMax = pszGameBranchMax, @@ -19282,11 +19282,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetRequiredGameVers return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubmitItemUpdate(struct w_steam_iface *_this, uint64_t handle, const char *pchChangeNote) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubmitItemUpdate(struct w_iface *_this, uint64_t handle, const char *pchChangeNote) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubmitItemUpdate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .pchChangeNote = pchChangeNote, }; @@ -19296,11 +19296,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubmitItemUpdate( return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemUpdateProgress(struct w_steam_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemUpdateProgress(struct w_iface *_this, uint64_t handle, uint64_t *punBytesProcessed, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemUpdateProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .handle = handle, .punBytesProcessed = punBytesProcessed, .punBytesTotal = punBytesTotal, @@ -19310,11 +19310,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemUpdateProg return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bVoteUp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bVoteUp = bVoteUp, }; @@ -19323,11 +19323,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserItemVote(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserItemVote(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserItemVote_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -19335,11 +19335,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserItemVote(s return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemToFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemToFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemToFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -19348,11 +19348,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddItemToFavorite return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemFromFavorites(struct w_steam_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemFromFavorites(struct w_iface *_this, uint32_t nAppId, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemFromFavorites_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppId = nAppId, .nPublishedFileID = nPublishedFileID, }; @@ -19361,11 +19361,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveItemFromFav return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -19373,11 +19373,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SubscribeItem(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_UnsubscribeItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_UnsubscribeItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_UnsubscribeItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -19385,11 +19385,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_UnsubscribeItem(s return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSubscribedItems(struct w_steam_iface *_this, int8_t bIncludeLocallyDisabled) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSubscribedItems(struct w_iface *_this, int8_t bIncludeLocallyDisabled) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bIncludeLocallyDisabled = bIncludeLocallyDisabled, }; TRACE("%p\n", _this); @@ -19397,11 +19397,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetNumSubscribedI return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSubscribedItems(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries, int8_t bIncludeLocallyDisabled) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSubscribedItems(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t cMaxEntries, int8_t bIncludeLocallyDisabled) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSubscribedItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .cMaxEntries = cMaxEntries, .bIncludeLocallyDisabled = bIncludeLocallyDisabled, @@ -19411,11 +19411,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetSubscribedItem return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemState(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemState(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -19423,11 +19423,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemState(stru return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemInstallInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemInstallInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punSizeOnDisk, char *pchFolder, uint32_t cchFolderSize, uint32_t *punTimeStamp) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemInstallInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punSizeOnDisk = punSizeOnDisk, .pchFolder = pchFolder, @@ -19439,11 +19439,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemInstallInfo( return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemDownloadInfo(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemDownloadInfo(struct w_iface *_this, uint64_t nPublishedFileID, uint64_t *punBytesDownloaded, uint64_t *punBytesTotal) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemDownloadInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .punBytesDownloaded = punBytesDownloaded, .punBytesTotal = punBytesTotal, @@ -19453,11 +19453,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetItemDownloadInfo return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_DownloadItem(struct w_steam_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_DownloadItem(struct w_iface *_this, uint64_t nPublishedFileID, int8_t bHighPriority) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_DownloadItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .bHighPriority = bHighPriority, }; @@ -19466,11 +19466,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_DownloadItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_BInitWorkshopForGameServer(struct w_steam_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_BInitWorkshopForGameServer(struct w_iface *_this, uint32_t unWorkshopDepotID, const char *pszFolder) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_BInitWorkshopForGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unWorkshopDepotID = unWorkshopDepotID, .pszFolder = pszFolder, }; @@ -19480,22 +19480,22 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_BInitWorkshopForGam return params._ret; } -void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SuspendDownloads(struct w_steam_iface *_this, int8_t bSuspend) +void __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SuspendDownloads(struct w_iface *_this, int8_t bSuspend) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SuspendDownloads_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bSuspend = bSuspend, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SuspendDownloads, ¶ms ); } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -19504,11 +19504,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_StartPlaytimeTrac return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTracking(struct w_steam_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTracking(struct w_iface *_this, uint64_t *pvecPublishedFileID, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTracking_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileID = pvecPublishedFileID, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -19517,22 +19517,22 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTrack return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTrackingForAllItems(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTrackingForAllItems(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTrackingForAllItems_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION021_StopPlaytimeTrackingForAllItems, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -19541,11 +19541,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddDependency(str return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveDependency(struct w_steam_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveDependency(struct w_iface *_this, uint64_t nParentPublishedFileID, uint64_t nChildPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nParentPublishedFileID = nParentPublishedFileID, .nChildPublishedFileID = nChildPublishedFileID, }; @@ -19554,11 +19554,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -19567,11 +19567,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_AddAppDependency( return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAppDependency(struct w_steam_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAppDependency(struct w_iface *_this, uint64_t nPublishedFileID, uint32_t nAppID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAppDependency_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, .nAppID = nAppID, }; @@ -19580,11 +19580,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_RemoveAppDependen return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetAppDependencies(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetAppDependencies(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetAppDependencies_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -19592,11 +19592,11 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetAppDependencie return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_DeleteItem(struct w_steam_iface *_this, uint64_t nPublishedFileID) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_DeleteItem(struct w_iface *_this, uint64_t nPublishedFileID) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_DeleteItem_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPublishedFileID = nPublishedFileID, }; TRACE("%p\n", _this); @@ -19604,33 +19604,33 @@ uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_DeleteItem(struct return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_ShowWorkshopEULA(struct w_steam_iface *_this) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_ShowWorkshopEULA(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_ShowWorkshopEULA_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION021_ShowWorkshopEULA, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetWorkshopEULAStatus(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetWorkshopEULAStatus(struct w_iface *_this) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetWorkshopEULAStatus_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetWorkshopEULAStatus, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserContentDescriptorPreferences(struct w_steam_iface *_this, uint32_t *pvecDescriptors, uint32_t cMaxEntries) +uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserContentDescriptorPreferences(struct w_iface *_this, uint32_t *pvecDescriptors, uint32_t cMaxEntries) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserContentDescriptorPreferences_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecDescriptors = pvecDescriptors, .cMaxEntries = cMaxEntries, }; @@ -19639,11 +19639,11 @@ uint32_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_GetUserContentDes return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemsDisabledLocally(struct w_steam_iface *_this, uint64_t *pvecPublishedFileIDs, uint32_t unNumPublishedFileIDs, int8_t bDisabledLocally) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemsDisabledLocally(struct w_iface *_this, uint64_t *pvecPublishedFileIDs, uint32_t unNumPublishedFileIDs, int8_t bDisabledLocally) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemsDisabledLocally_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileIDs = pvecPublishedFileIDs, .unNumPublishedFileIDs = unNumPublishedFileIDs, .bDisabledLocally = bDisabledLocally, @@ -19653,11 +19653,11 @@ int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetItemsDisabledLoc return params._ret; } -int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSubscriptionsLoadOrder(struct w_steam_iface *_this, uint64_t *pvecPublishedFileIDs, uint32_t unNumPublishedFileIDs) +int8_t __thiscall winISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSubscriptionsLoadOrder(struct w_iface *_this, uint64_t *pvecPublishedFileIDs, uint32_t unNumPublishedFileIDs) { struct ISteamUGC_STEAMUGC_INTERFACE_VERSION021_SetSubscriptionsLoadOrder_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pvecPublishedFileIDs = pvecPublishedFileIDs, .unNumPublishedFileIDs = unNumPublishedFileIDs, }; @@ -19771,9 +19771,9 @@ __ASM_BLOCK_BEGIN(winISteamUGC_STEAMUGC_INTERFACE_VERSION021_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION021(void *u_iface) +struct w_iface *create_winISteamUGC_STEAMUGC_INTERFACE_VERSION021( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUGC_INTERFACE_VERSION021"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUGC_INTERFACE_VERSION021"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUGC_STEAMUGC_INTERFACE_VERSION021_vtable, 96, "STEAMUGC_INTERFACE_VERSION021"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamUnifiedMessages.c b/lsteamclient/winISteamUnifiedMessages.c index 73558dff..8ca85bda 100644 --- a/lsteamclient/winISteamUnifiedMessages.c +++ b/lsteamclient/winISteamUnifiedMessages.c @@ -9,11 +9,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_ DEFINE_THISCALL_WRAPPER(winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod, 12) DEFINE_THISCALL_WRAPPER(winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification, 16) -uint64_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod(struct w_steam_iface *_this, const char *pchServiceMethod, const void *pRequestBuffer, uint32_t unRequestBufferSize, uint64_t unContext) +uint64_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod(struct w_iface *_this, const char *pchServiceMethod, const void *pRequestBuffer, uint32_t unRequestBufferSize, uint64_t unContext) { struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendMethod_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchServiceMethod = pchServiceMethod, .pRequestBuffer = pRequestBuffer, .unRequestBufferSize = unRequestBufferSize, @@ -25,11 +25,11 @@ uint64_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERS return params._ret; } -int8_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo(struct w_steam_iface *_this, uint64_t hHandle, uint32_t *punResponseSize, uint32_t *peResult) +int8_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo(struct w_iface *_this, uint64_t hHandle, uint32_t *punResponseSize, uint32_t *peResult) { struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hHandle = hHandle, .punResponseSize = punResponseSize, .peResult = peResult, @@ -39,11 +39,11 @@ int8_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSIO return params._ret; } -int8_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData(struct w_steam_iface *_this, uint64_t hHandle, void *pResponseBuffer, uint32_t unResponseBufferSize, int8_t bAutoRelease) +int8_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData(struct w_iface *_this, uint64_t hHandle, void *pResponseBuffer, uint32_t unResponseBufferSize, int8_t bAutoRelease) { struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_GetMethodResponseData_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hHandle = hHandle, .pResponseBuffer = pResponseBuffer, .unResponseBufferSize = unResponseBufferSize, @@ -54,11 +54,11 @@ int8_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSIO return params._ret; } -int8_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod(struct w_steam_iface *_this, uint64_t hHandle) +int8_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod(struct w_iface *_this, uint64_t hHandle) { struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_ReleaseMethod_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hHandle = hHandle, }; TRACE("%p\n", _this); @@ -66,11 +66,11 @@ int8_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSIO return params._ret; } -int8_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification(struct w_steam_iface *_this, const char *pchServiceNotification, const void *pNotificationBuffer, uint32_t unNotificationBufferSize) +int8_t __thiscall winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification(struct w_iface *_this, const char *pchServiceNotification, const void *pNotificationBuffer, uint32_t unNotificationBufferSize) { struct ISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_SendNotification_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchServiceNotification = pchServiceNotification, .pNotificationBuffer = pNotificationBuffer, .unNotificationBufferSize = unNotificationBufferSize, @@ -95,9 +95,9 @@ __ASM_BLOCK_BEGIN(winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSIO ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001(void *u_iface) +struct w_iface *create_winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUnifiedMessages_STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001_vtable, 5, "STEAMUNIFIEDMESSAGES_INTERFACE_VERSION001"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamUser.c b/lsteamclient/winISteamUser.c index e9c6f63b..385b2c76 100644 --- a/lsteamclient/winISteamUser.c +++ b/lsteamclient/winISteamUser.c @@ -30,76 +30,76 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser004_SetSelfAsPrimaryChatDestinati DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser004_IsPrimaryChatDestination, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser004_RequestLegacyCDKey, 8) -int32_t __thiscall winISteamUser_SteamUser004_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser004_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser004_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser004_GetHSteamUser, ¶ms ); return params._ret; } -void __thiscall winISteamUser_SteamUser004_LogOn(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamUser_SteamUser004_LogOn(struct w_iface *_this, CSteamID steamID) { struct ISteamUser_SteamUser004_LogOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser004_LogOn, ¶ms ); } -void __thiscall winISteamUser_SteamUser004_LogOff(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser004_LogOff(struct w_iface *_this) { struct ISteamUser_SteamUser004_LogOff_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser004_LogOff, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser004_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser004_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser004_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser004_BLoggedOn, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser004_GetLogonState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUser_SteamUser004_GetLogonState(struct w_iface *_this) { struct ISteamUser_SteamUser004_GetLogonState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser004_GetLogonState, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser004_BConnected(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser004_BConnected(struct w_iface *_this) { struct ISteamUser_SteamUser004_BConnected_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser004_BConnected, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser004_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser004_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser004_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -107,11 +107,11 @@ CSteamID * __thiscall winISteamUser_SteamUser004_GetSteamID(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUser_SteamUser004_IsVACBanned(struct w_steam_iface *_this, int32_t nGameID) +int8_t __thiscall winISteamUser_SteamUser004_IsVACBanned(struct w_iface *_this, int32_t nGameID) { struct ISteamUser_SteamUser004_IsVACBanned_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); @@ -119,11 +119,11 @@ int8_t __thiscall winISteamUser_SteamUser004_IsVACBanned(struct w_steam_iface *_ return params._ret; } -int8_t __thiscall winISteamUser_SteamUser004_RequireShowVACBannedMessage(struct w_steam_iface *_this, int32_t nGameID) +int8_t __thiscall winISteamUser_SteamUser004_RequireShowVACBannedMessage(struct w_iface *_this, int32_t nGameID) { struct ISteamUser_SteamUser004_RequireShowVACBannedMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); @@ -131,22 +131,22 @@ int8_t __thiscall winISteamUser_SteamUser004_RequireShowVACBannedMessage(struct return params._ret; } -void __thiscall winISteamUser_SteamUser004_AcknowledgeVACBanning(struct w_steam_iface *_this, int32_t nGameID) +void __thiscall winISteamUser_SteamUser004_AcknowledgeVACBanning(struct w_iface *_this, int32_t nGameID) { struct ISteamUser_SteamUser004_AcknowledgeVACBanning_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser004_AcknowledgeVACBanning, ¶ms ); } -int32_t __thiscall winISteamUser_SteamUser004_NClientGameIDAdd(struct w_steam_iface *_this, int32_t nGameID) +int32_t __thiscall winISteamUser_SteamUser004_NClientGameIDAdd(struct w_iface *_this, int32_t nGameID) { struct ISteamUser_SteamUser004_NClientGameIDAdd_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); @@ -154,22 +154,22 @@ int32_t __thiscall winISteamUser_SteamUser004_NClientGameIDAdd(struct w_steam_if return params._ret; } -void __thiscall winISteamUser_SteamUser004_RemoveClientGame(struct w_steam_iface *_this, int32_t nClientGameID) +void __thiscall winISteamUser_SteamUser004_RemoveClientGame(struct w_iface *_this, int32_t nClientGameID) { struct ISteamUser_SteamUser004_RemoveClientGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nClientGameID = nClientGameID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser004_RemoveClientGame, ¶ms ); } -void __thiscall winISteamUser_SteamUser004_SetClientGameServer(struct w_steam_iface *_this, int32_t nClientGameID, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser004_SetClientGameServer(struct w_iface *_this, int32_t nClientGameID, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser004_SetClientGameServer_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nClientGameID = nClientGameID, .unIPServer = unIPServer, .usPortServer = usPortServer, @@ -178,11 +178,11 @@ void __thiscall winISteamUser_SteamUser004_SetClientGameServer(struct w_steam_if STEAMCLIENT_CALL( ISteamUser_SteamUser004_SetClientGameServer, ¶ms ); } -void __thiscall winISteamUser_SteamUser004_SetSteam2Ticket(struct w_steam_iface *_this, uint8_t *pubTicket, int32_t cubTicket) +void __thiscall winISteamUser_SteamUser004_SetSteam2Ticket(struct w_iface *_this, uint8_t *pubTicket, int32_t cubTicket) { struct ISteamUser_SteamUser004_SetSteam2Ticket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pubTicket = pubTicket, .cubTicket = cubTicket, }; @@ -190,11 +190,11 @@ void __thiscall winISteamUser_SteamUser004_SetSteam2Ticket(struct w_steam_iface STEAMCLIENT_CALL( ISteamUser_SteamUser004_SetSteam2Ticket, ¶ms ); } -void __thiscall winISteamUser_SteamUser004_AddServerNetAddress(struct w_steam_iface *_this, uint32_t unIP, uint16_t unPort) +void __thiscall winISteamUser_SteamUser004_AddServerNetAddress(struct w_iface *_this, uint32_t unIP, uint16_t unPort) { struct ISteamUser_SteamUser004_AddServerNetAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .unPort = unPort, }; @@ -202,11 +202,11 @@ void __thiscall winISteamUser_SteamUser004_AddServerNetAddress(struct w_steam_if STEAMCLIENT_CALL( ISteamUser_SteamUser004_AddServerNetAddress, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser004_SetEmail(struct w_steam_iface *_this, const char *pchEmail) +int8_t __thiscall winISteamUser_SteamUser004_SetEmail(struct w_iface *_this, const char *pchEmail) { struct ISteamUser_SteamUser004_SetEmail_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchEmail = pchEmail, }; TRACE("%p\n", _this); @@ -215,11 +215,11 @@ int8_t __thiscall winISteamUser_SteamUser004_SetEmail(struct w_steam_iface *_thi return params._ret; } -int32_t __thiscall winISteamUser_SteamUser004_GetSteamGameConnectToken(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob) +int32_t __thiscall winISteamUser_SteamUser004_GetSteamGameConnectToken(struct w_iface *_this, void *pBlob, int32_t cbMaxBlob) { struct ISteamUser_SteamUser004_GetSteamGameConnectToken_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pBlob = pBlob, .cbMaxBlob = cbMaxBlob, }; @@ -228,11 +228,11 @@ int32_t __thiscall winISteamUser_SteamUser004_GetSteamGameConnectToken(struct w_ return params._ret; } -int8_t __thiscall winISteamUser_SteamUser004_SetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUser_SteamUser004_SetRegistryString(struct w_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) { struct ISteamUser_SteamUser004_SetRegistryString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, .pchKey = pchKey, .pchValue = pchValue, @@ -244,11 +244,11 @@ int8_t __thiscall winISteamUser_SteamUser004_SetRegistryString(struct w_steam_if return params._ret; } -int8_t __thiscall winISteamUser_SteamUser004_GetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) +int8_t __thiscall winISteamUser_SteamUser004_GetRegistryString(struct w_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) { struct ISteamUser_SteamUser004_GetRegistryString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, .pchKey = pchKey, .pchValue = pchValue, @@ -260,11 +260,11 @@ int8_t __thiscall winISteamUser_SteamUser004_GetRegistryString(struct w_steam_if return params._ret; } -int8_t __thiscall winISteamUser_SteamUser004_SetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) +int8_t __thiscall winISteamUser_SteamUser004_SetRegistryInt(struct w_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) { struct ISteamUser_SteamUser004_SetRegistryInt_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, .pchKey = pchKey, .iValue = iValue, @@ -275,11 +275,11 @@ int8_t __thiscall winISteamUser_SteamUser004_SetRegistryInt(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUser_SteamUser004_GetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) +int8_t __thiscall winISteamUser_SteamUser004_GetRegistryInt(struct w_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) { struct ISteamUser_SteamUser004_GetRegistryInt_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, .pchKey = pchKey, .piValue = piValue, @@ -290,11 +290,11 @@ int8_t __thiscall winISteamUser_SteamUser004_GetRegistryInt(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser004_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, int32_t nGameAppID, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) +int32_t __thiscall winISteamUser_SteamUser004_InitiateGameConnection(struct w_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, int32_t nGameAppID, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser004_InitiateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pBlob = pBlob, .cbMaxBlob = cbMaxBlob, .steamID = steamID, @@ -308,11 +308,11 @@ int32_t __thiscall winISteamUser_SteamUser004_InitiateGameConnection(struct w_st return params._ret; } -void __thiscall winISteamUser_SteamUser004_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser004_TerminateGameConnection(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser004_TerminateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -320,32 +320,32 @@ void __thiscall winISteamUser_SteamUser004_TerminateGameConnection(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser004_TerminateGameConnection, ¶ms ); } -void __thiscall winISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination(struct w_iface *_this) { struct ISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser004_SetSelfAsPrimaryChatDestination, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser004_IsPrimaryChatDestination(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser004_IsPrimaryChatDestination(struct w_iface *_this) { struct ISteamUser_SteamUser004_IsPrimaryChatDestination_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser004_IsPrimaryChatDestination, ¶ms ); return params._ret; } -void __thiscall winISteamUser_SteamUser004_RequestLegacyCDKey(struct w_steam_iface *_this, uint32_t iAppID) +void __thiscall winISteamUser_SteamUser004_RequestLegacyCDKey(struct w_iface *_this, uint32_t iAppID) { struct ISteamUser_SteamUser004_RequestLegacyCDKey_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iAppID = iAppID, }; TRACE("%p\n", _this); @@ -387,9 +387,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser004_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser004(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser004( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser004"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser004"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser004_vtable, 26, "SteamUser004"); r->u_iface = u_iface; @@ -436,76 +436,76 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser005_SetAccountName, 8) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser005_SetPassword, 8) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser005_SetAccountCreationTime, 8) -int32_t __thiscall winISteamUser_SteamUser005_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser005_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser005_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser005_GetHSteamUser, ¶ms ); return params._ret; } -void __thiscall winISteamUser_SteamUser005_LogOn(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamUser_SteamUser005_LogOn(struct w_iface *_this, CSteamID steamID) { struct ISteamUser_SteamUser005_LogOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser005_LogOn, ¶ms ); } -void __thiscall winISteamUser_SteamUser005_LogOff(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser005_LogOff(struct w_iface *_this) { struct ISteamUser_SteamUser005_LogOff_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser005_LogOff, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser005_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser005_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser005_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser005_BLoggedOn, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser005_GetLogonState(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUser_SteamUser005_GetLogonState(struct w_iface *_this) { struct ISteamUser_SteamUser005_GetLogonState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser005_GetLogonState, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser005_BConnected(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser005_BConnected(struct w_iface *_this) { struct ISteamUser_SteamUser005_BConnected_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser005_BConnected, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser005_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser005_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser005_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -513,11 +513,11 @@ CSteamID * __thiscall winISteamUser_SteamUser005_GetSteamID(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUser_SteamUser005_IsVACBanned(struct w_steam_iface *_this, int32_t nGameID) +int8_t __thiscall winISteamUser_SteamUser005_IsVACBanned(struct w_iface *_this, int32_t nGameID) { struct ISteamUser_SteamUser005_IsVACBanned_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); @@ -525,11 +525,11 @@ int8_t __thiscall winISteamUser_SteamUser005_IsVACBanned(struct w_steam_iface *_ return params._ret; } -int8_t __thiscall winISteamUser_SteamUser005_RequireShowVACBannedMessage(struct w_steam_iface *_this, int32_t nAppID) +int8_t __thiscall winISteamUser_SteamUser005_RequireShowVACBannedMessage(struct w_iface *_this, int32_t nAppID) { struct ISteamUser_SteamUser005_RequireShowVACBannedMessage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); @@ -537,22 +537,22 @@ int8_t __thiscall winISteamUser_SteamUser005_RequireShowVACBannedMessage(struct return params._ret; } -void __thiscall winISteamUser_SteamUser005_AcknowledgeVACBanning(struct w_steam_iface *_this, int32_t nAppID) +void __thiscall winISteamUser_SteamUser005_AcknowledgeVACBanning(struct w_iface *_this, int32_t nAppID) { struct ISteamUser_SteamUser005_AcknowledgeVACBanning_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser005_AcknowledgeVACBanning, ¶ms ); } -void __thiscall winISteamUser_SteamUser005_SetSteam2Ticket(struct w_steam_iface *_this, uint8_t *pubTicket, int32_t cubTicket) +void __thiscall winISteamUser_SteamUser005_SetSteam2Ticket(struct w_iface *_this, uint8_t *pubTicket, int32_t cubTicket) { struct ISteamUser_SteamUser005_SetSteam2Ticket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pubTicket = pubTicket, .cubTicket = cubTicket, }; @@ -560,11 +560,11 @@ void __thiscall winISteamUser_SteamUser005_SetSteam2Ticket(struct w_steam_iface STEAMCLIENT_CALL( ISteamUser_SteamUser005_SetSteam2Ticket, ¶ms ); } -void __thiscall winISteamUser_SteamUser005_AddServerNetAddress(struct w_steam_iface *_this, uint32_t unIP, uint16_t unPort) +void __thiscall winISteamUser_SteamUser005_AddServerNetAddress(struct w_iface *_this, uint32_t unIP, uint16_t unPort) { struct ISteamUser_SteamUser005_AddServerNetAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .unPort = unPort, }; @@ -572,11 +572,11 @@ void __thiscall winISteamUser_SteamUser005_AddServerNetAddress(struct w_steam_if STEAMCLIENT_CALL( ISteamUser_SteamUser005_AddServerNetAddress, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser005_SetEmail(struct w_steam_iface *_this, const char *pchEmail) +int8_t __thiscall winISteamUser_SteamUser005_SetEmail(struct w_iface *_this, const char *pchEmail) { struct ISteamUser_SteamUser005_SetEmail_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchEmail = pchEmail, }; TRACE("%p\n", _this); @@ -585,11 +585,11 @@ int8_t __thiscall winISteamUser_SteamUser005_SetEmail(struct w_steam_iface *_thi return params._ret; } -int8_t __thiscall winISteamUser_SteamUser005_SetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUser_SteamUser005_SetRegistryString(struct w_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) { struct ISteamUser_SteamUser005_SetRegistryString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, .pchKey = pchKey, .pchValue = pchValue, @@ -601,11 +601,11 @@ int8_t __thiscall winISteamUser_SteamUser005_SetRegistryString(struct w_steam_if return params._ret; } -int8_t __thiscall winISteamUser_SteamUser005_GetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) +int8_t __thiscall winISteamUser_SteamUser005_GetRegistryString(struct w_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) { struct ISteamUser_SteamUser005_GetRegistryString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, .pchKey = pchKey, .pchValue = pchValue, @@ -617,11 +617,11 @@ int8_t __thiscall winISteamUser_SteamUser005_GetRegistryString(struct w_steam_if return params._ret; } -int8_t __thiscall winISteamUser_SteamUser005_SetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) +int8_t __thiscall winISteamUser_SteamUser005_SetRegistryInt(struct w_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) { struct ISteamUser_SteamUser005_SetRegistryInt_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, .pchKey = pchKey, .iValue = iValue, @@ -632,11 +632,11 @@ int8_t __thiscall winISteamUser_SteamUser005_SetRegistryInt(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUser_SteamUser005_GetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) +int8_t __thiscall winISteamUser_SteamUser005_GetRegistryInt(struct w_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) { struct ISteamUser_SteamUser005_GetRegistryInt_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, .pchKey = pchKey, .piValue = piValue, @@ -647,11 +647,11 @@ int8_t __thiscall winISteamUser_SteamUser005_GetRegistryInt(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser005_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) +int32_t __thiscall winISteamUser_SteamUser005_InitiateGameConnection(struct w_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser005_InitiateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pBlob = pBlob, .cbMaxBlob = cbMaxBlob, .steamID = steamID, @@ -665,11 +665,11 @@ int32_t __thiscall winISteamUser_SteamUser005_InitiateGameConnection(struct w_st return params._ret; } -void __thiscall winISteamUser_SteamUser005_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser005_TerminateGameConnection(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser005_TerminateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -677,43 +677,43 @@ void __thiscall winISteamUser_SteamUser005_TerminateGameConnection(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser005_TerminateGameConnection, ¶ms ); } -void __thiscall winISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination(struct w_iface *_this) { struct ISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser005_SetSelfAsPrimaryChatDestination, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser005_IsPrimaryChatDestination(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser005_IsPrimaryChatDestination(struct w_iface *_this) { struct ISteamUser_SteamUser005_IsPrimaryChatDestination_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser005_IsPrimaryChatDestination, ¶ms ); return params._ret; } -void __thiscall winISteamUser_SteamUser005_RequestLegacyCDKey(struct w_steam_iface *_this, uint32_t nAppID) +void __thiscall winISteamUser_SteamUser005_RequestLegacyCDKey(struct w_iface *_this, uint32_t nAppID) { struct ISteamUser_SteamUser005_RequestLegacyCDKey_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nAppID = nAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser005_RequestLegacyCDKey, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser005_SendGuestPassByEmail(struct w_steam_iface *_this, const char *pchEmailAccount, uint64_t gidGuestPassID, int8_t bResending) +int8_t __thiscall winISteamUser_SteamUser005_SendGuestPassByEmail(struct w_iface *_this, const char *pchEmailAccount, uint64_t gidGuestPassID, int8_t bResending) { struct ISteamUser_SteamUser005_SendGuestPassByEmail_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchEmailAccount = pchEmailAccount, .gidGuestPassID = gidGuestPassID, .bResending = bResending, @@ -724,11 +724,11 @@ int8_t __thiscall winISteamUser_SteamUser005_SendGuestPassByEmail(struct w_steam return params._ret; } -int8_t __thiscall winISteamUser_SteamUser005_SendGuestPassByAccountID(struct w_steam_iface *_this, uint32_t uAccountID, uint64_t gidGuestPassID, int8_t bResending) +int8_t __thiscall winISteamUser_SteamUser005_SendGuestPassByAccountID(struct w_iface *_this, uint32_t uAccountID, uint64_t gidGuestPassID, int8_t bResending) { struct ISteamUser_SteamUser005_SendGuestPassByAccountID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .uAccountID = uAccountID, .gidGuestPassID = gidGuestPassID, .bResending = bResending, @@ -738,11 +738,11 @@ int8_t __thiscall winISteamUser_SteamUser005_SendGuestPassByAccountID(struct w_s return params._ret; } -int8_t __thiscall winISteamUser_SteamUser005_AckGuestPass(struct w_steam_iface *_this, const char *pchGuestPassCode) +int8_t __thiscall winISteamUser_SteamUser005_AckGuestPass(struct w_iface *_this, const char *pchGuestPassCode) { struct ISteamUser_SteamUser005_AckGuestPass_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGuestPassCode = pchGuestPassCode, }; TRACE("%p\n", _this); @@ -751,11 +751,11 @@ int8_t __thiscall winISteamUser_SteamUser005_AckGuestPass(struct w_steam_iface * return params._ret; } -int8_t __thiscall winISteamUser_SteamUser005_RedeemGuestPass(struct w_steam_iface *_this, const char *pchGuestPassCode) +int8_t __thiscall winISteamUser_SteamUser005_RedeemGuestPass(struct w_iface *_this, const char *pchGuestPassCode) { struct ISteamUser_SteamUser005_RedeemGuestPass_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchGuestPassCode = pchGuestPassCode, }; TRACE("%p\n", _this); @@ -764,44 +764,44 @@ int8_t __thiscall winISteamUser_SteamUser005_RedeemGuestPass(struct w_steam_ifac return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser005_GetGuestPassToGiveCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUser_SteamUser005_GetGuestPassToGiveCount(struct w_iface *_this) { struct ISteamUser_SteamUser005_GetGuestPassToGiveCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser005_GetGuestPassToGiveCount, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemCount(struct w_iface *_this) { struct ISteamUser_SteamUser005_GetGuestPassToRedeemCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser005_GetGuestPassToRedeemCount, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser005_GetGuestPassLastUpdateTime(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUser_SteamUser005_GetGuestPassLastUpdateTime(struct w_iface *_this) { struct ISteamUser_SteamUser005_GetGuestPassLastUpdateTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser005_GetGuestPassLastUpdateTime, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser005_GetGuestPassToGiveInfo(struct w_steam_iface *_this, uint32_t nPassIndex, uint64_t *pgidGuestPassID, uint32_t *pnPackageID, uint32_t *pRTime32Created, uint32_t *pRTime32Expiration, uint32_t *pRTime32Sent, uint32_t *pRTime32Redeemed, char *pchRecipientAddress, int32_t cRecipientAddressSize) +int8_t __thiscall winISteamUser_SteamUser005_GetGuestPassToGiveInfo(struct w_iface *_this, uint32_t nPassIndex, uint64_t *pgidGuestPassID, uint32_t *pnPackageID, uint32_t *pRTime32Created, uint32_t *pRTime32Expiration, uint32_t *pRTime32Sent, uint32_t *pRTime32Redeemed, char *pchRecipientAddress, int32_t cRecipientAddressSize) { struct ISteamUser_SteamUser005_GetGuestPassToGiveInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPassIndex = nPassIndex, .pgidGuestPassID = pgidGuestPassID, .pnPackageID = pnPackageID, @@ -817,11 +817,11 @@ int8_t __thiscall winISteamUser_SteamUser005_GetGuestPassToGiveInfo(struct w_ste return params._ret; } -int8_t __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemInfo(struct w_steam_iface *_this, uint32_t nPassIndex, uint64_t *pgidGuestPassID, uint32_t *pnPackageID, uint32_t *pRTime32Created, uint32_t *pRTime32Expiration, uint32_t *pRTime32Sent, uint32_t *pRTime32Redeemed) +int8_t __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemInfo(struct w_iface *_this, uint32_t nPassIndex, uint64_t *pgidGuestPassID, uint32_t *pnPackageID, uint32_t *pRTime32Created, uint32_t *pRTime32Expiration, uint32_t *pRTime32Sent, uint32_t *pRTime32Redeemed) { struct ISteamUser_SteamUser005_GetGuestPassToRedeemInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPassIndex = nPassIndex, .pgidGuestPassID = pgidGuestPassID, .pnPackageID = pnPackageID, @@ -835,11 +835,11 @@ int8_t __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemInfo(struct w_s return params._ret; } -int8_t __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress(struct w_steam_iface *_this, uint32_t nPassIndex, char *pchSenderAddress, int32_t cSenderAddressSize) +int8_t __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress(struct w_iface *_this, uint32_t nPassIndex, char *pchSenderAddress, int32_t cSenderAddressSize) { struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPassIndex = nPassIndex, .pchSenderAddress = pchSenderAddress, .cSenderAddressSize = cSenderAddressSize, @@ -849,11 +849,11 @@ int8_t __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemSenderAddress(s return params._ret; } -int8_t __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemSenderName(struct w_steam_iface *_this, uint32_t nPassIndex, char *pchSenderName, int32_t cSenderNameSize) +int8_t __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemSenderName(struct w_iface *_this, uint32_t nPassIndex, char *pchSenderName, int32_t cSenderNameSize) { struct ISteamUser_SteamUser005_GetGuestPassToRedeemSenderName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nPassIndex = nPassIndex, .pchSenderName = pchSenderName, .cSenderNameSize = cSenderNameSize, @@ -863,11 +863,11 @@ int8_t __thiscall winISteamUser_SteamUser005_GetGuestPassToRedeemSenderName(stru return params._ret; } -void __thiscall winISteamUser_SteamUser005_AcknowledgeMessageByGID(struct w_steam_iface *_this, const char *pchMessageGID) +void __thiscall winISteamUser_SteamUser005_AcknowledgeMessageByGID(struct w_iface *_this, const char *pchMessageGID) { struct ISteamUser_SteamUser005_AcknowledgeMessageByGID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchMessageGID = pchMessageGID, }; TRACE("%p\n", _this); @@ -875,11 +875,11 @@ void __thiscall winISteamUser_SteamUser005_AcknowledgeMessageByGID(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser005_AcknowledgeMessageByGID, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser005_SetLanguage(struct w_steam_iface *_this, const char *pchLanguage) +int8_t __thiscall winISteamUser_SteamUser005_SetLanguage(struct w_iface *_this, const char *pchLanguage) { struct ISteamUser_SteamUser005_SetLanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLanguage = pchLanguage, }; TRACE("%p\n", _this); @@ -888,11 +888,11 @@ int8_t __thiscall winISteamUser_SteamUser005_SetLanguage(struct w_steam_iface *_ return params._ret; } -void __thiscall winISteamUser_SteamUser005_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser005_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser005_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -902,11 +902,11 @@ void __thiscall winISteamUser_SteamUser005_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser005_TrackAppUsageEvent, ¶ms ); } -void __thiscall winISteamUser_SteamUser005_SetAccountName(struct w_steam_iface *_this, const char *pchAccountName) +void __thiscall winISteamUser_SteamUser005_SetAccountName(struct w_iface *_this, const char *pchAccountName) { struct ISteamUser_SteamUser005_SetAccountName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchAccountName = pchAccountName, }; TRACE("%p\n", _this); @@ -914,11 +914,11 @@ void __thiscall winISteamUser_SteamUser005_SetAccountName(struct w_steam_iface * STEAMCLIENT_CALL( ISteamUser_SteamUser005_SetAccountName, ¶ms ); } -void __thiscall winISteamUser_SteamUser005_SetPassword(struct w_steam_iface *_this, const char *pchPassword) +void __thiscall winISteamUser_SteamUser005_SetPassword(struct w_iface *_this, const char *pchPassword) { struct ISteamUser_SteamUser005_SetPassword_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchPassword = pchPassword, }; TRACE("%p\n", _this); @@ -926,11 +926,11 @@ void __thiscall winISteamUser_SteamUser005_SetPassword(struct w_steam_iface *_th STEAMCLIENT_CALL( ISteamUser_SteamUser005_SetPassword, ¶ms ); } -void __thiscall winISteamUser_SteamUser005_SetAccountCreationTime(struct w_steam_iface *_this, uint32_t rt) +void __thiscall winISteamUser_SteamUser005_SetAccountCreationTime(struct w_iface *_this, uint32_t rt) { struct ISteamUser_SteamUser005_SetAccountCreationTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .rt = rt, }; TRACE("%p\n", _this); @@ -985,9 +985,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser005_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser005(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser005( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser005"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser005"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser005_vtable, 39, "SteamUser005"); r->u_iface = u_iface; @@ -1007,54 +1007,54 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser006_InitiateGameConnection, 40) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser006_TerminateGameConnection, 12) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser006_TrackAppUsageEvent, 20) -int32_t __thiscall winISteamUser_SteamUser006_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser006_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser006_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser006_GetHSteamUser, ¶ms ); return params._ret; } -void __thiscall winISteamUser_SteamUser006_LogOn(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamUser_SteamUser006_LogOn(struct w_iface *_this, CSteamID steamID) { struct ISteamUser_SteamUser006_LogOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser006_LogOn, ¶ms ); } -void __thiscall winISteamUser_SteamUser006_LogOff(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser006_LogOff(struct w_iface *_this) { struct ISteamUser_SteamUser006_LogOff_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser006_LogOff, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser006_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser006_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser006_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser006_BLoggedOn, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser006_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser006_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser006_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -1062,11 +1062,11 @@ CSteamID * __thiscall winISteamUser_SteamUser006_GetSteamID(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUser_SteamUser006_SetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUser_SteamUser006_SetRegistryString(struct w_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) { struct ISteamUser_SteamUser006_SetRegistryString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, .pchKey = pchKey, .pchValue = pchValue, @@ -1078,11 +1078,11 @@ int8_t __thiscall winISteamUser_SteamUser006_SetRegistryString(struct w_steam_if return params._ret; } -int8_t __thiscall winISteamUser_SteamUser006_GetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) +int8_t __thiscall winISteamUser_SteamUser006_GetRegistryString(struct w_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) { struct ISteamUser_SteamUser006_GetRegistryString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, .pchKey = pchKey, .pchValue = pchValue, @@ -1094,11 +1094,11 @@ int8_t __thiscall winISteamUser_SteamUser006_GetRegistryString(struct w_steam_if return params._ret; } -int8_t __thiscall winISteamUser_SteamUser006_SetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) +int8_t __thiscall winISteamUser_SteamUser006_SetRegistryInt(struct w_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) { struct ISteamUser_SteamUser006_SetRegistryInt_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, .pchKey = pchKey, .iValue = iValue, @@ -1109,11 +1109,11 @@ int8_t __thiscall winISteamUser_SteamUser006_SetRegistryInt(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUser_SteamUser006_GetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) +int8_t __thiscall winISteamUser_SteamUser006_GetRegistryInt(struct w_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) { struct ISteamUser_SteamUser006_GetRegistryInt_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, .pchKey = pchKey, .piValue = piValue, @@ -1124,11 +1124,11 @@ int8_t __thiscall winISteamUser_SteamUser006_GetRegistryInt(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser006_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) +int32_t __thiscall winISteamUser_SteamUser006_InitiateGameConnection(struct w_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser006_InitiateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pBlob = pBlob, .cbMaxBlob = cbMaxBlob, .steamID = steamID, @@ -1142,11 +1142,11 @@ int32_t __thiscall winISteamUser_SteamUser006_InitiateGameConnection(struct w_st return params._ret; } -void __thiscall winISteamUser_SteamUser006_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser006_TerminateGameConnection(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser006_TerminateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -1154,11 +1154,11 @@ void __thiscall winISteamUser_SteamUser006_TerminateGameConnection(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser006_TerminateGameConnection, ¶ms ); } -void __thiscall winISteamUser_SteamUser006_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser006_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser006_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -1189,9 +1189,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser006_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser006(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser006( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser006"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser006"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser006_vtable, 12, "SteamUser006"); r->u_iface = u_iface; @@ -1212,54 +1212,54 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser007_TerminateGameConnection, 12) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser007_TrackAppUsageEvent, 20) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser007_RefreshSteam2Login, 4) -int32_t __thiscall winISteamUser_SteamUser007_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser007_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser007_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser007_GetHSteamUser, ¶ms ); return params._ret; } -void __thiscall winISteamUser_SteamUser007_LogOn(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamUser_SteamUser007_LogOn(struct w_iface *_this, CSteamID steamID) { struct ISteamUser_SteamUser007_LogOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser007_LogOn, ¶ms ); } -void __thiscall winISteamUser_SteamUser007_LogOff(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser007_LogOff(struct w_iface *_this) { struct ISteamUser_SteamUser007_LogOff_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser007_LogOff, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser007_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser007_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser007_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser007_BLoggedOn, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser007_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser007_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser007_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -1267,11 +1267,11 @@ CSteamID * __thiscall winISteamUser_SteamUser007_GetSteamID(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUser_SteamUser007_SetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) +int8_t __thiscall winISteamUser_SteamUser007_SetRegistryString(struct w_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, const char *pchValue) { struct ISteamUser_SteamUser007_SetRegistryString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, .pchKey = pchKey, .pchValue = pchValue, @@ -1283,11 +1283,11 @@ int8_t __thiscall winISteamUser_SteamUser007_SetRegistryString(struct w_steam_if return params._ret; } -int8_t __thiscall winISteamUser_SteamUser007_GetRegistryString(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) +int8_t __thiscall winISteamUser_SteamUser007_GetRegistryString(struct w_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, char *pchValue, int32_t cbValue) { struct ISteamUser_SteamUser007_GetRegistryString_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, .pchKey = pchKey, .pchValue = pchValue, @@ -1299,11 +1299,11 @@ int8_t __thiscall winISteamUser_SteamUser007_GetRegistryString(struct w_steam_if return params._ret; } -int8_t __thiscall winISteamUser_SteamUser007_SetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) +int8_t __thiscall winISteamUser_SteamUser007_SetRegistryInt(struct w_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t iValue) { struct ISteamUser_SteamUser007_SetRegistryInt_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, .pchKey = pchKey, .iValue = iValue, @@ -1314,11 +1314,11 @@ int8_t __thiscall winISteamUser_SteamUser007_SetRegistryInt(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUser_SteamUser007_GetRegistryInt(struct w_steam_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) +int8_t __thiscall winISteamUser_SteamUser007_GetRegistryInt(struct w_iface *_this, uint32_t eRegistrySubTree, const char *pchKey, int32_t *piValue) { struct ISteamUser_SteamUser007_GetRegistryInt_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eRegistrySubTree = eRegistrySubTree, .pchKey = pchKey, .piValue = piValue, @@ -1329,11 +1329,11 @@ int8_t __thiscall winISteamUser_SteamUser007_GetRegistryInt(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser007_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure, void *pvSteam2GetEncryptionKey, int32_t cbSteam2GetEncryptionKey) +int32_t __thiscall winISteamUser_SteamUser007_InitiateGameConnection(struct w_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure, void *pvSteam2GetEncryptionKey, int32_t cbSteam2GetEncryptionKey) { struct ISteamUser_SteamUser007_InitiateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pBlob = pBlob, .cbMaxBlob = cbMaxBlob, .steamID = steamID, @@ -1349,11 +1349,11 @@ int32_t __thiscall winISteamUser_SteamUser007_InitiateGameConnection(struct w_st return params._ret; } -void __thiscall winISteamUser_SteamUser007_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser007_TerminateGameConnection(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser007_TerminateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -1361,11 +1361,11 @@ void __thiscall winISteamUser_SteamUser007_TerminateGameConnection(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser007_TerminateGameConnection, ¶ms ); } -void __thiscall winISteamUser_SteamUser007_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser007_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser007_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -1375,11 +1375,11 @@ void __thiscall winISteamUser_SteamUser007_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser007_TrackAppUsageEvent, ¶ms ); } -void __thiscall winISteamUser_SteamUser007_RefreshSteam2Login(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser007_RefreshSteam2Login(struct w_iface *_this) { struct ISteamUser_SteamUser007_RefreshSteam2Login_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser007_RefreshSteam2Login, ¶ms ); @@ -1407,9 +1407,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser007_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser007(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser007( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser007"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser007"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser007_vtable, 13, "SteamUser007"); r->u_iface = u_iface; @@ -1424,33 +1424,33 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser008_TerminateGameConnection, 12) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser008_TrackAppUsageEvent, 20) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser008_RefreshSteam2Login, 4) -int32_t __thiscall winISteamUser_SteamUser008_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser008_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser008_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser008_GetHSteamUser, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser008_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser008_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser008_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser008_BLoggedOn, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser008_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser008_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser008_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -1458,11 +1458,11 @@ CSteamID * __thiscall winISteamUser_SteamUser008_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser008_InitiateGameConnection(struct w_steam_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure, void *pvSteam2GetEncryptionKey, int32_t cbSteam2GetEncryptionKey) +int32_t __thiscall winISteamUser_SteamUser008_InitiateGameConnection(struct w_iface *_this, void *pBlob, int32_t cbMaxBlob, CSteamID steamID, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure, void *pvSteam2GetEncryptionKey, int32_t cbSteam2GetEncryptionKey) { struct ISteamUser_SteamUser008_InitiateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pBlob = pBlob, .cbMaxBlob = cbMaxBlob, .steamID = steamID, @@ -1478,11 +1478,11 @@ int32_t __thiscall winISteamUser_SteamUser008_InitiateGameConnection(struct w_st return params._ret; } -void __thiscall winISteamUser_SteamUser008_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser008_TerminateGameConnection(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser008_TerminateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -1490,11 +1490,11 @@ void __thiscall winISteamUser_SteamUser008_TerminateGameConnection(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser008_TerminateGameConnection, ¶ms ); } -void __thiscall winISteamUser_SteamUser008_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser008_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser008_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -1504,11 +1504,11 @@ void __thiscall winISteamUser_SteamUser008_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser008_TrackAppUsageEvent, ¶ms ); } -void __thiscall winISteamUser_SteamUser008_RefreshSteam2Login(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser008_RefreshSteam2Login(struct w_iface *_this) { struct ISteamUser_SteamUser008_RefreshSteam2Login_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser008_RefreshSteam2Login, ¶ms ); @@ -1530,9 +1530,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser008_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser008(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser008( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser008"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser008"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser008_vtable, 7, "SteamUser008"); r->u_iface = u_iface; @@ -1547,33 +1547,33 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser009_TerminateGameConnection, 12) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser009_TrackAppUsageEvent, 20) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser009_RefreshSteam2Login, 4) -int32_t __thiscall winISteamUser_SteamUser009_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser009_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser009_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser009_GetHSteamUser, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser009_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser009_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser009_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser009_BLoggedOn, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser009_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser009_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser009_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -1581,11 +1581,11 @@ CSteamID * __thiscall winISteamUser_SteamUser009_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser009_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) +int32_t __thiscall winISteamUser_SteamUser009_InitiateGameConnection(struct w_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, CGameID gameID, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser009_InitiateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthBlob = pAuthBlob, .cbMaxAuthBlob = cbMaxAuthBlob, .steamIDGameServer = steamIDGameServer, @@ -1599,11 +1599,11 @@ int32_t __thiscall winISteamUser_SteamUser009_InitiateGameConnection(struct w_st return params._ret; } -void __thiscall winISteamUser_SteamUser009_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser009_TerminateGameConnection(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser009_TerminateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -1611,11 +1611,11 @@ void __thiscall winISteamUser_SteamUser009_TerminateGameConnection(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser009_TerminateGameConnection, ¶ms ); } -void __thiscall winISteamUser_SteamUser009_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser009_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser009_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -1625,11 +1625,11 @@ void __thiscall winISteamUser_SteamUser009_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser009_TrackAppUsageEvent, ¶ms ); } -void __thiscall winISteamUser_SteamUser009_RefreshSteam2Login(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser009_RefreshSteam2Login(struct w_iface *_this) { struct ISteamUser_SteamUser009_RefreshSteam2Login_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser009_RefreshSteam2Login, ¶ms ); @@ -1651,9 +1651,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser009_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser009(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser009( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser009"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser009"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser009_vtable, 7, "SteamUser009"); r->u_iface = u_iface; @@ -1667,33 +1667,33 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser010_InitiateGameConnection, 32) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser010_TerminateGameConnection, 12) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser010_TrackAppUsageEvent, 20) -int32_t __thiscall winISteamUser_SteamUser010_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser010_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser010_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser010_GetHSteamUser, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser010_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser010_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser010_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser010_BLoggedOn, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser010_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser010_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser010_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -1701,11 +1701,11 @@ CSteamID * __thiscall winISteamUser_SteamUser010_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser010_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) +int32_t __thiscall winISteamUser_SteamUser010_InitiateGameConnection(struct w_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser010_InitiateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthBlob = pAuthBlob, .cbMaxAuthBlob = cbMaxAuthBlob, .steamIDGameServer = steamIDGameServer, @@ -1718,11 +1718,11 @@ int32_t __thiscall winISteamUser_SteamUser010_InitiateGameConnection(struct w_st return params._ret; } -void __thiscall winISteamUser_SteamUser010_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser010_TerminateGameConnection(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser010_TerminateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -1730,11 +1730,11 @@ void __thiscall winISteamUser_SteamUser010_TerminateGameConnection(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser010_TerminateGameConnection, ¶ms ); } -void __thiscall winISteamUser_SteamUser010_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser010_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser010_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -1759,9 +1759,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser010_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser010(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser010( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser010"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser010"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser010_vtable, 6, "SteamUser010"); r->u_iface = u_iface; @@ -1780,33 +1780,33 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser011_StopVoiceRecording, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser011_GetCompressedVoice, 16) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser011_DecompressVoice, 24) -int32_t __thiscall winISteamUser_SteamUser011_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser011_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser011_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser011_GetHSteamUser, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser011_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser011_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser011_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser011_BLoggedOn, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser011_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser011_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser011_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -1814,11 +1814,11 @@ CSteamID * __thiscall winISteamUser_SteamUser011_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser011_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) +int32_t __thiscall winISteamUser_SteamUser011_InitiateGameConnection(struct w_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser011_InitiateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthBlob = pAuthBlob, .cbMaxAuthBlob = cbMaxAuthBlob, .steamIDGameServer = steamIDGameServer, @@ -1831,11 +1831,11 @@ int32_t __thiscall winISteamUser_SteamUser011_InitiateGameConnection(struct w_st return params._ret; } -void __thiscall winISteamUser_SteamUser011_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser011_TerminateGameConnection(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser011_TerminateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -1843,11 +1843,11 @@ void __thiscall winISteamUser_SteamUser011_TerminateGameConnection(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser011_TerminateGameConnection, ¶ms ); } -void __thiscall winISteamUser_SteamUser011_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser011_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser011_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -1857,11 +1857,11 @@ void __thiscall winISteamUser_SteamUser011_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser011_TrackAppUsageEvent, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser011_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser011_GetUserDataFolder(struct w_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser011_GetUserDataFolder_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; @@ -1870,31 +1870,31 @@ int8_t __thiscall winISteamUser_SteamUser011_GetUserDataFolder(struct w_steam_if return params._ret; } -void __thiscall winISteamUser_SteamUser011_StartVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser011_StartVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser011_StartVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser011_StartVoiceRecording, ¶ms ); } -void __thiscall winISteamUser_SteamUser011_StopVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser011_StopVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser011_StopVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser011_StopVoiceRecording, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser011_GetCompressedVoice(struct w_steam_iface *_this, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten) +uint32_t __thiscall winISteamUser_SteamUser011_GetCompressedVoice(struct w_iface *_this, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten) { struct ISteamUser_SteamUser011_GetCompressedVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDestBuffer = pDestBuffer, .cbDestBufferSize = cbDestBufferSize, .nBytesWritten = nBytesWritten, @@ -1904,11 +1904,11 @@ uint32_t __thiscall winISteamUser_SteamUser011_GetCompressedVoice(struct w_steam return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser011_DecompressVoice(struct w_steam_iface *_this, void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten) +uint32_t __thiscall winISteamUser_SteamUser011_DecompressVoice(struct w_iface *_this, void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten) { struct ISteamUser_SteamUser011_DecompressVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pCompressed = pCompressed, .cbCompressed = cbCompressed, .pDestBuffer = pDestBuffer, @@ -1940,9 +1940,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser011_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser011(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser011( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser011"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser011"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser011_vtable, 11, "SteamUser011"); r->u_iface = u_iface; @@ -1966,33 +1966,33 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser012_EndAuthSession, 12) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser012_CancelAuthTicket, 8) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser012_UserHasLicenseForApp, 16) -int32_t __thiscall winISteamUser_SteamUser012_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser012_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser012_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser012_GetHSteamUser, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser012_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser012_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser012_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser012_BLoggedOn, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser012_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser012_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser012_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -2000,11 +2000,11 @@ CSteamID * __thiscall winISteamUser_SteamUser012_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser012_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) +int32_t __thiscall winISteamUser_SteamUser012_InitiateGameConnection(struct w_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser012_InitiateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthBlob = pAuthBlob, .cbMaxAuthBlob = cbMaxAuthBlob, .steamIDGameServer = steamIDGameServer, @@ -2017,11 +2017,11 @@ int32_t __thiscall winISteamUser_SteamUser012_InitiateGameConnection(struct w_st return params._ret; } -void __thiscall winISteamUser_SteamUser012_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser012_TerminateGameConnection(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser012_TerminateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -2029,11 +2029,11 @@ void __thiscall winISteamUser_SteamUser012_TerminateGameConnection(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser012_TerminateGameConnection, ¶ms ); } -void __thiscall winISteamUser_SteamUser012_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser012_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser012_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -2043,11 +2043,11 @@ void __thiscall winISteamUser_SteamUser012_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser012_TrackAppUsageEvent, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser012_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser012_GetUserDataFolder(struct w_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser012_GetUserDataFolder_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; @@ -2056,31 +2056,31 @@ int8_t __thiscall winISteamUser_SteamUser012_GetUserDataFolder(struct w_steam_if return params._ret; } -void __thiscall winISteamUser_SteamUser012_StartVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser012_StartVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser012_StartVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser012_StartVoiceRecording, ¶ms ); } -void __thiscall winISteamUser_SteamUser012_StopVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser012_StopVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser012_StopVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser012_StopVoiceRecording, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser012_GetCompressedVoice(struct w_steam_iface *_this, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten) +uint32_t __thiscall winISteamUser_SteamUser012_GetCompressedVoice(struct w_iface *_this, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten) { struct ISteamUser_SteamUser012_GetCompressedVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDestBuffer = pDestBuffer, .cbDestBufferSize = cbDestBufferSize, .nBytesWritten = nBytesWritten, @@ -2090,11 +2090,11 @@ uint32_t __thiscall winISteamUser_SteamUser012_GetCompressedVoice(struct w_steam return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser012_DecompressVoice(struct w_steam_iface *_this, void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten) +uint32_t __thiscall winISteamUser_SteamUser012_DecompressVoice(struct w_iface *_this, void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten) { struct ISteamUser_SteamUser012_DecompressVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pCompressed = pCompressed, .cbCompressed = cbCompressed, .pDestBuffer = pDestBuffer, @@ -2106,11 +2106,11 @@ uint32_t __thiscall winISteamUser_SteamUser012_DecompressVoice(struct w_steam_if return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser012_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +uint32_t __thiscall winISteamUser_SteamUser012_GetAuthSessionTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser012_GetAuthSessionTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -2120,11 +2120,11 @@ uint32_t __thiscall winISteamUser_SteamUser012_GetAuthSessionTicket(struct w_ste return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser012_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) +uint32_t __thiscall winISteamUser_SteamUser012_BeginAuthSession(struct w_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { struct ISteamUser_SteamUser012_BeginAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthTicket = pAuthTicket, .cbAuthTicket = cbAuthTicket, .steamID = steamID, @@ -2134,33 +2134,33 @@ uint32_t __thiscall winISteamUser_SteamUser012_BeginAuthSession(struct w_steam_i return params._ret; } -void __thiscall winISteamUser_SteamUser012_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamUser_SteamUser012_EndAuthSession(struct w_iface *_this, CSteamID steamID) { struct ISteamUser_SteamUser012_EndAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser012_EndAuthSession, ¶ms ); } -void __thiscall winISteamUser_SteamUser012_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) +void __thiscall winISteamUser_SteamUser012_CancelAuthTicket(struct w_iface *_this, uint32_t hAuthTicket) { struct ISteamUser_SteamUser012_CancelAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser012_CancelAuthTicket, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser012_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamUser_SteamUser012_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamUser_SteamUser012_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -2194,9 +2194,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser012_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser012(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser012( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser012"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser012"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser012_vtable, 16, "SteamUser012"); r->u_iface = u_iface; @@ -2221,33 +2221,33 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser013_EndAuthSession, 12) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser013_CancelAuthTicket, 8) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser013_UserHasLicenseForApp, 16) -int32_t __thiscall winISteamUser_SteamUser013_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser013_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser013_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser013_GetHSteamUser, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser013_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser013_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser013_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser013_BLoggedOn, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser013_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser013_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser013_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -2255,11 +2255,11 @@ CSteamID * __thiscall winISteamUser_SteamUser013_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser013_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) +int32_t __thiscall winISteamUser_SteamUser013_InitiateGameConnection(struct w_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser013_InitiateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthBlob = pAuthBlob, .cbMaxAuthBlob = cbMaxAuthBlob, .steamIDGameServer = steamIDGameServer, @@ -2272,11 +2272,11 @@ int32_t __thiscall winISteamUser_SteamUser013_InitiateGameConnection(struct w_st return params._ret; } -void __thiscall winISteamUser_SteamUser013_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser013_TerminateGameConnection(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser013_TerminateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -2284,11 +2284,11 @@ void __thiscall winISteamUser_SteamUser013_TerminateGameConnection(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser013_TerminateGameConnection, ¶ms ); } -void __thiscall winISteamUser_SteamUser013_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser013_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser013_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -2298,11 +2298,11 @@ void __thiscall winISteamUser_SteamUser013_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser013_TrackAppUsageEvent, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser013_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser013_GetUserDataFolder(struct w_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser013_GetUserDataFolder_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; @@ -2311,31 +2311,31 @@ int8_t __thiscall winISteamUser_SteamUser013_GetUserDataFolder(struct w_steam_if return params._ret; } -void __thiscall winISteamUser_SteamUser013_StartVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser013_StartVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser013_StartVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser013_StartVoiceRecording, ¶ms ); } -void __thiscall winISteamUser_SteamUser013_StopVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser013_StopVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser013_StopVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser013_StopVoiceRecording, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser013_GetAvailableVoice(struct w_steam_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed) +uint32_t __thiscall winISteamUser_SteamUser013_GetAvailableVoice(struct w_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed) { struct ISteamUser_SteamUser013_GetAvailableVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcbCompressed = pcbCompressed, .pcbUncompressed = pcbUncompressed, }; @@ -2344,11 +2344,11 @@ uint32_t __thiscall winISteamUser_SteamUser013_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser013_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten) +uint32_t __thiscall winISteamUser_SteamUser013_GetVoice(struct w_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten) { struct ISteamUser_SteamUser013_GetVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bWantCompressed = bWantCompressed, .pDestBuffer = pDestBuffer, .cbDestBufferSize = cbDestBufferSize, @@ -2363,11 +2363,11 @@ uint32_t __thiscall winISteamUser_SteamUser013_GetVoice(struct w_steam_iface *_t return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser013_DecompressVoice(struct w_steam_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten) +uint32_t __thiscall winISteamUser_SteamUser013_DecompressVoice(struct w_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten) { struct ISteamUser_SteamUser013_DecompressVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pCompressed = pCompressed, .cbCompressed = cbCompressed, .pDestBuffer = pDestBuffer, @@ -2379,11 +2379,11 @@ uint32_t __thiscall winISteamUser_SteamUser013_DecompressVoice(struct w_steam_if return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser013_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +uint32_t __thiscall winISteamUser_SteamUser013_GetAuthSessionTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser013_GetAuthSessionTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -2393,11 +2393,11 @@ uint32_t __thiscall winISteamUser_SteamUser013_GetAuthSessionTicket(struct w_ste return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser013_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) +uint32_t __thiscall winISteamUser_SteamUser013_BeginAuthSession(struct w_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { struct ISteamUser_SteamUser013_BeginAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthTicket = pAuthTicket, .cbAuthTicket = cbAuthTicket, .steamID = steamID, @@ -2407,33 +2407,33 @@ uint32_t __thiscall winISteamUser_SteamUser013_BeginAuthSession(struct w_steam_i return params._ret; } -void __thiscall winISteamUser_SteamUser013_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamUser_SteamUser013_EndAuthSession(struct w_iface *_this, CSteamID steamID) { struct ISteamUser_SteamUser013_EndAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser013_EndAuthSession, ¶ms ); } -void __thiscall winISteamUser_SteamUser013_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) +void __thiscall winISteamUser_SteamUser013_CancelAuthTicket(struct w_iface *_this, uint32_t hAuthTicket) { struct ISteamUser_SteamUser013_CancelAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser013_CancelAuthTicket, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser013_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamUser_SteamUser013_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamUser_SteamUser013_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -2468,9 +2468,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser013_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser013(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser013( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser013"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser013"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser013_vtable, 17, "SteamUser013"); r->u_iface = u_iface; @@ -2499,33 +2499,33 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser014_AdvertiseGame, 20) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser014_RequestEncryptedAppTicket, 12) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser014_GetEncryptedAppTicket, 16) -int32_t __thiscall winISteamUser_SteamUser014_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser014_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser014_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser014_GetHSteamUser, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser014_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser014_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser014_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser014_BLoggedOn, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser014_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser014_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser014_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -2533,11 +2533,11 @@ CSteamID * __thiscall winISteamUser_SteamUser014_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser014_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) +int32_t __thiscall winISteamUser_SteamUser014_InitiateGameConnection(struct w_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser014_InitiateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthBlob = pAuthBlob, .cbMaxAuthBlob = cbMaxAuthBlob, .steamIDGameServer = steamIDGameServer, @@ -2550,11 +2550,11 @@ int32_t __thiscall winISteamUser_SteamUser014_InitiateGameConnection(struct w_st return params._ret; } -void __thiscall winISteamUser_SteamUser014_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser014_TerminateGameConnection(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser014_TerminateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -2562,11 +2562,11 @@ void __thiscall winISteamUser_SteamUser014_TerminateGameConnection(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser014_TerminateGameConnection, ¶ms ); } -void __thiscall winISteamUser_SteamUser014_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser014_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser014_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -2576,11 +2576,11 @@ void __thiscall winISteamUser_SteamUser014_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser014_TrackAppUsageEvent, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser014_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser014_GetUserDataFolder(struct w_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser014_GetUserDataFolder_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; @@ -2589,31 +2589,31 @@ int8_t __thiscall winISteamUser_SteamUser014_GetUserDataFolder(struct w_steam_if return params._ret; } -void __thiscall winISteamUser_SteamUser014_StartVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser014_StartVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser014_StartVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser014_StartVoiceRecording, ¶ms ); } -void __thiscall winISteamUser_SteamUser014_StopVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser014_StopVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser014_StopVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser014_StopVoiceRecording, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser014_GetAvailableVoice(struct w_steam_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed) +uint32_t __thiscall winISteamUser_SteamUser014_GetAvailableVoice(struct w_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed) { struct ISteamUser_SteamUser014_GetAvailableVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcbCompressed = pcbCompressed, .pcbUncompressed = pcbUncompressed, }; @@ -2622,11 +2622,11 @@ uint32_t __thiscall winISteamUser_SteamUser014_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser014_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten) +uint32_t __thiscall winISteamUser_SteamUser014_GetVoice(struct w_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten) { struct ISteamUser_SteamUser014_GetVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bWantCompressed = bWantCompressed, .pDestBuffer = pDestBuffer, .cbDestBufferSize = cbDestBufferSize, @@ -2641,11 +2641,11 @@ uint32_t __thiscall winISteamUser_SteamUser014_GetVoice(struct w_steam_iface *_t return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser014_DecompressVoice(struct w_steam_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten) +uint32_t __thiscall winISteamUser_SteamUser014_DecompressVoice(struct w_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten) { struct ISteamUser_SteamUser014_DecompressVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pCompressed = pCompressed, .cbCompressed = cbCompressed, .pDestBuffer = pDestBuffer, @@ -2657,11 +2657,11 @@ uint32_t __thiscall winISteamUser_SteamUser014_DecompressVoice(struct w_steam_if return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser014_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +uint32_t __thiscall winISteamUser_SteamUser014_GetAuthSessionTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser014_GetAuthSessionTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -2671,11 +2671,11 @@ uint32_t __thiscall winISteamUser_SteamUser014_GetAuthSessionTicket(struct w_ste return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser014_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) +uint32_t __thiscall winISteamUser_SteamUser014_BeginAuthSession(struct w_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { struct ISteamUser_SteamUser014_BeginAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthTicket = pAuthTicket, .cbAuthTicket = cbAuthTicket, .steamID = steamID, @@ -2685,33 +2685,33 @@ uint32_t __thiscall winISteamUser_SteamUser014_BeginAuthSession(struct w_steam_i return params._ret; } -void __thiscall winISteamUser_SteamUser014_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamUser_SteamUser014_EndAuthSession(struct w_iface *_this, CSteamID steamID) { struct ISteamUser_SteamUser014_EndAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser014_EndAuthSession, ¶ms ); } -void __thiscall winISteamUser_SteamUser014_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) +void __thiscall winISteamUser_SteamUser014_CancelAuthTicket(struct w_iface *_this, uint32_t hAuthTicket) { struct ISteamUser_SteamUser014_CancelAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser014_CancelAuthTicket, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser014_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamUser_SteamUser014_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamUser_SteamUser014_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -2720,22 +2720,22 @@ uint32_t __thiscall winISteamUser_SteamUser014_UserHasLicenseForApp(struct w_ste return params._ret; } -int8_t __thiscall winISteamUser_SteamUser014_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser014_BIsBehindNAT(struct w_iface *_this) { struct ISteamUser_SteamUser014_BIsBehindNAT_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser014_BIsBehindNAT, ¶ms ); return params._ret; } -void __thiscall winISteamUser_SteamUser014_AdvertiseGame(struct w_steam_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser014_AdvertiseGame(struct w_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser014_AdvertiseGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDGameServer = steamIDGameServer, .unIPServer = unIPServer, .usPortServer = usPortServer, @@ -2744,11 +2744,11 @@ void __thiscall winISteamUser_SteamUser014_AdvertiseGame(struct w_steam_iface *_ STEAMCLIENT_CALL( ISteamUser_SteamUser014_AdvertiseGame, ¶ms ); } -uint64_t __thiscall winISteamUser_SteamUser014_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) +uint64_t __thiscall winISteamUser_SteamUser014_RequestEncryptedAppTicket(struct w_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { struct ISteamUser_SteamUser014_RequestEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; @@ -2757,11 +2757,11 @@ uint64_t __thiscall winISteamUser_SteamUser014_RequestEncryptedAppTicket(struct return params._ret; } -int8_t __thiscall winISteamUser_SteamUser014_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser014_GetEncryptedAppTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser014_GetEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -2801,9 +2801,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser014_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser014(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser014( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser014"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser014"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser014_vtable, 21, "SteamUser014"); r->u_iface = u_iface; @@ -2833,33 +2833,33 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser015_AdvertiseGame, 20) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser015_RequestEncryptedAppTicket, 12) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser015_GetEncryptedAppTicket, 16) -int32_t __thiscall winISteamUser_SteamUser015_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser015_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser015_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser015_GetHSteamUser, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser015_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser015_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser015_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser015_BLoggedOn, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser015_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser015_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser015_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -2867,11 +2867,11 @@ CSteamID * __thiscall winISteamUser_SteamUser015_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser015_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) +int32_t __thiscall winISteamUser_SteamUser015_InitiateGameConnection(struct w_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser015_InitiateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthBlob = pAuthBlob, .cbMaxAuthBlob = cbMaxAuthBlob, .steamIDGameServer = steamIDGameServer, @@ -2884,11 +2884,11 @@ int32_t __thiscall winISteamUser_SteamUser015_InitiateGameConnection(struct w_st return params._ret; } -void __thiscall winISteamUser_SteamUser015_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser015_TerminateGameConnection(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser015_TerminateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -2896,11 +2896,11 @@ void __thiscall winISteamUser_SteamUser015_TerminateGameConnection(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser015_TerminateGameConnection, ¶ms ); } -void __thiscall winISteamUser_SteamUser015_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser015_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser015_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -2910,11 +2910,11 @@ void __thiscall winISteamUser_SteamUser015_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser015_TrackAppUsageEvent, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser015_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser015_GetUserDataFolder(struct w_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser015_GetUserDataFolder_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; @@ -2923,31 +2923,31 @@ int8_t __thiscall winISteamUser_SteamUser015_GetUserDataFolder(struct w_steam_if return params._ret; } -void __thiscall winISteamUser_SteamUser015_StartVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser015_StartVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser015_StartVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser015_StartVoiceRecording, ¶ms ); } -void __thiscall winISteamUser_SteamUser015_StopVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser015_StopVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser015_StopVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser015_StopVoiceRecording, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser015_GetAvailableVoice(struct w_steam_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed) +uint32_t __thiscall winISteamUser_SteamUser015_GetAvailableVoice(struct w_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed) { struct ISteamUser_SteamUser015_GetAvailableVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcbCompressed = pcbCompressed, .pcbUncompressed = pcbUncompressed, }; @@ -2956,11 +2956,11 @@ uint32_t __thiscall winISteamUser_SteamUser015_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser015_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten) +uint32_t __thiscall winISteamUser_SteamUser015_GetVoice(struct w_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten) { struct ISteamUser_SteamUser015_GetVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bWantCompressed = bWantCompressed, .pDestBuffer = pDestBuffer, .cbDestBufferSize = cbDestBufferSize, @@ -2975,11 +2975,11 @@ uint32_t __thiscall winISteamUser_SteamUser015_GetVoice(struct w_steam_iface *_t return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser015_DecompressVoice(struct w_steam_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, uint32_t nDesiredSampleRate) +uint32_t __thiscall winISteamUser_SteamUser015_DecompressVoice(struct w_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, uint32_t nDesiredSampleRate) { struct ISteamUser_SteamUser015_DecompressVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pCompressed = pCompressed, .cbCompressed = cbCompressed, .pDestBuffer = pDestBuffer, @@ -2992,22 +2992,22 @@ uint32_t __thiscall winISteamUser_SteamUser015_DecompressVoice(struct w_steam_if return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser015_GetVoiceOptimalSampleRate(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUser_SteamUser015_GetVoiceOptimalSampleRate(struct w_iface *_this) { struct ISteamUser_SteamUser015_GetVoiceOptimalSampleRate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser015_GetVoiceOptimalSampleRate, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser015_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +uint32_t __thiscall winISteamUser_SteamUser015_GetAuthSessionTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser015_GetAuthSessionTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -3017,11 +3017,11 @@ uint32_t __thiscall winISteamUser_SteamUser015_GetAuthSessionTicket(struct w_ste return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser015_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) +uint32_t __thiscall winISteamUser_SteamUser015_BeginAuthSession(struct w_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { struct ISteamUser_SteamUser015_BeginAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthTicket = pAuthTicket, .cbAuthTicket = cbAuthTicket, .steamID = steamID, @@ -3031,33 +3031,33 @@ uint32_t __thiscall winISteamUser_SteamUser015_BeginAuthSession(struct w_steam_i return params._ret; } -void __thiscall winISteamUser_SteamUser015_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamUser_SteamUser015_EndAuthSession(struct w_iface *_this, CSteamID steamID) { struct ISteamUser_SteamUser015_EndAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser015_EndAuthSession, ¶ms ); } -void __thiscall winISteamUser_SteamUser015_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) +void __thiscall winISteamUser_SteamUser015_CancelAuthTicket(struct w_iface *_this, uint32_t hAuthTicket) { struct ISteamUser_SteamUser015_CancelAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser015_CancelAuthTicket, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser015_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamUser_SteamUser015_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamUser_SteamUser015_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -3066,22 +3066,22 @@ uint32_t __thiscall winISteamUser_SteamUser015_UserHasLicenseForApp(struct w_ste return params._ret; } -int8_t __thiscall winISteamUser_SteamUser015_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser015_BIsBehindNAT(struct w_iface *_this) { struct ISteamUser_SteamUser015_BIsBehindNAT_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser015_BIsBehindNAT, ¶ms ); return params._ret; } -void __thiscall winISteamUser_SteamUser015_AdvertiseGame(struct w_steam_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser015_AdvertiseGame(struct w_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser015_AdvertiseGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDGameServer = steamIDGameServer, .unIPServer = unIPServer, .usPortServer = usPortServer, @@ -3090,11 +3090,11 @@ void __thiscall winISteamUser_SteamUser015_AdvertiseGame(struct w_steam_iface *_ STEAMCLIENT_CALL( ISteamUser_SteamUser015_AdvertiseGame, ¶ms ); } -uint64_t __thiscall winISteamUser_SteamUser015_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) +uint64_t __thiscall winISteamUser_SteamUser015_RequestEncryptedAppTicket(struct w_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { struct ISteamUser_SteamUser015_RequestEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; @@ -3103,11 +3103,11 @@ uint64_t __thiscall winISteamUser_SteamUser015_RequestEncryptedAppTicket(struct return params._ret; } -int8_t __thiscall winISteamUser_SteamUser015_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser015_GetEncryptedAppTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser015_GetEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -3148,9 +3148,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser015_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser015(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser015( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser015"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser015"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser015_vtable, 22, "SteamUser015"); r->u_iface = u_iface; @@ -3180,33 +3180,33 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser016_AdvertiseGame, 20) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser016_RequestEncryptedAppTicket, 12) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser016_GetEncryptedAppTicket, 16) -int32_t __thiscall winISteamUser_SteamUser016_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser016_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser016_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser016_GetHSteamUser, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser016_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser016_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser016_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser016_BLoggedOn, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser016_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser016_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser016_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -3214,11 +3214,11 @@ CSteamID * __thiscall winISteamUser_SteamUser016_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser016_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) +int32_t __thiscall winISteamUser_SteamUser016_InitiateGameConnection(struct w_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser016_InitiateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthBlob = pAuthBlob, .cbMaxAuthBlob = cbMaxAuthBlob, .steamIDGameServer = steamIDGameServer, @@ -3231,11 +3231,11 @@ int32_t __thiscall winISteamUser_SteamUser016_InitiateGameConnection(struct w_st return params._ret; } -void __thiscall winISteamUser_SteamUser016_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser016_TerminateGameConnection(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser016_TerminateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -3243,11 +3243,11 @@ void __thiscall winISteamUser_SteamUser016_TerminateGameConnection(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser016_TerminateGameConnection, ¶ms ); } -void __thiscall winISteamUser_SteamUser016_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser016_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser016_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -3257,11 +3257,11 @@ void __thiscall winISteamUser_SteamUser016_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser016_TrackAppUsageEvent, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser016_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser016_GetUserDataFolder(struct w_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser016_GetUserDataFolder_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; @@ -3270,31 +3270,31 @@ int8_t __thiscall winISteamUser_SteamUser016_GetUserDataFolder(struct w_steam_if return params._ret; } -void __thiscall winISteamUser_SteamUser016_StartVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser016_StartVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser016_StartVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser016_StartVoiceRecording, ¶ms ); } -void __thiscall winISteamUser_SteamUser016_StopVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser016_StopVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser016_StopVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser016_StopVoiceRecording, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser016_GetAvailableVoice(struct w_steam_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed, uint32_t nUncompressedVoiceDesiredSampleRate) +uint32_t __thiscall winISteamUser_SteamUser016_GetAvailableVoice(struct w_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed, uint32_t nUncompressedVoiceDesiredSampleRate) { struct ISteamUser_SteamUser016_GetAvailableVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcbCompressed = pcbCompressed, .pcbUncompressed = pcbUncompressed, .nUncompressedVoiceDesiredSampleRate = nUncompressedVoiceDesiredSampleRate, @@ -3304,11 +3304,11 @@ uint32_t __thiscall winISteamUser_SteamUser016_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser016_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten, uint32_t nUncompressedVoiceDesiredSampleRate) +uint32_t __thiscall winISteamUser_SteamUser016_GetVoice(struct w_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten, uint32_t nUncompressedVoiceDesiredSampleRate) { struct ISteamUser_SteamUser016_GetVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bWantCompressed = bWantCompressed, .pDestBuffer = pDestBuffer, .cbDestBufferSize = cbDestBufferSize, @@ -3324,11 +3324,11 @@ uint32_t __thiscall winISteamUser_SteamUser016_GetVoice(struct w_steam_iface *_t return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser016_DecompressVoice(struct w_steam_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, uint32_t nDesiredSampleRate) +uint32_t __thiscall winISteamUser_SteamUser016_DecompressVoice(struct w_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, uint32_t nDesiredSampleRate) { struct ISteamUser_SteamUser016_DecompressVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pCompressed = pCompressed, .cbCompressed = cbCompressed, .pDestBuffer = pDestBuffer, @@ -3341,22 +3341,22 @@ uint32_t __thiscall winISteamUser_SteamUser016_DecompressVoice(struct w_steam_if return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser016_GetVoiceOptimalSampleRate(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUser_SteamUser016_GetVoiceOptimalSampleRate(struct w_iface *_this) { struct ISteamUser_SteamUser016_GetVoiceOptimalSampleRate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser016_GetVoiceOptimalSampleRate, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser016_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +uint32_t __thiscall winISteamUser_SteamUser016_GetAuthSessionTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser016_GetAuthSessionTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -3366,11 +3366,11 @@ uint32_t __thiscall winISteamUser_SteamUser016_GetAuthSessionTicket(struct w_ste return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser016_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) +uint32_t __thiscall winISteamUser_SteamUser016_BeginAuthSession(struct w_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { struct ISteamUser_SteamUser016_BeginAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthTicket = pAuthTicket, .cbAuthTicket = cbAuthTicket, .steamID = steamID, @@ -3380,33 +3380,33 @@ uint32_t __thiscall winISteamUser_SteamUser016_BeginAuthSession(struct w_steam_i return params._ret; } -void __thiscall winISteamUser_SteamUser016_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamUser_SteamUser016_EndAuthSession(struct w_iface *_this, CSteamID steamID) { struct ISteamUser_SteamUser016_EndAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser016_EndAuthSession, ¶ms ); } -void __thiscall winISteamUser_SteamUser016_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) +void __thiscall winISteamUser_SteamUser016_CancelAuthTicket(struct w_iface *_this, uint32_t hAuthTicket) { struct ISteamUser_SteamUser016_CancelAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser016_CancelAuthTicket, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser016_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamUser_SteamUser016_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamUser_SteamUser016_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -3415,22 +3415,22 @@ uint32_t __thiscall winISteamUser_SteamUser016_UserHasLicenseForApp(struct w_ste return params._ret; } -int8_t __thiscall winISteamUser_SteamUser016_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser016_BIsBehindNAT(struct w_iface *_this) { struct ISteamUser_SteamUser016_BIsBehindNAT_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser016_BIsBehindNAT, ¶ms ); return params._ret; } -void __thiscall winISteamUser_SteamUser016_AdvertiseGame(struct w_steam_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser016_AdvertiseGame(struct w_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser016_AdvertiseGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDGameServer = steamIDGameServer, .unIPServer = unIPServer, .usPortServer = usPortServer, @@ -3439,11 +3439,11 @@ void __thiscall winISteamUser_SteamUser016_AdvertiseGame(struct w_steam_iface *_ STEAMCLIENT_CALL( ISteamUser_SteamUser016_AdvertiseGame, ¶ms ); } -uint64_t __thiscall winISteamUser_SteamUser016_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) +uint64_t __thiscall winISteamUser_SteamUser016_RequestEncryptedAppTicket(struct w_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { struct ISteamUser_SteamUser016_RequestEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; @@ -3452,11 +3452,11 @@ uint64_t __thiscall winISteamUser_SteamUser016_RequestEncryptedAppTicket(struct return params._ret; } -int8_t __thiscall winISteamUser_SteamUser016_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser016_GetEncryptedAppTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser016_GetEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -3497,9 +3497,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser016_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser016(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser016( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser016"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser016"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser016_vtable, 22, "SteamUser016"); r->u_iface = u_iface; @@ -3531,33 +3531,33 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser017_GetEncryptedAppTicket, 16) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser017_GetGameBadgeLevel, 12) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser017_GetPlayerSteamLevel, 4) -int32_t __thiscall winISteamUser_SteamUser017_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser017_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser017_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser017_GetHSteamUser, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser017_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser017_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser017_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser017_BLoggedOn, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser017_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser017_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser017_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -3565,11 +3565,11 @@ CSteamID * __thiscall winISteamUser_SteamUser017_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser017_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) +int32_t __thiscall winISteamUser_SteamUser017_InitiateGameConnection(struct w_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser017_InitiateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthBlob = pAuthBlob, .cbMaxAuthBlob = cbMaxAuthBlob, .steamIDGameServer = steamIDGameServer, @@ -3582,11 +3582,11 @@ int32_t __thiscall winISteamUser_SteamUser017_InitiateGameConnection(struct w_st return params._ret; } -void __thiscall winISteamUser_SteamUser017_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser017_TerminateGameConnection(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser017_TerminateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -3594,11 +3594,11 @@ void __thiscall winISteamUser_SteamUser017_TerminateGameConnection(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser017_TerminateGameConnection, ¶ms ); } -void __thiscall winISteamUser_SteamUser017_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser017_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser017_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -3608,11 +3608,11 @@ void __thiscall winISteamUser_SteamUser017_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser017_TrackAppUsageEvent, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser017_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser017_GetUserDataFolder(struct w_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser017_GetUserDataFolder_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; @@ -3621,31 +3621,31 @@ int8_t __thiscall winISteamUser_SteamUser017_GetUserDataFolder(struct w_steam_if return params._ret; } -void __thiscall winISteamUser_SteamUser017_StartVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser017_StartVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser017_StartVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser017_StartVoiceRecording, ¶ms ); } -void __thiscall winISteamUser_SteamUser017_StopVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser017_StopVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser017_StopVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser017_StopVoiceRecording, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser017_GetAvailableVoice(struct w_steam_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed, uint32_t nUncompressedVoiceDesiredSampleRate) +uint32_t __thiscall winISteamUser_SteamUser017_GetAvailableVoice(struct w_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed, uint32_t nUncompressedVoiceDesiredSampleRate) { struct ISteamUser_SteamUser017_GetAvailableVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcbCompressed = pcbCompressed, .pcbUncompressed = pcbUncompressed, .nUncompressedVoiceDesiredSampleRate = nUncompressedVoiceDesiredSampleRate, @@ -3655,11 +3655,11 @@ uint32_t __thiscall winISteamUser_SteamUser017_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser017_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten, uint32_t nUncompressedVoiceDesiredSampleRate) +uint32_t __thiscall winISteamUser_SteamUser017_GetVoice(struct w_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten, uint32_t nUncompressedVoiceDesiredSampleRate) { struct ISteamUser_SteamUser017_GetVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bWantCompressed = bWantCompressed, .pDestBuffer = pDestBuffer, .cbDestBufferSize = cbDestBufferSize, @@ -3675,11 +3675,11 @@ uint32_t __thiscall winISteamUser_SteamUser017_GetVoice(struct w_steam_iface *_t return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser017_DecompressVoice(struct w_steam_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, uint32_t nDesiredSampleRate) +uint32_t __thiscall winISteamUser_SteamUser017_DecompressVoice(struct w_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, uint32_t nDesiredSampleRate) { struct ISteamUser_SteamUser017_DecompressVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pCompressed = pCompressed, .cbCompressed = cbCompressed, .pDestBuffer = pDestBuffer, @@ -3692,22 +3692,22 @@ uint32_t __thiscall winISteamUser_SteamUser017_DecompressVoice(struct w_steam_if return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser017_GetVoiceOptimalSampleRate(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUser_SteamUser017_GetVoiceOptimalSampleRate(struct w_iface *_this) { struct ISteamUser_SteamUser017_GetVoiceOptimalSampleRate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser017_GetVoiceOptimalSampleRate, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser017_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +uint32_t __thiscall winISteamUser_SteamUser017_GetAuthSessionTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser017_GetAuthSessionTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -3717,11 +3717,11 @@ uint32_t __thiscall winISteamUser_SteamUser017_GetAuthSessionTicket(struct w_ste return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser017_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) +uint32_t __thiscall winISteamUser_SteamUser017_BeginAuthSession(struct w_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { struct ISteamUser_SteamUser017_BeginAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthTicket = pAuthTicket, .cbAuthTicket = cbAuthTicket, .steamID = steamID, @@ -3731,33 +3731,33 @@ uint32_t __thiscall winISteamUser_SteamUser017_BeginAuthSession(struct w_steam_i return params._ret; } -void __thiscall winISteamUser_SteamUser017_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamUser_SteamUser017_EndAuthSession(struct w_iface *_this, CSteamID steamID) { struct ISteamUser_SteamUser017_EndAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser017_EndAuthSession, ¶ms ); } -void __thiscall winISteamUser_SteamUser017_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) +void __thiscall winISteamUser_SteamUser017_CancelAuthTicket(struct w_iface *_this, uint32_t hAuthTicket) { struct ISteamUser_SteamUser017_CancelAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser017_CancelAuthTicket, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser017_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamUser_SteamUser017_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamUser_SteamUser017_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -3766,22 +3766,22 @@ uint32_t __thiscall winISteamUser_SteamUser017_UserHasLicenseForApp(struct w_ste return params._ret; } -int8_t __thiscall winISteamUser_SteamUser017_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser017_BIsBehindNAT(struct w_iface *_this) { struct ISteamUser_SteamUser017_BIsBehindNAT_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser017_BIsBehindNAT, ¶ms ); return params._ret; } -void __thiscall winISteamUser_SteamUser017_AdvertiseGame(struct w_steam_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser017_AdvertiseGame(struct w_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser017_AdvertiseGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDGameServer = steamIDGameServer, .unIPServer = unIPServer, .usPortServer = usPortServer, @@ -3790,11 +3790,11 @@ void __thiscall winISteamUser_SteamUser017_AdvertiseGame(struct w_steam_iface *_ STEAMCLIENT_CALL( ISteamUser_SteamUser017_AdvertiseGame, ¶ms ); } -uint64_t __thiscall winISteamUser_SteamUser017_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) +uint64_t __thiscall winISteamUser_SteamUser017_RequestEncryptedAppTicket(struct w_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { struct ISteamUser_SteamUser017_RequestEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; @@ -3803,11 +3803,11 @@ uint64_t __thiscall winISteamUser_SteamUser017_RequestEncryptedAppTicket(struct return params._ret; } -int8_t __thiscall winISteamUser_SteamUser017_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser017_GetEncryptedAppTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser017_GetEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -3817,11 +3817,11 @@ int8_t __thiscall winISteamUser_SteamUser017_GetEncryptedAppTicket(struct w_stea return params._ret; } -int32_t __thiscall winISteamUser_SteamUser017_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, int8_t bFoil) +int32_t __thiscall winISteamUser_SteamUser017_GetGameBadgeLevel(struct w_iface *_this, int32_t nSeries, int8_t bFoil) { struct ISteamUser_SteamUser017_GetGameBadgeLevel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nSeries = nSeries, .bFoil = bFoil, }; @@ -3830,11 +3830,11 @@ int32_t __thiscall winISteamUser_SteamUser017_GetGameBadgeLevel(struct w_steam_i return params._ret; } -int32_t __thiscall winISteamUser_SteamUser017_GetPlayerSteamLevel(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser017_GetPlayerSteamLevel(struct w_iface *_this) { struct ISteamUser_SteamUser017_GetPlayerSteamLevel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser017_GetPlayerSteamLevel, ¶ms ); @@ -3874,9 +3874,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser017_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser017(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser017( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser017"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser017"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser017_vtable, 24, "SteamUser017"); r->u_iface = u_iface; @@ -3909,33 +3909,33 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser018_GetGameBadgeLevel, 12) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser018_GetPlayerSteamLevel, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser018_RequestStoreAuthURL, 8) -int32_t __thiscall winISteamUser_SteamUser018_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser018_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser018_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser018_GetHSteamUser, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser018_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser018_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser018_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser018_BLoggedOn, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser018_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser018_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser018_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -3943,11 +3943,11 @@ CSteamID * __thiscall winISteamUser_SteamUser018_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser018_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) +int32_t __thiscall winISteamUser_SteamUser018_InitiateGameConnection(struct w_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser018_InitiateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthBlob = pAuthBlob, .cbMaxAuthBlob = cbMaxAuthBlob, .steamIDGameServer = steamIDGameServer, @@ -3960,11 +3960,11 @@ int32_t __thiscall winISteamUser_SteamUser018_InitiateGameConnection(struct w_st return params._ret; } -void __thiscall winISteamUser_SteamUser018_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser018_TerminateGameConnection(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser018_TerminateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -3972,11 +3972,11 @@ void __thiscall winISteamUser_SteamUser018_TerminateGameConnection(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser018_TerminateGameConnection, ¶ms ); } -void __thiscall winISteamUser_SteamUser018_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser018_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser018_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -3986,11 +3986,11 @@ void __thiscall winISteamUser_SteamUser018_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser018_TrackAppUsageEvent, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser018_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser018_GetUserDataFolder(struct w_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser018_GetUserDataFolder_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; @@ -3999,31 +3999,31 @@ int8_t __thiscall winISteamUser_SteamUser018_GetUserDataFolder(struct w_steam_if return params._ret; } -void __thiscall winISteamUser_SteamUser018_StartVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser018_StartVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser018_StartVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser018_StartVoiceRecording, ¶ms ); } -void __thiscall winISteamUser_SteamUser018_StopVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser018_StopVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser018_StopVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser018_StopVoiceRecording, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser018_GetAvailableVoice(struct w_steam_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed, uint32_t nUncompressedVoiceDesiredSampleRate) +uint32_t __thiscall winISteamUser_SteamUser018_GetAvailableVoice(struct w_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed, uint32_t nUncompressedVoiceDesiredSampleRate) { struct ISteamUser_SteamUser018_GetAvailableVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcbCompressed = pcbCompressed, .pcbUncompressed = pcbUncompressed, .nUncompressedVoiceDesiredSampleRate = nUncompressedVoiceDesiredSampleRate, @@ -4033,11 +4033,11 @@ uint32_t __thiscall winISteamUser_SteamUser018_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser018_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten, uint32_t nUncompressedVoiceDesiredSampleRate) +uint32_t __thiscall winISteamUser_SteamUser018_GetVoice(struct w_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed, void *pUncompressedDestBuffer, uint32_t cbUncompressedDestBufferSize, uint32_t *nUncompressBytesWritten, uint32_t nUncompressedVoiceDesiredSampleRate) { struct ISteamUser_SteamUser018_GetVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bWantCompressed = bWantCompressed, .pDestBuffer = pDestBuffer, .cbDestBufferSize = cbDestBufferSize, @@ -4053,11 +4053,11 @@ uint32_t __thiscall winISteamUser_SteamUser018_GetVoice(struct w_steam_iface *_t return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser018_DecompressVoice(struct w_steam_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, uint32_t nDesiredSampleRate) +uint32_t __thiscall winISteamUser_SteamUser018_DecompressVoice(struct w_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, uint32_t nDesiredSampleRate) { struct ISteamUser_SteamUser018_DecompressVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pCompressed = pCompressed, .cbCompressed = cbCompressed, .pDestBuffer = pDestBuffer, @@ -4070,22 +4070,22 @@ uint32_t __thiscall winISteamUser_SteamUser018_DecompressVoice(struct w_steam_if return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser018_GetVoiceOptimalSampleRate(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUser_SteamUser018_GetVoiceOptimalSampleRate(struct w_iface *_this) { struct ISteamUser_SteamUser018_GetVoiceOptimalSampleRate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser018_GetVoiceOptimalSampleRate, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser018_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +uint32_t __thiscall winISteamUser_SteamUser018_GetAuthSessionTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser018_GetAuthSessionTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -4095,11 +4095,11 @@ uint32_t __thiscall winISteamUser_SteamUser018_GetAuthSessionTicket(struct w_ste return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser018_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) +uint32_t __thiscall winISteamUser_SteamUser018_BeginAuthSession(struct w_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { struct ISteamUser_SteamUser018_BeginAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthTicket = pAuthTicket, .cbAuthTicket = cbAuthTicket, .steamID = steamID, @@ -4109,33 +4109,33 @@ uint32_t __thiscall winISteamUser_SteamUser018_BeginAuthSession(struct w_steam_i return params._ret; } -void __thiscall winISteamUser_SteamUser018_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamUser_SteamUser018_EndAuthSession(struct w_iface *_this, CSteamID steamID) { struct ISteamUser_SteamUser018_EndAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser018_EndAuthSession, ¶ms ); } -void __thiscall winISteamUser_SteamUser018_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) +void __thiscall winISteamUser_SteamUser018_CancelAuthTicket(struct w_iface *_this, uint32_t hAuthTicket) { struct ISteamUser_SteamUser018_CancelAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser018_CancelAuthTicket, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser018_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamUser_SteamUser018_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamUser_SteamUser018_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -4144,22 +4144,22 @@ uint32_t __thiscall winISteamUser_SteamUser018_UserHasLicenseForApp(struct w_ste return params._ret; } -int8_t __thiscall winISteamUser_SteamUser018_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser018_BIsBehindNAT(struct w_iface *_this) { struct ISteamUser_SteamUser018_BIsBehindNAT_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser018_BIsBehindNAT, ¶ms ); return params._ret; } -void __thiscall winISteamUser_SteamUser018_AdvertiseGame(struct w_steam_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser018_AdvertiseGame(struct w_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser018_AdvertiseGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDGameServer = steamIDGameServer, .unIPServer = unIPServer, .usPortServer = usPortServer, @@ -4168,11 +4168,11 @@ void __thiscall winISteamUser_SteamUser018_AdvertiseGame(struct w_steam_iface *_ STEAMCLIENT_CALL( ISteamUser_SteamUser018_AdvertiseGame, ¶ms ); } -uint64_t __thiscall winISteamUser_SteamUser018_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) +uint64_t __thiscall winISteamUser_SteamUser018_RequestEncryptedAppTicket(struct w_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { struct ISteamUser_SteamUser018_RequestEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; @@ -4181,11 +4181,11 @@ uint64_t __thiscall winISteamUser_SteamUser018_RequestEncryptedAppTicket(struct return params._ret; } -int8_t __thiscall winISteamUser_SteamUser018_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser018_GetEncryptedAppTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser018_GetEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -4195,11 +4195,11 @@ int8_t __thiscall winISteamUser_SteamUser018_GetEncryptedAppTicket(struct w_stea return params._ret; } -int32_t __thiscall winISteamUser_SteamUser018_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, int8_t bFoil) +int32_t __thiscall winISteamUser_SteamUser018_GetGameBadgeLevel(struct w_iface *_this, int32_t nSeries, int8_t bFoil) { struct ISteamUser_SteamUser018_GetGameBadgeLevel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nSeries = nSeries, .bFoil = bFoil, }; @@ -4208,22 +4208,22 @@ int32_t __thiscall winISteamUser_SteamUser018_GetGameBadgeLevel(struct w_steam_i return params._ret; } -int32_t __thiscall winISteamUser_SteamUser018_GetPlayerSteamLevel(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser018_GetPlayerSteamLevel(struct w_iface *_this) { struct ISteamUser_SteamUser018_GetPlayerSteamLevel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser018_GetPlayerSteamLevel, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUser_SteamUser018_RequestStoreAuthURL(struct w_steam_iface *_this, const char *pchRedirectURL) +uint64_t __thiscall winISteamUser_SteamUser018_RequestStoreAuthURL(struct w_iface *_this, const char *pchRedirectURL) { struct ISteamUser_SteamUser018_RequestStoreAuthURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchRedirectURL = pchRedirectURL, }; TRACE("%p\n", _this); @@ -4266,9 +4266,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser018_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser018(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser018( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser018"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser018"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser018_vtable, 25, "SteamUser018"); r->u_iface = u_iface; @@ -4305,33 +4305,33 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser019_BIsTwoFactorEnabled, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser019_BIsPhoneIdentifying, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser019_BIsPhoneRequiringVerification, 4) -int32_t __thiscall winISteamUser_SteamUser019_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser019_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser019_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser019_GetHSteamUser, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser019_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser019_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser019_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser019_BLoggedOn, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser019_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser019_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser019_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -4339,11 +4339,11 @@ CSteamID * __thiscall winISteamUser_SteamUser019_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser019_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) +int32_t __thiscall winISteamUser_SteamUser019_InitiateGameConnection(struct w_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser019_InitiateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthBlob = pAuthBlob, .cbMaxAuthBlob = cbMaxAuthBlob, .steamIDGameServer = steamIDGameServer, @@ -4356,11 +4356,11 @@ int32_t __thiscall winISteamUser_SteamUser019_InitiateGameConnection(struct w_st return params._ret; } -void __thiscall winISteamUser_SteamUser019_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser019_TerminateGameConnection(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser019_TerminateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -4368,11 +4368,11 @@ void __thiscall winISteamUser_SteamUser019_TerminateGameConnection(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser019_TerminateGameConnection, ¶ms ); } -void __thiscall winISteamUser_SteamUser019_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser019_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser019_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -4382,11 +4382,11 @@ void __thiscall winISteamUser_SteamUser019_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser019_TrackAppUsageEvent, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser019_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser019_GetUserDataFolder(struct w_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser019_GetUserDataFolder_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; @@ -4395,31 +4395,31 @@ int8_t __thiscall winISteamUser_SteamUser019_GetUserDataFolder(struct w_steam_if return params._ret; } -void __thiscall winISteamUser_SteamUser019_StartVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser019_StartVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser019_StartVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser019_StartVoiceRecording, ¶ms ); } -void __thiscall winISteamUser_SteamUser019_StopVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser019_StopVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser019_StopVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser019_StopVoiceRecording, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser019_GetAvailableVoice(struct w_steam_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) +uint32_t __thiscall winISteamUser_SteamUser019_GetAvailableVoice(struct w_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { struct ISteamUser_SteamUser019_GetAvailableVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcbCompressed = pcbCompressed, .pcbUncompressed_Deprecated = pcbUncompressed_Deprecated, .nUncompressedVoiceDesiredSampleRate_Deprecated = nUncompressedVoiceDesiredSampleRate_Deprecated, @@ -4429,11 +4429,11 @@ uint32_t __thiscall winISteamUser_SteamUser019_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser019_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) +uint32_t __thiscall winISteamUser_SteamUser019_GetVoice(struct w_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { struct ISteamUser_SteamUser019_GetVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bWantCompressed = bWantCompressed, .pDestBuffer = pDestBuffer, .cbDestBufferSize = cbDestBufferSize, @@ -4449,11 +4449,11 @@ uint32_t __thiscall winISteamUser_SteamUser019_GetVoice(struct w_steam_iface *_t return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser019_DecompressVoice(struct w_steam_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, uint32_t nDesiredSampleRate) +uint32_t __thiscall winISteamUser_SteamUser019_DecompressVoice(struct w_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, uint32_t nDesiredSampleRate) { struct ISteamUser_SteamUser019_DecompressVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pCompressed = pCompressed, .cbCompressed = cbCompressed, .pDestBuffer = pDestBuffer, @@ -4466,22 +4466,22 @@ uint32_t __thiscall winISteamUser_SteamUser019_DecompressVoice(struct w_steam_if return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser019_GetVoiceOptimalSampleRate(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUser_SteamUser019_GetVoiceOptimalSampleRate(struct w_iface *_this) { struct ISteamUser_SteamUser019_GetVoiceOptimalSampleRate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser019_GetVoiceOptimalSampleRate, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser019_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +uint32_t __thiscall winISteamUser_SteamUser019_GetAuthSessionTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser019_GetAuthSessionTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -4491,11 +4491,11 @@ uint32_t __thiscall winISteamUser_SteamUser019_GetAuthSessionTicket(struct w_ste return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser019_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) +uint32_t __thiscall winISteamUser_SteamUser019_BeginAuthSession(struct w_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { struct ISteamUser_SteamUser019_BeginAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthTicket = pAuthTicket, .cbAuthTicket = cbAuthTicket, .steamID = steamID, @@ -4505,33 +4505,33 @@ uint32_t __thiscall winISteamUser_SteamUser019_BeginAuthSession(struct w_steam_i return params._ret; } -void __thiscall winISteamUser_SteamUser019_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamUser_SteamUser019_EndAuthSession(struct w_iface *_this, CSteamID steamID) { struct ISteamUser_SteamUser019_EndAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser019_EndAuthSession, ¶ms ); } -void __thiscall winISteamUser_SteamUser019_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) +void __thiscall winISteamUser_SteamUser019_CancelAuthTicket(struct w_iface *_this, uint32_t hAuthTicket) { struct ISteamUser_SteamUser019_CancelAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser019_CancelAuthTicket, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser019_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamUser_SteamUser019_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamUser_SteamUser019_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -4540,22 +4540,22 @@ uint32_t __thiscall winISteamUser_SteamUser019_UserHasLicenseForApp(struct w_ste return params._ret; } -int8_t __thiscall winISteamUser_SteamUser019_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser019_BIsBehindNAT(struct w_iface *_this) { struct ISteamUser_SteamUser019_BIsBehindNAT_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser019_BIsBehindNAT, ¶ms ); return params._ret; } -void __thiscall winISteamUser_SteamUser019_AdvertiseGame(struct w_steam_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser019_AdvertiseGame(struct w_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser019_AdvertiseGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDGameServer = steamIDGameServer, .unIPServer = unIPServer, .usPortServer = usPortServer, @@ -4564,11 +4564,11 @@ void __thiscall winISteamUser_SteamUser019_AdvertiseGame(struct w_steam_iface *_ STEAMCLIENT_CALL( ISteamUser_SteamUser019_AdvertiseGame, ¶ms ); } -uint64_t __thiscall winISteamUser_SteamUser019_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) +uint64_t __thiscall winISteamUser_SteamUser019_RequestEncryptedAppTicket(struct w_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { struct ISteamUser_SteamUser019_RequestEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; @@ -4577,11 +4577,11 @@ uint64_t __thiscall winISteamUser_SteamUser019_RequestEncryptedAppTicket(struct return params._ret; } -int8_t __thiscall winISteamUser_SteamUser019_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser019_GetEncryptedAppTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser019_GetEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -4591,11 +4591,11 @@ int8_t __thiscall winISteamUser_SteamUser019_GetEncryptedAppTicket(struct w_stea return params._ret; } -int32_t __thiscall winISteamUser_SteamUser019_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, int8_t bFoil) +int32_t __thiscall winISteamUser_SteamUser019_GetGameBadgeLevel(struct w_iface *_this, int32_t nSeries, int8_t bFoil) { struct ISteamUser_SteamUser019_GetGameBadgeLevel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nSeries = nSeries, .bFoil = bFoil, }; @@ -4604,22 +4604,22 @@ int32_t __thiscall winISteamUser_SteamUser019_GetGameBadgeLevel(struct w_steam_i return params._ret; } -int32_t __thiscall winISteamUser_SteamUser019_GetPlayerSteamLevel(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser019_GetPlayerSteamLevel(struct w_iface *_this) { struct ISteamUser_SteamUser019_GetPlayerSteamLevel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser019_GetPlayerSteamLevel, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUser_SteamUser019_RequestStoreAuthURL(struct w_steam_iface *_this, const char *pchRedirectURL) +uint64_t __thiscall winISteamUser_SteamUser019_RequestStoreAuthURL(struct w_iface *_this, const char *pchRedirectURL) { struct ISteamUser_SteamUser019_RequestStoreAuthURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchRedirectURL = pchRedirectURL, }; TRACE("%p\n", _this); @@ -4628,44 +4628,44 @@ uint64_t __thiscall winISteamUser_SteamUser019_RequestStoreAuthURL(struct w_stea return params._ret; } -int8_t __thiscall winISteamUser_SteamUser019_BIsPhoneVerified(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser019_BIsPhoneVerified(struct w_iface *_this) { struct ISteamUser_SteamUser019_BIsPhoneVerified_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser019_BIsPhoneVerified, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser019_BIsTwoFactorEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser019_BIsTwoFactorEnabled(struct w_iface *_this) { struct ISteamUser_SteamUser019_BIsTwoFactorEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser019_BIsTwoFactorEnabled, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser019_BIsPhoneIdentifying(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser019_BIsPhoneIdentifying(struct w_iface *_this) { struct ISteamUser_SteamUser019_BIsPhoneIdentifying_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser019_BIsPhoneIdentifying, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser019_BIsPhoneRequiringVerification(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser019_BIsPhoneRequiringVerification(struct w_iface *_this) { struct ISteamUser_SteamUser019_BIsPhoneRequiringVerification_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser019_BIsPhoneRequiringVerification, ¶ms ); @@ -4710,9 +4710,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser019_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser019(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser019( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser019"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser019"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser019_vtable, 29, "SteamUser019"); r->u_iface = u_iface; @@ -4751,33 +4751,33 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser020_BIsPhoneRequiringVerification DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser020_GetMarketEligibility, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser020_GetDurationControl, 4) -int32_t __thiscall winISteamUser_SteamUser020_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser020_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser020_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser020_GetHSteamUser, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser020_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser020_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser020_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser020_BLoggedOn, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser020_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser020_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser020_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -4785,11 +4785,11 @@ CSteamID * __thiscall winISteamUser_SteamUser020_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser020_InitiateGameConnection(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) +int32_t __thiscall winISteamUser_SteamUser020_InitiateGameConnection(struct w_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser020_InitiateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthBlob = pAuthBlob, .cbMaxAuthBlob = cbMaxAuthBlob, .steamIDGameServer = steamIDGameServer, @@ -4802,11 +4802,11 @@ int32_t __thiscall winISteamUser_SteamUser020_InitiateGameConnection(struct w_st return params._ret; } -void __thiscall winISteamUser_SteamUser020_TerminateGameConnection(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser020_TerminateGameConnection(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser020_TerminateGameConnection_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -4814,11 +4814,11 @@ void __thiscall winISteamUser_SteamUser020_TerminateGameConnection(struct w_stea STEAMCLIENT_CALL( ISteamUser_SteamUser020_TerminateGameConnection, ¶ms ); } -void __thiscall winISteamUser_SteamUser020_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser020_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser020_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -4828,11 +4828,11 @@ void __thiscall winISteamUser_SteamUser020_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser020_TrackAppUsageEvent, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser020_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser020_GetUserDataFolder(struct w_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser020_GetUserDataFolder_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; @@ -4841,31 +4841,31 @@ int8_t __thiscall winISteamUser_SteamUser020_GetUserDataFolder(struct w_steam_if return params._ret; } -void __thiscall winISteamUser_SteamUser020_StartVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser020_StartVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser020_StartVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser020_StartVoiceRecording, ¶ms ); } -void __thiscall winISteamUser_SteamUser020_StopVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser020_StopVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser020_StopVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser020_StopVoiceRecording, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser020_GetAvailableVoice(struct w_steam_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) +uint32_t __thiscall winISteamUser_SteamUser020_GetAvailableVoice(struct w_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { struct ISteamUser_SteamUser020_GetAvailableVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcbCompressed = pcbCompressed, .pcbUncompressed_Deprecated = pcbUncompressed_Deprecated, .nUncompressedVoiceDesiredSampleRate_Deprecated = nUncompressedVoiceDesiredSampleRate_Deprecated, @@ -4875,11 +4875,11 @@ uint32_t __thiscall winISteamUser_SteamUser020_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser020_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) +uint32_t __thiscall winISteamUser_SteamUser020_GetVoice(struct w_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { struct ISteamUser_SteamUser020_GetVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bWantCompressed = bWantCompressed, .pDestBuffer = pDestBuffer, .cbDestBufferSize = cbDestBufferSize, @@ -4895,11 +4895,11 @@ uint32_t __thiscall winISteamUser_SteamUser020_GetVoice(struct w_steam_iface *_t return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser020_DecompressVoice(struct w_steam_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, uint32_t nDesiredSampleRate) +uint32_t __thiscall winISteamUser_SteamUser020_DecompressVoice(struct w_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, uint32_t nDesiredSampleRate) { struct ISteamUser_SteamUser020_DecompressVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pCompressed = pCompressed, .cbCompressed = cbCompressed, .pDestBuffer = pDestBuffer, @@ -4912,22 +4912,22 @@ uint32_t __thiscall winISteamUser_SteamUser020_DecompressVoice(struct w_steam_if return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser020_GetVoiceOptimalSampleRate(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUser_SteamUser020_GetVoiceOptimalSampleRate(struct w_iface *_this) { struct ISteamUser_SteamUser020_GetVoiceOptimalSampleRate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser020_GetVoiceOptimalSampleRate, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser020_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +uint32_t __thiscall winISteamUser_SteamUser020_GetAuthSessionTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser020_GetAuthSessionTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -4937,11 +4937,11 @@ uint32_t __thiscall winISteamUser_SteamUser020_GetAuthSessionTicket(struct w_ste return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser020_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) +uint32_t __thiscall winISteamUser_SteamUser020_BeginAuthSession(struct w_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { struct ISteamUser_SteamUser020_BeginAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthTicket = pAuthTicket, .cbAuthTicket = cbAuthTicket, .steamID = steamID, @@ -4951,33 +4951,33 @@ uint32_t __thiscall winISteamUser_SteamUser020_BeginAuthSession(struct w_steam_i return params._ret; } -void __thiscall winISteamUser_SteamUser020_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamUser_SteamUser020_EndAuthSession(struct w_iface *_this, CSteamID steamID) { struct ISteamUser_SteamUser020_EndAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser020_EndAuthSession, ¶ms ); } -void __thiscall winISteamUser_SteamUser020_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) +void __thiscall winISteamUser_SteamUser020_CancelAuthTicket(struct w_iface *_this, uint32_t hAuthTicket) { struct ISteamUser_SteamUser020_CancelAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser020_CancelAuthTicket, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser020_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamUser_SteamUser020_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamUser_SteamUser020_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -4986,22 +4986,22 @@ uint32_t __thiscall winISteamUser_SteamUser020_UserHasLicenseForApp(struct w_ste return params._ret; } -int8_t __thiscall winISteamUser_SteamUser020_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser020_BIsBehindNAT(struct w_iface *_this) { struct ISteamUser_SteamUser020_BIsBehindNAT_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser020_BIsBehindNAT, ¶ms ); return params._ret; } -void __thiscall winISteamUser_SteamUser020_AdvertiseGame(struct w_steam_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser020_AdvertiseGame(struct w_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser020_AdvertiseGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDGameServer = steamIDGameServer, .unIPServer = unIPServer, .usPortServer = usPortServer, @@ -5010,11 +5010,11 @@ void __thiscall winISteamUser_SteamUser020_AdvertiseGame(struct w_steam_iface *_ STEAMCLIENT_CALL( ISteamUser_SteamUser020_AdvertiseGame, ¶ms ); } -uint64_t __thiscall winISteamUser_SteamUser020_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) +uint64_t __thiscall winISteamUser_SteamUser020_RequestEncryptedAppTicket(struct w_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { struct ISteamUser_SteamUser020_RequestEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; @@ -5023,11 +5023,11 @@ uint64_t __thiscall winISteamUser_SteamUser020_RequestEncryptedAppTicket(struct return params._ret; } -int8_t __thiscall winISteamUser_SteamUser020_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser020_GetEncryptedAppTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser020_GetEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -5037,11 +5037,11 @@ int8_t __thiscall winISteamUser_SteamUser020_GetEncryptedAppTicket(struct w_stea return params._ret; } -int32_t __thiscall winISteamUser_SteamUser020_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, int8_t bFoil) +int32_t __thiscall winISteamUser_SteamUser020_GetGameBadgeLevel(struct w_iface *_this, int32_t nSeries, int8_t bFoil) { struct ISteamUser_SteamUser020_GetGameBadgeLevel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nSeries = nSeries, .bFoil = bFoil, }; @@ -5050,22 +5050,22 @@ int32_t __thiscall winISteamUser_SteamUser020_GetGameBadgeLevel(struct w_steam_i return params._ret; } -int32_t __thiscall winISteamUser_SteamUser020_GetPlayerSteamLevel(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser020_GetPlayerSteamLevel(struct w_iface *_this) { struct ISteamUser_SteamUser020_GetPlayerSteamLevel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser020_GetPlayerSteamLevel, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUser_SteamUser020_RequestStoreAuthURL(struct w_steam_iface *_this, const char *pchRedirectURL) +uint64_t __thiscall winISteamUser_SteamUser020_RequestStoreAuthURL(struct w_iface *_this, const char *pchRedirectURL) { struct ISteamUser_SteamUser020_RequestStoreAuthURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchRedirectURL = pchRedirectURL, }; TRACE("%p\n", _this); @@ -5074,66 +5074,66 @@ uint64_t __thiscall winISteamUser_SteamUser020_RequestStoreAuthURL(struct w_stea return params._ret; } -int8_t __thiscall winISteamUser_SteamUser020_BIsPhoneVerified(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser020_BIsPhoneVerified(struct w_iface *_this) { struct ISteamUser_SteamUser020_BIsPhoneVerified_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser020_BIsPhoneVerified, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser020_BIsTwoFactorEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser020_BIsTwoFactorEnabled(struct w_iface *_this) { struct ISteamUser_SteamUser020_BIsTwoFactorEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser020_BIsTwoFactorEnabled, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser020_BIsPhoneIdentifying(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser020_BIsPhoneIdentifying(struct w_iface *_this) { struct ISteamUser_SteamUser020_BIsPhoneIdentifying_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser020_BIsPhoneIdentifying, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser020_BIsPhoneRequiringVerification(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser020_BIsPhoneRequiringVerification(struct w_iface *_this) { struct ISteamUser_SteamUser020_BIsPhoneRequiringVerification_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser020_BIsPhoneRequiringVerification, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUser_SteamUser020_GetMarketEligibility(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUser_SteamUser020_GetMarketEligibility(struct w_iface *_this) { struct ISteamUser_SteamUser020_GetMarketEligibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser020_GetMarketEligibility, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUser_SteamUser020_GetDurationControl(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUser_SteamUser020_GetDurationControl(struct w_iface *_this) { struct ISteamUser_SteamUser020_GetDurationControl_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser020_GetDurationControl, ¶ms ); @@ -5180,9 +5180,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser020_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser020(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser020( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser020"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser020"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser020_vtable, 31, "SteamUser020"); r->u_iface = u_iface; @@ -5222,33 +5222,33 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser021_GetMarketEligibility, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser021_GetDurationControl, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser021_BSetDurationControlOnlineState, 8) -int32_t __thiscall winISteamUser_SteamUser021_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser021_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser021_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser021_GetHSteamUser, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser021_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser021_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser021_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser021_BLoggedOn, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser021_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser021_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser021_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -5256,11 +5256,11 @@ CSteamID * __thiscall winISteamUser_SteamUser021_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) +int32_t __thiscall winISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED(struct w_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthBlob = pAuthBlob, .cbMaxAuthBlob = cbMaxAuthBlob, .steamIDGameServer = steamIDGameServer, @@ -5273,11 +5273,11 @@ int32_t __thiscall winISteamUser_SteamUser021_InitiateGameConnection_DEPRECATED( return params._ret; } -void __thiscall winISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -5285,11 +5285,11 @@ void __thiscall winISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED(st STEAMCLIENT_CALL( ISteamUser_SteamUser021_TerminateGameConnection_DEPRECATED, ¶ms ); } -void __thiscall winISteamUser_SteamUser021_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser021_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser021_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -5299,11 +5299,11 @@ void __thiscall winISteamUser_SteamUser021_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser021_TrackAppUsageEvent, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser021_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser021_GetUserDataFolder(struct w_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser021_GetUserDataFolder_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; @@ -5312,31 +5312,31 @@ int8_t __thiscall winISteamUser_SteamUser021_GetUserDataFolder(struct w_steam_if return params._ret; } -void __thiscall winISteamUser_SteamUser021_StartVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser021_StartVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser021_StartVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser021_StartVoiceRecording, ¶ms ); } -void __thiscall winISteamUser_SteamUser021_StopVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser021_StopVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser021_StopVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser021_StopVoiceRecording, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser021_GetAvailableVoice(struct w_steam_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) +uint32_t __thiscall winISteamUser_SteamUser021_GetAvailableVoice(struct w_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { struct ISteamUser_SteamUser021_GetAvailableVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcbCompressed = pcbCompressed, .pcbUncompressed_Deprecated = pcbUncompressed_Deprecated, .nUncompressedVoiceDesiredSampleRate_Deprecated = nUncompressedVoiceDesiredSampleRate_Deprecated, @@ -5346,11 +5346,11 @@ uint32_t __thiscall winISteamUser_SteamUser021_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser021_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) +uint32_t __thiscall winISteamUser_SteamUser021_GetVoice(struct w_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { struct ISteamUser_SteamUser021_GetVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bWantCompressed = bWantCompressed, .pDestBuffer = pDestBuffer, .cbDestBufferSize = cbDestBufferSize, @@ -5366,11 +5366,11 @@ uint32_t __thiscall winISteamUser_SteamUser021_GetVoice(struct w_steam_iface *_t return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser021_DecompressVoice(struct w_steam_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, uint32_t nDesiredSampleRate) +uint32_t __thiscall winISteamUser_SteamUser021_DecompressVoice(struct w_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, uint32_t nDesiredSampleRate) { struct ISteamUser_SteamUser021_DecompressVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pCompressed = pCompressed, .cbCompressed = cbCompressed, .pDestBuffer = pDestBuffer, @@ -5383,22 +5383,22 @@ uint32_t __thiscall winISteamUser_SteamUser021_DecompressVoice(struct w_steam_if return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser021_GetVoiceOptimalSampleRate(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUser_SteamUser021_GetVoiceOptimalSampleRate(struct w_iface *_this) { struct ISteamUser_SteamUser021_GetVoiceOptimalSampleRate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser021_GetVoiceOptimalSampleRate, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser021_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +uint32_t __thiscall winISteamUser_SteamUser021_GetAuthSessionTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser021_GetAuthSessionTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -5408,11 +5408,11 @@ uint32_t __thiscall winISteamUser_SteamUser021_GetAuthSessionTicket(struct w_ste return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser021_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) +uint32_t __thiscall winISteamUser_SteamUser021_BeginAuthSession(struct w_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { struct ISteamUser_SteamUser021_BeginAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthTicket = pAuthTicket, .cbAuthTicket = cbAuthTicket, .steamID = steamID, @@ -5422,33 +5422,33 @@ uint32_t __thiscall winISteamUser_SteamUser021_BeginAuthSession(struct w_steam_i return params._ret; } -void __thiscall winISteamUser_SteamUser021_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamUser_SteamUser021_EndAuthSession(struct w_iface *_this, CSteamID steamID) { struct ISteamUser_SteamUser021_EndAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser021_EndAuthSession, ¶ms ); } -void __thiscall winISteamUser_SteamUser021_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) +void __thiscall winISteamUser_SteamUser021_CancelAuthTicket(struct w_iface *_this, uint32_t hAuthTicket) { struct ISteamUser_SteamUser021_CancelAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser021_CancelAuthTicket, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser021_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamUser_SteamUser021_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamUser_SteamUser021_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -5457,22 +5457,22 @@ uint32_t __thiscall winISteamUser_SteamUser021_UserHasLicenseForApp(struct w_ste return params._ret; } -int8_t __thiscall winISteamUser_SteamUser021_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser021_BIsBehindNAT(struct w_iface *_this) { struct ISteamUser_SteamUser021_BIsBehindNAT_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser021_BIsBehindNAT, ¶ms ); return params._ret; } -void __thiscall winISteamUser_SteamUser021_AdvertiseGame(struct w_steam_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser021_AdvertiseGame(struct w_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser021_AdvertiseGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDGameServer = steamIDGameServer, .unIPServer = unIPServer, .usPortServer = usPortServer, @@ -5481,11 +5481,11 @@ void __thiscall winISteamUser_SteamUser021_AdvertiseGame(struct w_steam_iface *_ STEAMCLIENT_CALL( ISteamUser_SteamUser021_AdvertiseGame, ¶ms ); } -uint64_t __thiscall winISteamUser_SteamUser021_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) +uint64_t __thiscall winISteamUser_SteamUser021_RequestEncryptedAppTicket(struct w_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { struct ISteamUser_SteamUser021_RequestEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; @@ -5494,11 +5494,11 @@ uint64_t __thiscall winISteamUser_SteamUser021_RequestEncryptedAppTicket(struct return params._ret; } -int8_t __thiscall winISteamUser_SteamUser021_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser021_GetEncryptedAppTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser021_GetEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -5508,11 +5508,11 @@ int8_t __thiscall winISteamUser_SteamUser021_GetEncryptedAppTicket(struct w_stea return params._ret; } -int32_t __thiscall winISteamUser_SteamUser021_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, int8_t bFoil) +int32_t __thiscall winISteamUser_SteamUser021_GetGameBadgeLevel(struct w_iface *_this, int32_t nSeries, int8_t bFoil) { struct ISteamUser_SteamUser021_GetGameBadgeLevel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nSeries = nSeries, .bFoil = bFoil, }; @@ -5521,22 +5521,22 @@ int32_t __thiscall winISteamUser_SteamUser021_GetGameBadgeLevel(struct w_steam_i return params._ret; } -int32_t __thiscall winISteamUser_SteamUser021_GetPlayerSteamLevel(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser021_GetPlayerSteamLevel(struct w_iface *_this) { struct ISteamUser_SteamUser021_GetPlayerSteamLevel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser021_GetPlayerSteamLevel, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUser_SteamUser021_RequestStoreAuthURL(struct w_steam_iface *_this, const char *pchRedirectURL) +uint64_t __thiscall winISteamUser_SteamUser021_RequestStoreAuthURL(struct w_iface *_this, const char *pchRedirectURL) { struct ISteamUser_SteamUser021_RequestStoreAuthURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchRedirectURL = pchRedirectURL, }; TRACE("%p\n", _this); @@ -5545,77 +5545,77 @@ uint64_t __thiscall winISteamUser_SteamUser021_RequestStoreAuthURL(struct w_stea return params._ret; } -int8_t __thiscall winISteamUser_SteamUser021_BIsPhoneVerified(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser021_BIsPhoneVerified(struct w_iface *_this) { struct ISteamUser_SteamUser021_BIsPhoneVerified_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser021_BIsPhoneVerified, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser021_BIsTwoFactorEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser021_BIsTwoFactorEnabled(struct w_iface *_this) { struct ISteamUser_SteamUser021_BIsTwoFactorEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser021_BIsTwoFactorEnabled, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser021_BIsPhoneIdentifying(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser021_BIsPhoneIdentifying(struct w_iface *_this) { struct ISteamUser_SteamUser021_BIsPhoneIdentifying_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser021_BIsPhoneIdentifying, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser021_BIsPhoneRequiringVerification(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser021_BIsPhoneRequiringVerification(struct w_iface *_this) { struct ISteamUser_SteamUser021_BIsPhoneRequiringVerification_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser021_BIsPhoneRequiringVerification, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUser_SteamUser021_GetMarketEligibility(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUser_SteamUser021_GetMarketEligibility(struct w_iface *_this) { struct ISteamUser_SteamUser021_GetMarketEligibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser021_GetMarketEligibility, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUser_SteamUser021_GetDurationControl(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUser_SteamUser021_GetDurationControl(struct w_iface *_this) { struct ISteamUser_SteamUser021_GetDurationControl_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser021_GetDurationControl, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser021_BSetDurationControlOnlineState(struct w_steam_iface *_this, uint32_t eNewState) +int8_t __thiscall winISteamUser_SteamUser021_BSetDurationControlOnlineState(struct w_iface *_this, uint32_t eNewState) { struct ISteamUser_SteamUser021_BSetDurationControlOnlineState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eNewState = eNewState, }; TRACE("%p\n", _this); @@ -5664,9 +5664,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser021_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser021(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser021( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser021"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser021"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser021_vtable, 32, "SteamUser021"); r->u_iface = u_iface; @@ -5706,33 +5706,33 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser022_GetMarketEligibility, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser022_GetDurationControl, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser022_BSetDurationControlOnlineState, 8) -int32_t __thiscall winISteamUser_SteamUser022_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser022_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser022_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser022_GetHSteamUser, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser022_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser022_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser022_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser022_BLoggedOn, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser022_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser022_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser022_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -5740,11 +5740,11 @@ CSteamID * __thiscall winISteamUser_SteamUser022_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) +int32_t __thiscall winISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED(struct w_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthBlob = pAuthBlob, .cbMaxAuthBlob = cbMaxAuthBlob, .steamIDGameServer = steamIDGameServer, @@ -5757,11 +5757,11 @@ int32_t __thiscall winISteamUser_SteamUser022_InitiateGameConnection_DEPRECATED( return params._ret; } -void __thiscall winISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -5769,11 +5769,11 @@ void __thiscall winISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED(st STEAMCLIENT_CALL( ISteamUser_SteamUser022_TerminateGameConnection_DEPRECATED, ¶ms ); } -void __thiscall winISteamUser_SteamUser022_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser022_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser022_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -5783,11 +5783,11 @@ void __thiscall winISteamUser_SteamUser022_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser022_TrackAppUsageEvent, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser022_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser022_GetUserDataFolder(struct w_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser022_GetUserDataFolder_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; @@ -5796,31 +5796,31 @@ int8_t __thiscall winISteamUser_SteamUser022_GetUserDataFolder(struct w_steam_if return params._ret; } -void __thiscall winISteamUser_SteamUser022_StartVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser022_StartVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser022_StartVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser022_StartVoiceRecording, ¶ms ); } -void __thiscall winISteamUser_SteamUser022_StopVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser022_StopVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser022_StopVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser022_StopVoiceRecording, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser022_GetAvailableVoice(struct w_steam_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) +uint32_t __thiscall winISteamUser_SteamUser022_GetAvailableVoice(struct w_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { struct ISteamUser_SteamUser022_GetAvailableVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcbCompressed = pcbCompressed, .pcbUncompressed_Deprecated = pcbUncompressed_Deprecated, .nUncompressedVoiceDesiredSampleRate_Deprecated = nUncompressedVoiceDesiredSampleRate_Deprecated, @@ -5830,11 +5830,11 @@ uint32_t __thiscall winISteamUser_SteamUser022_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser022_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) +uint32_t __thiscall winISteamUser_SteamUser022_GetVoice(struct w_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { struct ISteamUser_SteamUser022_GetVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bWantCompressed = bWantCompressed, .pDestBuffer = pDestBuffer, .cbDestBufferSize = cbDestBufferSize, @@ -5850,11 +5850,11 @@ uint32_t __thiscall winISteamUser_SteamUser022_GetVoice(struct w_steam_iface *_t return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser022_DecompressVoice(struct w_steam_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, uint32_t nDesiredSampleRate) +uint32_t __thiscall winISteamUser_SteamUser022_DecompressVoice(struct w_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, uint32_t nDesiredSampleRate) { struct ISteamUser_SteamUser022_DecompressVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pCompressed = pCompressed, .cbCompressed = cbCompressed, .pDestBuffer = pDestBuffer, @@ -5867,22 +5867,22 @@ uint32_t __thiscall winISteamUser_SteamUser022_DecompressVoice(struct w_steam_if return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser022_GetVoiceOptimalSampleRate(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUser_SteamUser022_GetVoiceOptimalSampleRate(struct w_iface *_this) { struct ISteamUser_SteamUser022_GetVoiceOptimalSampleRate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser022_GetVoiceOptimalSampleRate, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser022_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket, const SteamNetworkingIdentity_144 *pSteamNetworkingIdentity) +uint32_t __thiscall winISteamUser_SteamUser022_GetAuthSessionTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket, const SteamNetworkingIdentity_144 *pSteamNetworkingIdentity) { struct ISteamUser_SteamUser022_GetAuthSessionTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -5893,11 +5893,11 @@ uint32_t __thiscall winISteamUser_SteamUser022_GetAuthSessionTicket(struct w_ste return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser022_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) +uint32_t __thiscall winISteamUser_SteamUser022_BeginAuthSession(struct w_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { struct ISteamUser_SteamUser022_BeginAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthTicket = pAuthTicket, .cbAuthTicket = cbAuthTicket, .steamID = steamID, @@ -5907,33 +5907,33 @@ uint32_t __thiscall winISteamUser_SteamUser022_BeginAuthSession(struct w_steam_i return params._ret; } -void __thiscall winISteamUser_SteamUser022_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamUser_SteamUser022_EndAuthSession(struct w_iface *_this, CSteamID steamID) { struct ISteamUser_SteamUser022_EndAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser022_EndAuthSession, ¶ms ); } -void __thiscall winISteamUser_SteamUser022_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) +void __thiscall winISteamUser_SteamUser022_CancelAuthTicket(struct w_iface *_this, uint32_t hAuthTicket) { struct ISteamUser_SteamUser022_CancelAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser022_CancelAuthTicket, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser022_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamUser_SteamUser022_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamUser_SteamUser022_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -5942,22 +5942,22 @@ uint32_t __thiscall winISteamUser_SteamUser022_UserHasLicenseForApp(struct w_ste return params._ret; } -int8_t __thiscall winISteamUser_SteamUser022_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser022_BIsBehindNAT(struct w_iface *_this) { struct ISteamUser_SteamUser022_BIsBehindNAT_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser022_BIsBehindNAT, ¶ms ); return params._ret; } -void __thiscall winISteamUser_SteamUser022_AdvertiseGame(struct w_steam_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser022_AdvertiseGame(struct w_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser022_AdvertiseGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDGameServer = steamIDGameServer, .unIPServer = unIPServer, .usPortServer = usPortServer, @@ -5966,11 +5966,11 @@ void __thiscall winISteamUser_SteamUser022_AdvertiseGame(struct w_steam_iface *_ STEAMCLIENT_CALL( ISteamUser_SteamUser022_AdvertiseGame, ¶ms ); } -uint64_t __thiscall winISteamUser_SteamUser022_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) +uint64_t __thiscall winISteamUser_SteamUser022_RequestEncryptedAppTicket(struct w_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { struct ISteamUser_SteamUser022_RequestEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; @@ -5979,11 +5979,11 @@ uint64_t __thiscall winISteamUser_SteamUser022_RequestEncryptedAppTicket(struct return params._ret; } -int8_t __thiscall winISteamUser_SteamUser022_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser022_GetEncryptedAppTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser022_GetEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -5993,11 +5993,11 @@ int8_t __thiscall winISteamUser_SteamUser022_GetEncryptedAppTicket(struct w_stea return params._ret; } -int32_t __thiscall winISteamUser_SteamUser022_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, int8_t bFoil) +int32_t __thiscall winISteamUser_SteamUser022_GetGameBadgeLevel(struct w_iface *_this, int32_t nSeries, int8_t bFoil) { struct ISteamUser_SteamUser022_GetGameBadgeLevel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nSeries = nSeries, .bFoil = bFoil, }; @@ -6006,22 +6006,22 @@ int32_t __thiscall winISteamUser_SteamUser022_GetGameBadgeLevel(struct w_steam_i return params._ret; } -int32_t __thiscall winISteamUser_SteamUser022_GetPlayerSteamLevel(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser022_GetPlayerSteamLevel(struct w_iface *_this) { struct ISteamUser_SteamUser022_GetPlayerSteamLevel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser022_GetPlayerSteamLevel, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUser_SteamUser022_RequestStoreAuthURL(struct w_steam_iface *_this, const char *pchRedirectURL) +uint64_t __thiscall winISteamUser_SteamUser022_RequestStoreAuthURL(struct w_iface *_this, const char *pchRedirectURL) { struct ISteamUser_SteamUser022_RequestStoreAuthURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchRedirectURL = pchRedirectURL, }; TRACE("%p\n", _this); @@ -6030,77 +6030,77 @@ uint64_t __thiscall winISteamUser_SteamUser022_RequestStoreAuthURL(struct w_stea return params._ret; } -int8_t __thiscall winISteamUser_SteamUser022_BIsPhoneVerified(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser022_BIsPhoneVerified(struct w_iface *_this) { struct ISteamUser_SteamUser022_BIsPhoneVerified_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser022_BIsPhoneVerified, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser022_BIsTwoFactorEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser022_BIsTwoFactorEnabled(struct w_iface *_this) { struct ISteamUser_SteamUser022_BIsTwoFactorEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser022_BIsTwoFactorEnabled, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser022_BIsPhoneIdentifying(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser022_BIsPhoneIdentifying(struct w_iface *_this) { struct ISteamUser_SteamUser022_BIsPhoneIdentifying_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser022_BIsPhoneIdentifying, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser022_BIsPhoneRequiringVerification(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser022_BIsPhoneRequiringVerification(struct w_iface *_this) { struct ISteamUser_SteamUser022_BIsPhoneRequiringVerification_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser022_BIsPhoneRequiringVerification, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUser_SteamUser022_GetMarketEligibility(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUser_SteamUser022_GetMarketEligibility(struct w_iface *_this) { struct ISteamUser_SteamUser022_GetMarketEligibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser022_GetMarketEligibility, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUser_SteamUser022_GetDurationControl(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUser_SteamUser022_GetDurationControl(struct w_iface *_this) { struct ISteamUser_SteamUser022_GetDurationControl_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser022_GetDurationControl, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser022_BSetDurationControlOnlineState(struct w_steam_iface *_this, uint32_t eNewState) +int8_t __thiscall winISteamUser_SteamUser022_BSetDurationControlOnlineState(struct w_iface *_this, uint32_t eNewState) { struct ISteamUser_SteamUser022_BSetDurationControlOnlineState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eNewState = eNewState, }; TRACE("%p\n", _this); @@ -6149,9 +6149,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser022_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser022(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser022( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser022"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser022"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser022_vtable, 32, "SteamUser022"); r->u_iface = u_iface; @@ -6192,33 +6192,33 @@ DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser023_GetMarketEligibility, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser023_GetDurationControl, 4) DEFINE_THISCALL_WRAPPER(winISteamUser_SteamUser023_BSetDurationControlOnlineState, 8) -int32_t __thiscall winISteamUser_SteamUser023_GetHSteamUser(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser023_GetHSteamUser(struct w_iface *_this) { struct ISteamUser_SteamUser023_GetHSteamUser_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser023_GetHSteamUser, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser023_BLoggedOn(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser023_BLoggedOn(struct w_iface *_this) { struct ISteamUser_SteamUser023_BLoggedOn_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser023_BLoggedOn, ¶ms ); return params._ret; } -CSteamID * __thiscall winISteamUser_SteamUser023_GetSteamID(struct w_steam_iface *_this, CSteamID *_ret) +CSteamID * __thiscall winISteamUser_SteamUser023_GetSteamID(struct w_iface *_this, CSteamID *_ret) { struct ISteamUser_SteamUser023_GetSteamID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, ._ret = _ret, }; TRACE("%p\n", _this); @@ -6226,11 +6226,11 @@ CSteamID * __thiscall winISteamUser_SteamUser023_GetSteamID(struct w_steam_iface return params._ret; } -int32_t __thiscall winISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED(struct w_steam_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) +int32_t __thiscall winISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED(struct w_iface *_this, void *pAuthBlob, int32_t cbMaxAuthBlob, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer, int8_t bSecure) { struct ISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthBlob = pAuthBlob, .cbMaxAuthBlob = cbMaxAuthBlob, .steamIDGameServer = steamIDGameServer, @@ -6243,11 +6243,11 @@ int32_t __thiscall winISteamUser_SteamUser023_InitiateGameConnection_DEPRECATED( return params._ret; } -void __thiscall winISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED(struct w_steam_iface *_this, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED(struct w_iface *_this, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIPServer = unIPServer, .usPortServer = usPortServer, }; @@ -6255,11 +6255,11 @@ void __thiscall winISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED(st STEAMCLIENT_CALL( ISteamUser_SteamUser023_TerminateGameConnection_DEPRECATED, ¶ms ); } -void __thiscall winISteamUser_SteamUser023_TrackAppUsageEvent(struct w_steam_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) +void __thiscall winISteamUser_SteamUser023_TrackAppUsageEvent(struct w_iface *_this, CGameID gameID, int32_t eAppUsageEvent, const char *pchExtraInfo) { struct ISteamUser_SteamUser023_TrackAppUsageEvent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .gameID = gameID, .eAppUsageEvent = eAppUsageEvent, .pchExtraInfo = pchExtraInfo, @@ -6269,11 +6269,11 @@ void __thiscall winISteamUser_SteamUser023_TrackAppUsageEvent(struct w_steam_ifa STEAMCLIENT_CALL( ISteamUser_SteamUser023_TrackAppUsageEvent, ¶ms ); } -int8_t __thiscall winISteamUser_SteamUser023_GetUserDataFolder(struct w_steam_iface *_this, char *pchBuffer, int32_t cubBuffer) +int8_t __thiscall winISteamUser_SteamUser023_GetUserDataFolder(struct w_iface *_this, char *pchBuffer, int32_t cubBuffer) { struct ISteamUser_SteamUser023_GetUserDataFolder_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchBuffer = pchBuffer, .cubBuffer = cubBuffer, }; @@ -6282,31 +6282,31 @@ int8_t __thiscall winISteamUser_SteamUser023_GetUserDataFolder(struct w_steam_if return params._ret; } -void __thiscall winISteamUser_SteamUser023_StartVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser023_StartVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser023_StartVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser023_StartVoiceRecording, ¶ms ); } -void __thiscall winISteamUser_SteamUser023_StopVoiceRecording(struct w_steam_iface *_this) +void __thiscall winISteamUser_SteamUser023_StopVoiceRecording(struct w_iface *_this) { struct ISteamUser_SteamUser023_StopVoiceRecording_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser023_StopVoiceRecording, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser023_GetAvailableVoice(struct w_steam_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) +uint32_t __thiscall winISteamUser_SteamUser023_GetAvailableVoice(struct w_iface *_this, uint32_t *pcbCompressed, uint32_t *pcbUncompressed_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { struct ISteamUser_SteamUser023_GetAvailableVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pcbCompressed = pcbCompressed, .pcbUncompressed_Deprecated = pcbUncompressed_Deprecated, .nUncompressedVoiceDesiredSampleRate_Deprecated = nUncompressedVoiceDesiredSampleRate_Deprecated, @@ -6316,11 +6316,11 @@ uint32_t __thiscall winISteamUser_SteamUser023_GetAvailableVoice(struct w_steam_ return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser023_GetVoice(struct w_steam_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) +uint32_t __thiscall winISteamUser_SteamUser023_GetVoice(struct w_iface *_this, int8_t bWantCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, int8_t bWantUncompressed_Deprecated, void *pUncompressedDestBuffer_Deprecated, uint32_t cbUncompressedDestBufferSize_Deprecated, uint32_t *nUncompressBytesWritten_Deprecated, uint32_t nUncompressedVoiceDesiredSampleRate_Deprecated) { struct ISteamUser_SteamUser023_GetVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bWantCompressed = bWantCompressed, .pDestBuffer = pDestBuffer, .cbDestBufferSize = cbDestBufferSize, @@ -6336,11 +6336,11 @@ uint32_t __thiscall winISteamUser_SteamUser023_GetVoice(struct w_steam_iface *_t return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser023_DecompressVoice(struct w_steam_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, uint32_t nDesiredSampleRate) +uint32_t __thiscall winISteamUser_SteamUser023_DecompressVoice(struct w_iface *_this, const void *pCompressed, uint32_t cbCompressed, void *pDestBuffer, uint32_t cbDestBufferSize, uint32_t *nBytesWritten, uint32_t nDesiredSampleRate) { struct ISteamUser_SteamUser023_DecompressVoice_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pCompressed = pCompressed, .cbCompressed = cbCompressed, .pDestBuffer = pDestBuffer, @@ -6353,22 +6353,22 @@ uint32_t __thiscall winISteamUser_SteamUser023_DecompressVoice(struct w_steam_if return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser023_GetVoiceOptimalSampleRate(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUser_SteamUser023_GetVoiceOptimalSampleRate(struct w_iface *_this) { struct ISteamUser_SteamUser023_GetVoiceOptimalSampleRate_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser023_GetVoiceOptimalSampleRate, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser023_GetAuthSessionTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket, const SteamNetworkingIdentity_144 *pSteamNetworkingIdentity) +uint32_t __thiscall winISteamUser_SteamUser023_GetAuthSessionTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket, const SteamNetworkingIdentity_144 *pSteamNetworkingIdentity) { struct ISteamUser_SteamUser023_GetAuthSessionTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -6379,11 +6379,11 @@ uint32_t __thiscall winISteamUser_SteamUser023_GetAuthSessionTicket(struct w_ste return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser023_GetAuthTicketForWebApi(struct w_steam_iface *_this, const char *pchIdentity) +uint32_t __thiscall winISteamUser_SteamUser023_GetAuthTicketForWebApi(struct w_iface *_this, const char *pchIdentity) { struct ISteamUser_SteamUser023_GetAuthTicketForWebApi_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchIdentity = pchIdentity, }; TRACE("%p\n", _this); @@ -6392,11 +6392,11 @@ uint32_t __thiscall winISteamUser_SteamUser023_GetAuthTicketForWebApi(struct w_s return params._ret; } -uint32_t __thiscall winISteamUser_SteamUser023_BeginAuthSession(struct w_steam_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) +uint32_t __thiscall winISteamUser_SteamUser023_BeginAuthSession(struct w_iface *_this, const void *pAuthTicket, int32_t cbAuthTicket, CSteamID steamID) { struct ISteamUser_SteamUser023_BeginAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pAuthTicket = pAuthTicket, .cbAuthTicket = cbAuthTicket, .steamID = steamID, @@ -6406,33 +6406,33 @@ uint32_t __thiscall winISteamUser_SteamUser023_BeginAuthSession(struct w_steam_i return params._ret; } -void __thiscall winISteamUser_SteamUser023_EndAuthSession(struct w_steam_iface *_this, CSteamID steamID) +void __thiscall winISteamUser_SteamUser023_EndAuthSession(struct w_iface *_this, CSteamID steamID) { struct ISteamUser_SteamUser023_EndAuthSession_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser023_EndAuthSession, ¶ms ); } -void __thiscall winISteamUser_SteamUser023_CancelAuthTicket(struct w_steam_iface *_this, uint32_t hAuthTicket) +void __thiscall winISteamUser_SteamUser023_CancelAuthTicket(struct w_iface *_this, uint32_t hAuthTicket) { struct ISteamUser_SteamUser023_CancelAuthTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hAuthTicket = hAuthTicket, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser023_CancelAuthTicket, ¶ms ); } -uint32_t __thiscall winISteamUser_SteamUser023_UserHasLicenseForApp(struct w_steam_iface *_this, CSteamID steamID, uint32_t appID) +uint32_t __thiscall winISteamUser_SteamUser023_UserHasLicenseForApp(struct w_iface *_this, CSteamID steamID, uint32_t appID) { struct ISteamUser_SteamUser023_UserHasLicenseForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamID = steamID, .appID = appID, }; @@ -6441,22 +6441,22 @@ uint32_t __thiscall winISteamUser_SteamUser023_UserHasLicenseForApp(struct w_ste return params._ret; } -int8_t __thiscall winISteamUser_SteamUser023_BIsBehindNAT(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser023_BIsBehindNAT(struct w_iface *_this) { struct ISteamUser_SteamUser023_BIsBehindNAT_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser023_BIsBehindNAT, ¶ms ); return params._ret; } -void __thiscall winISteamUser_SteamUser023_AdvertiseGame(struct w_steam_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) +void __thiscall winISteamUser_SteamUser023_AdvertiseGame(struct w_iface *_this, CSteamID steamIDGameServer, uint32_t unIPServer, uint16_t usPortServer) { struct ISteamUser_SteamUser023_AdvertiseGame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDGameServer = steamIDGameServer, .unIPServer = unIPServer, .usPortServer = usPortServer, @@ -6465,11 +6465,11 @@ void __thiscall winISteamUser_SteamUser023_AdvertiseGame(struct w_steam_iface *_ STEAMCLIENT_CALL( ISteamUser_SteamUser023_AdvertiseGame, ¶ms ); } -uint64_t __thiscall winISteamUser_SteamUser023_RequestEncryptedAppTicket(struct w_steam_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) +uint64_t __thiscall winISteamUser_SteamUser023_RequestEncryptedAppTicket(struct w_iface *_this, void *pDataToInclude, int32_t cbDataToInclude) { struct ISteamUser_SteamUser023_RequestEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pDataToInclude = pDataToInclude, .cbDataToInclude = cbDataToInclude, }; @@ -6478,11 +6478,11 @@ uint64_t __thiscall winISteamUser_SteamUser023_RequestEncryptedAppTicket(struct return params._ret; } -int8_t __thiscall winISteamUser_SteamUser023_GetEncryptedAppTicket(struct w_steam_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) +int8_t __thiscall winISteamUser_SteamUser023_GetEncryptedAppTicket(struct w_iface *_this, void *pTicket, int32_t cbMaxTicket, uint32_t *pcbTicket) { struct ISteamUser_SteamUser023_GetEncryptedAppTicket_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pTicket = pTicket, .cbMaxTicket = cbMaxTicket, .pcbTicket = pcbTicket, @@ -6492,11 +6492,11 @@ int8_t __thiscall winISteamUser_SteamUser023_GetEncryptedAppTicket(struct w_stea return params._ret; } -int32_t __thiscall winISteamUser_SteamUser023_GetGameBadgeLevel(struct w_steam_iface *_this, int32_t nSeries, int8_t bFoil) +int32_t __thiscall winISteamUser_SteamUser023_GetGameBadgeLevel(struct w_iface *_this, int32_t nSeries, int8_t bFoil) { struct ISteamUser_SteamUser023_GetGameBadgeLevel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nSeries = nSeries, .bFoil = bFoil, }; @@ -6505,22 +6505,22 @@ int32_t __thiscall winISteamUser_SteamUser023_GetGameBadgeLevel(struct w_steam_i return params._ret; } -int32_t __thiscall winISteamUser_SteamUser023_GetPlayerSteamLevel(struct w_steam_iface *_this) +int32_t __thiscall winISteamUser_SteamUser023_GetPlayerSteamLevel(struct w_iface *_this) { struct ISteamUser_SteamUser023_GetPlayerSteamLevel_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser023_GetPlayerSteamLevel, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUser_SteamUser023_RequestStoreAuthURL(struct w_steam_iface *_this, const char *pchRedirectURL) +uint64_t __thiscall winISteamUser_SteamUser023_RequestStoreAuthURL(struct w_iface *_this, const char *pchRedirectURL) { struct ISteamUser_SteamUser023_RequestStoreAuthURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchRedirectURL = pchRedirectURL, }; TRACE("%p\n", _this); @@ -6529,77 +6529,77 @@ uint64_t __thiscall winISteamUser_SteamUser023_RequestStoreAuthURL(struct w_stea return params._ret; } -int8_t __thiscall winISteamUser_SteamUser023_BIsPhoneVerified(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser023_BIsPhoneVerified(struct w_iface *_this) { struct ISteamUser_SteamUser023_BIsPhoneVerified_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser023_BIsPhoneVerified, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser023_BIsTwoFactorEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser023_BIsTwoFactorEnabled(struct w_iface *_this) { struct ISteamUser_SteamUser023_BIsTwoFactorEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser023_BIsTwoFactorEnabled, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser023_BIsPhoneIdentifying(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser023_BIsPhoneIdentifying(struct w_iface *_this) { struct ISteamUser_SteamUser023_BIsPhoneIdentifying_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser023_BIsPhoneIdentifying, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser023_BIsPhoneRequiringVerification(struct w_steam_iface *_this) +int8_t __thiscall winISteamUser_SteamUser023_BIsPhoneRequiringVerification(struct w_iface *_this) { struct ISteamUser_SteamUser023_BIsPhoneRequiringVerification_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser023_BIsPhoneRequiringVerification, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUser_SteamUser023_GetMarketEligibility(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUser_SteamUser023_GetMarketEligibility(struct w_iface *_this) { struct ISteamUser_SteamUser023_GetMarketEligibility_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser023_GetMarketEligibility, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUser_SteamUser023_GetDurationControl(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUser_SteamUser023_GetDurationControl(struct w_iface *_this) { struct ISteamUser_SteamUser023_GetDurationControl_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUser_SteamUser023_GetDurationControl, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUser_SteamUser023_BSetDurationControlOnlineState(struct w_steam_iface *_this, uint32_t eNewState) +int8_t __thiscall winISteamUser_SteamUser023_BSetDurationControlOnlineState(struct w_iface *_this, uint32_t eNewState) { struct ISteamUser_SteamUser023_BSetDurationControlOnlineState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eNewState = eNewState, }; TRACE("%p\n", _this); @@ -6649,9 +6649,9 @@ __ASM_BLOCK_BEGIN(winISteamUser_SteamUser023_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUser_SteamUser023(void *u_iface) +struct w_iface *create_winISteamUser_SteamUser023( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUser023"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUser023"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUser_SteamUser023_vtable, 33, "SteamUser023"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamUserStats.c b/lsteamclient/winISteamUserStats.c index ced13d85..ccf20333 100644 --- a/lsteamclient/winISteamUserStats.c +++ b/lsteamclient/winISteamUserStats.c @@ -26,11 +26,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_C DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon, 16) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute, 20) -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats(struct w_steam_iface *_this, CGameID nGameID) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats(struct w_iface *_this, CGameID nGameID) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); @@ -38,11 +38,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNu return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName(struct w_steam_iface *_this, CGameID nGameID, uint32_t iStat) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName(struct w_iface *_this, CGameID nGameID, uint32_t iStat) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .iStat = iStat, }; @@ -51,11 +51,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_G return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType(struct w_iface *_this, CGameID nGameID, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStatType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; @@ -65,11 +65,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetSt return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements(struct w_steam_iface *_this, CGameID nGameID) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements(struct w_iface *_this, CGameID nGameID) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumAchievements_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); @@ -77,11 +77,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNu return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName(struct w_steam_iface *_this, CGameID nGameID, uint32_t iAchievement) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName(struct w_iface *_this, CGameID nGameID, uint32_t iAchievement) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .iAchievement = iAchievement, }; @@ -90,11 +90,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_G return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements(struct w_steam_iface *_this, CGameID nGameID) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements(struct w_iface *_this, CGameID nGameID) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNumGroupAchievements_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); @@ -102,11 +102,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetNu return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName(struct w_steam_iface *_this, CGameID nGameID, uint32_t iAchievement) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName(struct w_iface *_this, CGameID nGameID, uint32_t iAchievement) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievementName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .iAchievement = iAchievement, }; @@ -115,11 +115,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_G return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats(struct w_steam_iface *_this, CGameID nGameID) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats(struct w_iface *_this, CGameID nGameID) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_RequestCurrentStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); @@ -127,11 +127,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_Request return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat(struct w_iface *_this, CGameID nGameID, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, .pData = pData, @@ -142,11 +142,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2(struct w_iface *_this, CGameID nGameID, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, .pData = pData, @@ -157,11 +157,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat(struct w_iface *_this, CGameID nGameID, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, .nData = nData, @@ -172,11 +172,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2(struct w_iface *_this, CGameID nGameID, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, .fData = fData, @@ -187,11 +187,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat(struct w_iface *_this, CGameID nGameID, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateAvgRateStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, .flCountThisSession = flCountThisSession, @@ -203,11 +203,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_UpdateA return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement(struct w_iface *_this, CGameID nGameID, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, .pbAchieved = pbAchieved, @@ -218,11 +218,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement(struct w_iface *_this, CGameID nGameID, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGroupAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, .pbAchieved = pbAchieved, @@ -233,11 +233,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetGrou return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement(struct w_iface *_this, CGameID nGameID, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; @@ -247,11 +247,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement(struct w_iface *_this, CGameID nGameID, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGroupAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; @@ -261,11 +261,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_SetGrou return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats(struct w_steam_iface *_this, CGameID nGameID) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats(struct w_iface *_this, CGameID nGameID) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); @@ -273,11 +273,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_StoreSt return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement(struct w_iface *_this, CGameID nGameID, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; @@ -287,11 +287,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearAc return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement(struct w_iface *_this, CGameID nGameID, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGroupAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; @@ -301,11 +301,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_ClearGr return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon(struct w_iface *_this, CGameID nGameID, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementIcon_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; @@ -315,11 +315,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAch return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, const char *pchKey) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute(struct w_iface *_this, CGameID nGameID, const char *pchName, const char *pchKey) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_GetAchievementDisplayAttribute_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, .pchKey = pchKey, @@ -362,9 +362,9 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_vtables ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001(void *u_iface) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUSERSTATS_INTERFACE_VERSION001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION001_vtable, 22, "STEAMUSERSTATS_INTERFACE_VERSION001"); r->u_iface = u_iface; @@ -390,11 +390,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_G DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute, 20) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress, 24) -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats(struct w_steam_iface *_this, CGameID nGameID) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats(struct w_iface *_this, CGameID nGameID) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); @@ -402,11 +402,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNu return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName(struct w_steam_iface *_this, CGameID nGameID, uint32_t iStat) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName(struct w_iface *_this, CGameID nGameID, uint32_t iStat) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .iStat = iStat, }; @@ -415,11 +415,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_G return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType(struct w_iface *_this, CGameID nGameID, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStatType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; @@ -429,11 +429,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetSt return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements(struct w_steam_iface *_this, CGameID nGameID) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements(struct w_iface *_this, CGameID nGameID) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNumAchievements_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); @@ -441,11 +441,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetNu return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName(struct w_steam_iface *_this, CGameID nGameID, uint32_t iAchievement) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName(struct w_iface *_this, CGameID nGameID, uint32_t iAchievement) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .iAchievement = iAchievement, }; @@ -454,11 +454,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_G return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats(struct w_steam_iface *_this, CGameID nGameID) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats(struct w_iface *_this, CGameID nGameID) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_RequestCurrentStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); @@ -466,11 +466,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_Request return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat(struct w_iface *_this, CGameID nGameID, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, .pData = pData, @@ -481,11 +481,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2(struct w_iface *_this, CGameID nGameID, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, .pData = pData, @@ -496,11 +496,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat(struct w_iface *_this, CGameID nGameID, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, .nData = nData, @@ -511,11 +511,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2(struct w_iface *_this, CGameID nGameID, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, .fData = fData, @@ -526,11 +526,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat(struct w_iface *_this, CGameID nGameID, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateAvgRateStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, .flCountThisSession = flCountThisSession, @@ -542,11 +542,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_UpdateA return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement(struct w_iface *_this, CGameID nGameID, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, .pbAchieved = pbAchieved, @@ -557,11 +557,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement(struct w_iface *_this, CGameID nGameID, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; @@ -571,11 +571,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_SetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement(struct w_iface *_this, CGameID nGameID, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; @@ -585,11 +585,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_ClearAc return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats(struct w_steam_iface *_this, CGameID nGameID) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats(struct w_iface *_this, CGameID nGameID) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, }; TRACE("%p\n", _this); @@ -597,11 +597,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_StoreSt return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon(struct w_steam_iface *_this, CGameID nGameID, const char *pchName) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon(struct w_iface *_this, CGameID nGameID, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementIcon_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, }; @@ -611,11 +611,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAch return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, const char *pchKey) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute(struct w_iface *_this, CGameID nGameID, const char *pchName, const char *pchKey) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_GetAchievementDisplayAttribute_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, .pchKey = pchKey, @@ -627,11 +627,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_G return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress(struct w_steam_iface *_this, CGameID nGameID, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress(struct w_iface *_this, CGameID nGameID, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_IndicateAchievementProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nGameID = nGameID, .pchName = pchName, .nCurProgress = nCurProgress, @@ -670,9 +670,9 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_vtables ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002(void *u_iface) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUSERSTATS_INTERFACE_VERSION002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION002_vtable, 18, "STEAMUSERSTATS_INTERFACE_VERSION002"); r->u_iface = u_iface; @@ -693,22 +693,22 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_G DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute, 12) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress, 16) -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_RequestCurrentStats, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat(struct w_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -718,11 +718,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2(struct w_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -732,11 +732,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat(struct w_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nData = nData, }; @@ -746,11 +746,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2(struct w_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .fData = fData, }; @@ -760,11 +760,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat(struct w_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateAvgRateStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .flCountThisSession = flCountThisSession, .dSessionLength = dSessionLength, @@ -775,11 +775,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_UpdateA return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement(struct w_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; @@ -789,11 +789,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -802,11 +802,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_SetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -815,22 +815,22 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_ClearAc return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_StoreStats, ¶ms ); return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon(struct w_steam_iface *_this, const char *pchName) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementIcon_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -839,11 +839,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAch return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute(struct w_iface *_this, const char *pchName, const char *pchKey) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_GetAchievementDisplayAttribute_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; @@ -854,11 +854,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_G return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress(struct w_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_IndicateAchievementProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nCurProgress = nCurProgress, .nMaxProgress = nMaxProgress, @@ -891,9 +891,9 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_vtables ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003(void *u_iface) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUSERSTATS_INTERFACE_VERSION003"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION003"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION003_vtable, 13, "STEAMUSERSTATS_INTERFACE_VERSION003"); r->u_iface = u_iface; @@ -918,22 +918,22 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_G DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2, 20) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement, 20) -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestCurrentStats, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat(struct w_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -943,11 +943,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2(struct w_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -957,11 +957,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat(struct w_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nData = nData, }; @@ -971,11 +971,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2(struct w_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .fData = fData, }; @@ -985,11 +985,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat(struct w_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateAvgRateStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .flCountThisSession = flCountThisSession, .dSessionLength = dSessionLength, @@ -1000,11 +1000,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_UpdateA return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement(struct w_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; @@ -1014,11 +1014,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -1027,11 +1027,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_SetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -1040,22 +1040,22 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_ClearAc return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_StoreStats, ¶ms ); return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon(struct w_steam_iface *_this, const char *pchName) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementIcon_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -1064,11 +1064,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAch return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute(struct w_iface *_this, const char *pchName, const char *pchKey) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetAchievementDisplayAttribute_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; @@ -1079,11 +1079,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_G return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress(struct w_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_IndicateAchievementProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nCurProgress = nCurProgress, .nMaxProgress = nMaxProgress, @@ -1094,11 +1094,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_Indicat return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_RequestUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); @@ -1106,11 +1106,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_Reque return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -1121,11 +1121,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -1136,11 +1136,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_GetUserAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pbAchieved = pbAchieved, @@ -1177,9 +1177,9 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_vtables ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004(void *u_iface) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUSERSTATS_INTERFACE_VERSION004"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION004"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION004_vtable, 17, "STEAMUSERSTATS_INTERFACE_VERSION004"); r->u_iface = u_iface; @@ -1214,22 +1214,22 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_D DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry, 28) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore, 24) -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestCurrentStats, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat(struct w_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -1239,11 +1239,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2(struct w_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -1253,11 +1253,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat(struct w_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nData = nData, }; @@ -1267,11 +1267,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2(struct w_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .fData = fData, }; @@ -1281,11 +1281,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat(struct w_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateAvgRateStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .flCountThisSession = flCountThisSession, .dSessionLength = dSessionLength, @@ -1296,11 +1296,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UpdateA return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement(struct w_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; @@ -1310,11 +1310,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -1323,11 +1323,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_SetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -1336,22 +1336,22 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ClearAc return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_StoreStats, ¶ms ); return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon(struct w_steam_iface *_this, const char *pchName) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -1360,11 +1360,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAch return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute(struct w_iface *_this, const char *pchName, const char *pchKey) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; @@ -1375,11 +1375,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_G return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress(struct w_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_IndicateAchievementProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nCurProgress = nCurProgress, .nMaxProgress = nMaxProgress, @@ -1390,11 +1390,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_Indicat return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_RequestUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); @@ -1402,11 +1402,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_Reque return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -1417,11 +1417,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -1432,11 +1432,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUserAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pbAchieved = pbAchieved, @@ -1447,11 +1447,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats(struct w_steam_iface *_this, int8_t bAchievementsToo) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats(struct w_iface *_this, int8_t bAchievementsToo) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAllStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bAchievementsToo = bAchievementsToo, }; TRACE("%p\n", _this); @@ -1459,11 +1459,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_ResetAl return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName, uint32_t eLeaderboardSortMethod, uint32_t eLeaderboardDisplayType) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard(struct w_iface *_this, const char *pchLeaderboardName, uint32_t eLeaderboardSortMethod, uint32_t eLeaderboardDisplayType) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindOrCreateLeaderboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, .eLeaderboardSortMethod = eLeaderboardSortMethod, .eLeaderboardDisplayType = eLeaderboardDisplayType, @@ -1474,11 +1474,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindO return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard(struct w_iface *_this, const char *pchLeaderboardName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeaderboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, }; TRACE("%p\n", _this); @@ -1487,11 +1487,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindL return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -1499,11 +1499,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_G return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardEntryCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -1511,11 +1511,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLea return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardSortMethod_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -1523,11 +1523,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLe return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardDisplayType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -1535,11 +1535,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLe return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardDataRequest, int32_t nRangeStart, int32_t nRangeEnd) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries(struct w_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardDataRequest, int32_t nRangeStart, int32_t nRangeEnd) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_DownloadLeaderboardEntries_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .eLeaderboardDataRequest = eLeaderboardDataRequest, .nRangeStart = nRangeStart, @@ -1550,11 +1550,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_Downl return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_104 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry(struct w_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_104 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDownloadedLeaderboardEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboardEntries = hSteamLeaderboardEntries, .index = index, .pLeaderboardEntry = pLeaderboardEntry, @@ -1566,11 +1566,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetDown return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, int32_t nScore, int32_t *pScoreDetails, int32_t cScoreDetailsCount) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore(struct w_iface *_this, uint64_t hSteamLeaderboard, int32_t nScore, int32_t *pScoreDetails, int32_t cScoreDetailsCount) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_UploadLeaderboardScore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .nScore = nScore, .pScoreDetails = pScoreDetails, @@ -1617,9 +1617,9 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_vtables ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005(void *u_iface) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUSERSTATS_INTERFACE_VERSION005"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION005"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_vtable, 27, "STEAMUSERSTATS_INTERFACE_VERSION005"); r->u_iface = u_iface; @@ -1655,22 +1655,22 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_G DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore, 28) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers, 4) -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestCurrentStats, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat(struct w_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -1680,11 +1680,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2(struct w_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -1694,11 +1694,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat(struct w_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nData = nData, }; @@ -1708,11 +1708,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2(struct w_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .fData = fData, }; @@ -1722,11 +1722,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat(struct w_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateAvgRateStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .flCountThisSession = flCountThisSession, .dSessionLength = dSessionLength, @@ -1737,11 +1737,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UpdateA return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement(struct w_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; @@ -1751,11 +1751,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -1764,11 +1764,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_SetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -1777,22 +1777,22 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ClearAc return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_StoreStats, ¶ms ); return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon(struct w_steam_iface *_this, const char *pchName) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementIcon_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -1801,11 +1801,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAch return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute(struct w_iface *_this, const char *pchName, const char *pchKey) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetAchievementDisplayAttribute_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; @@ -1816,11 +1816,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_G return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress(struct w_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_IndicateAchievementProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nCurProgress = nCurProgress, .nMaxProgress = nMaxProgress, @@ -1831,11 +1831,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_Indicat return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_RequestUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); @@ -1843,11 +1843,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_Reque return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -1858,11 +1858,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -1873,11 +1873,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUserAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pbAchieved = pbAchieved, @@ -1888,11 +1888,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats(struct w_steam_iface *_this, int8_t bAchievementsToo) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats(struct w_iface *_this, int8_t bAchievementsToo) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAllStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bAchievementsToo = bAchievementsToo, }; TRACE("%p\n", _this); @@ -1900,11 +1900,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_ResetAl return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName, uint32_t eLeaderboardSortMethod, uint32_t eLeaderboardDisplayType) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard(struct w_iface *_this, const char *pchLeaderboardName, uint32_t eLeaderboardSortMethod, uint32_t eLeaderboardDisplayType) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindOrCreateLeaderboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, .eLeaderboardSortMethod = eLeaderboardSortMethod, .eLeaderboardDisplayType = eLeaderboardDisplayType, @@ -1915,11 +1915,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindO return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard(struct w_iface *_this, const char *pchLeaderboardName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindLeaderboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, }; TRACE("%p\n", _this); @@ -1928,11 +1928,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_FindL return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -1940,11 +1940,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_G return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardEntryCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -1952,11 +1952,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLea return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardSortMethod_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -1964,11 +1964,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLe return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLeaderboardDisplayType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -1976,11 +1976,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetLe return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardDataRequest, int32_t nRangeStart, int32_t nRangeEnd) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries(struct w_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardDataRequest, int32_t nRangeStart, int32_t nRangeEnd) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_DownloadLeaderboardEntries_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .eLeaderboardDataRequest = eLeaderboardDataRequest, .nRangeStart = nRangeStart, @@ -1991,11 +1991,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_Downl return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_104 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry(struct w_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_104 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDownloadedLeaderboardEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboardEntries = hSteamLeaderboardEntries, .index = index, .pLeaderboardEntry = pLeaderboardEntry, @@ -2007,11 +2007,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetDown return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardUploadScoreMethod, int32_t nScore, const int32_t *pScoreDetails, int32_t cScoreDetailsCount) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore(struct w_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardUploadScoreMethod, int32_t nScore, const int32_t *pScoreDetails, int32_t cScoreDetailsCount) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_UploadLeaderboardScore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .eLeaderboardUploadScoreMethod = eLeaderboardUploadScoreMethod, .nScore = nScore, @@ -2023,11 +2023,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_Uploa return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_GetNumberOfCurrentPlayers, ¶ms ); @@ -2071,9 +2071,9 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_vtables ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006(void *u_iface) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUSERSTATS_INTERFACE_VERSION006"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION006"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION006_vtable, 28, "STEAMUSERSTATS_INTERFACE_VERSION006"); r->u_iface = u_iface; @@ -2111,22 +2111,22 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_G DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore, 28) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers, 4) -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestCurrentStats, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat(struct w_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -2136,11 +2136,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2(struct w_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -2150,11 +2150,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat(struct w_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nData = nData, }; @@ -2164,11 +2164,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2(struct w_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .fData = fData, }; @@ -2178,11 +2178,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat(struct w_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateAvgRateStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .flCountThisSession = flCountThisSession, .dSessionLength = dSessionLength, @@ -2193,11 +2193,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UpdateA return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement(struct w_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; @@ -2207,11 +2207,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -2220,11 +2220,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_SetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -2233,11 +2233,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ClearAc return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime(struct w_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementAndUnlockTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, .punUnlockTime = punUnlockTime, @@ -2248,22 +2248,22 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_StoreStats, ¶ms ); return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon(struct w_steam_iface *_this, const char *pchName) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementIcon_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -2272,11 +2272,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAch return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute(struct w_iface *_this, const char *pchName, const char *pchKey) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetAchievementDisplayAttribute_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; @@ -2287,11 +2287,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_G return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress(struct w_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_IndicateAchievementProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nCurProgress = nCurProgress, .nMaxProgress = nMaxProgress, @@ -2302,11 +2302,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_Indicat return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_RequestUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); @@ -2314,11 +2314,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_Reque return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -2329,11 +2329,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -2344,11 +2344,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pbAchieved = pbAchieved, @@ -2359,11 +2359,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUserAchievementAndUnlockTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pbAchieved = pbAchieved, @@ -2375,11 +2375,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats(struct w_steam_iface *_this, int8_t bAchievementsToo) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats(struct w_iface *_this, int8_t bAchievementsToo) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAllStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bAchievementsToo = bAchievementsToo, }; TRACE("%p\n", _this); @@ -2387,11 +2387,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_ResetAl return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName, uint32_t eLeaderboardSortMethod, uint32_t eLeaderboardDisplayType) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard(struct w_iface *_this, const char *pchLeaderboardName, uint32_t eLeaderboardSortMethod, uint32_t eLeaderboardDisplayType) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindOrCreateLeaderboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, .eLeaderboardSortMethod = eLeaderboardSortMethod, .eLeaderboardDisplayType = eLeaderboardDisplayType, @@ -2402,11 +2402,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindO return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard(struct w_iface *_this, const char *pchLeaderboardName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindLeaderboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, }; TRACE("%p\n", _this); @@ -2415,11 +2415,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_FindL return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -2427,11 +2427,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_G return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardEntryCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -2439,11 +2439,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLea return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardSortMethod_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -2451,11 +2451,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLe return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLeaderboardDisplayType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -2463,11 +2463,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetLe return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardDataRequest, int32_t nRangeStart, int32_t nRangeEnd) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries(struct w_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardDataRequest, int32_t nRangeStart, int32_t nRangeEnd) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_DownloadLeaderboardEntries_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .eLeaderboardDataRequest = eLeaderboardDataRequest, .nRangeStart = nRangeStart, @@ -2478,11 +2478,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_Downl return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_104 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry(struct w_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_104 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDownloadedLeaderboardEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboardEntries = hSteamLeaderboardEntries, .index = index, .pLeaderboardEntry = pLeaderboardEntry, @@ -2494,11 +2494,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetDown return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardUploadScoreMethod, int32_t nScore, const int32_t *pScoreDetails, int32_t cScoreDetailsCount) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore(struct w_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardUploadScoreMethod, int32_t nScore, const int32_t *pScoreDetails, int32_t cScoreDetailsCount) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_UploadLeaderboardScore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .eLeaderboardUploadScoreMethod = eLeaderboardUploadScoreMethod, .nScore = nScore, @@ -2510,11 +2510,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_Uploa return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_GetNumberOfCurrentPlayers, ¶ms ); @@ -2560,9 +2560,9 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_vtables ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007(void *u_iface) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUSERSTATS_INTERFACE_VERSION007"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION007"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION007_vtable, 30, "STEAMUSERSTATS_INTERFACE_VERSION007"); r->u_iface = u_iface; @@ -2601,22 +2601,22 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_U DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC, 20) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers, 4) -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestCurrentStats, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat(struct w_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -2626,11 +2626,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2(struct w_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -2640,11 +2640,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat(struct w_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nData = nData, }; @@ -2654,11 +2654,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2(struct w_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .fData = fData, }; @@ -2668,11 +2668,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat(struct w_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateAvgRateStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .flCountThisSession = flCountThisSession, .dSessionLength = dSessionLength, @@ -2683,11 +2683,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UpdateA return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement(struct w_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; @@ -2697,11 +2697,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -2710,11 +2710,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_SetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -2723,11 +2723,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ClearAc return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime(struct w_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementAndUnlockTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, .punUnlockTime = punUnlockTime, @@ -2738,22 +2738,22 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_StoreStats, ¶ms ); return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon(struct w_steam_iface *_this, const char *pchName) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementIcon_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -2762,11 +2762,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAch return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute(struct w_iface *_this, const char *pchName, const char *pchKey) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetAchievementDisplayAttribute_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; @@ -2777,11 +2777,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_G return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress(struct w_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_IndicateAchievementProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nCurProgress = nCurProgress, .nMaxProgress = nMaxProgress, @@ -2792,11 +2792,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_Indicat return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_RequestUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); @@ -2804,11 +2804,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_Reque return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -2819,11 +2819,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -2834,11 +2834,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pbAchieved = pbAchieved, @@ -2849,11 +2849,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUserAchievementAndUnlockTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pbAchieved = pbAchieved, @@ -2865,11 +2865,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats(struct w_steam_iface *_this, int8_t bAchievementsToo) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats(struct w_iface *_this, int8_t bAchievementsToo) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAllStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bAchievementsToo = bAchievementsToo, }; TRACE("%p\n", _this); @@ -2877,11 +2877,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_ResetAl return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName, uint32_t eLeaderboardSortMethod, uint32_t eLeaderboardDisplayType) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard(struct w_iface *_this, const char *pchLeaderboardName, uint32_t eLeaderboardSortMethod, uint32_t eLeaderboardDisplayType) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindOrCreateLeaderboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, .eLeaderboardSortMethod = eLeaderboardSortMethod, .eLeaderboardDisplayType = eLeaderboardDisplayType, @@ -2892,11 +2892,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindO return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard(struct w_iface *_this, const char *pchLeaderboardName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindLeaderboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, }; TRACE("%p\n", _this); @@ -2905,11 +2905,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_FindL return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -2917,11 +2917,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_G return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardEntryCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -2929,11 +2929,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLea return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardSortMethod_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -2941,11 +2941,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLe return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLeaderboardDisplayType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -2953,11 +2953,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetLe return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardDataRequest, int32_t nRangeStart, int32_t nRangeEnd) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries(struct w_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardDataRequest, int32_t nRangeStart, int32_t nRangeEnd) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_DownloadLeaderboardEntries_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .eLeaderboardDataRequest = eLeaderboardDataRequest, .nRangeStart = nRangeStart, @@ -2968,11 +2968,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_Downl return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_111x *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry(struct w_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_111x *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDownloadedLeaderboardEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboardEntries = hSteamLeaderboardEntries, .index = index, .pLeaderboardEntry = pLeaderboardEntry, @@ -2984,11 +2984,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetDown return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardUploadScoreMethod, int32_t nScore, const int32_t *pScoreDetails, int32_t cScoreDetailsCount) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore(struct w_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardUploadScoreMethod, int32_t nScore, const int32_t *pScoreDetails, int32_t cScoreDetailsCount) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_UploadLeaderboardScore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .eLeaderboardUploadScoreMethod = eLeaderboardUploadScoreMethod, .nScore = nScore, @@ -3000,11 +3000,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_Uploa return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint64_t hUGC) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC(struct w_iface *_this, uint64_t hSteamLeaderboard, uint64_t hUGC) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_AttachLeaderboardUGC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .hUGC = hUGC, }; @@ -3013,11 +3013,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_Attac return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_GetNumberOfCurrentPlayers, ¶ms ); @@ -3064,9 +3064,9 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_vtables ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008(void *u_iface) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUSERSTATS_INTERFACE_VERSION008"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION008"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION008_vtable, 31, "STEAMUSERSTATS_INTERFACE_VERSION008"); r->u_iface = u_iface; @@ -3106,22 +3106,22 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_U DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC, 20) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers, 4) -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestCurrentStats, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat(struct w_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -3131,11 +3131,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2(struct w_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -3145,11 +3145,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat(struct w_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nData = nData, }; @@ -3159,11 +3159,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2(struct w_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .fData = fData, }; @@ -3173,11 +3173,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat(struct w_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateAvgRateStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .flCountThisSession = flCountThisSession, .dSessionLength = dSessionLength, @@ -3188,11 +3188,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UpdateA return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement(struct w_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; @@ -3202,11 +3202,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -3215,11 +3215,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_SetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -3228,11 +3228,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ClearAc return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime(struct w_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementAndUnlockTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, .punUnlockTime = punUnlockTime, @@ -3243,22 +3243,22 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_StoreStats, ¶ms ); return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon(struct w_steam_iface *_this, const char *pchName) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementIcon_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -3267,11 +3267,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAch return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute(struct w_iface *_this, const char *pchName, const char *pchKey) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetAchievementDisplayAttribute_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; @@ -3282,11 +3282,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_G return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress(struct w_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_IndicateAchievementProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nCurProgress = nCurProgress, .nMaxProgress = nMaxProgress, @@ -3297,11 +3297,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_Indicat return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_RequestUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); @@ -3309,11 +3309,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_Reque return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -3324,11 +3324,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -3339,11 +3339,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pbAchieved = pbAchieved, @@ -3354,11 +3354,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUserAchievementAndUnlockTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pbAchieved = pbAchieved, @@ -3370,11 +3370,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats(struct w_steam_iface *_this, int8_t bAchievementsToo) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats(struct w_iface *_this, int8_t bAchievementsToo) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAllStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bAchievementsToo = bAchievementsToo, }; TRACE("%p\n", _this); @@ -3382,11 +3382,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_ResetAl return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName, uint32_t eLeaderboardSortMethod, uint32_t eLeaderboardDisplayType) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard(struct w_iface *_this, const char *pchLeaderboardName, uint32_t eLeaderboardSortMethod, uint32_t eLeaderboardDisplayType) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindOrCreateLeaderboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, .eLeaderboardSortMethod = eLeaderboardSortMethod, .eLeaderboardDisplayType = eLeaderboardDisplayType, @@ -3397,11 +3397,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindO return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard(struct w_iface *_this, const char *pchLeaderboardName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindLeaderboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, }; TRACE("%p\n", _this); @@ -3410,11 +3410,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_FindL return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -3422,11 +3422,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_G return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardEntryCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -3434,11 +3434,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLea return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardSortMethod_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -3446,11 +3446,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLe return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLeaderboardDisplayType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -3458,11 +3458,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetLe return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardDataRequest, int32_t nRangeStart, int32_t nRangeEnd) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries(struct w_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardDataRequest, int32_t nRangeStart, int32_t nRangeEnd) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntries_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .eLeaderboardDataRequest = eLeaderboardDataRequest, .nRangeStart = nRangeStart, @@ -3473,11 +3473,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_Downl return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, CSteamID *prgUsers, int32_t cUsers) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers(struct w_iface *_this, uint64_t hSteamLeaderboard, CSteamID *prgUsers, int32_t cUsers) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_DownloadLeaderboardEntriesForUsers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .prgUsers = prgUsers, .cUsers = cUsers, @@ -3487,11 +3487,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_Downl return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_111x *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry(struct w_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_111x *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDownloadedLeaderboardEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboardEntries = hSteamLeaderboardEntries, .index = index, .pLeaderboardEntry = pLeaderboardEntry, @@ -3503,11 +3503,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetDown return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardUploadScoreMethod, int32_t nScore, const int32_t *pScoreDetails, int32_t cScoreDetailsCount) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore(struct w_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardUploadScoreMethod, int32_t nScore, const int32_t *pScoreDetails, int32_t cScoreDetailsCount) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_UploadLeaderboardScore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .eLeaderboardUploadScoreMethod = eLeaderboardUploadScoreMethod, .nScore = nScore, @@ -3519,11 +3519,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_Uploa return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint64_t hUGC) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC(struct w_iface *_this, uint64_t hSteamLeaderboard, uint64_t hUGC) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_AttachLeaderboardUGC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .hUGC = hUGC, }; @@ -3532,11 +3532,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_Attac return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_GetNumberOfCurrentPlayers, ¶ms ); @@ -3584,9 +3584,9 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_vtables ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009(void *u_iface) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUSERSTATS_INTERFACE_VERSION009"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION009"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION009_vtable, 32, "STEAMUSERSTATS_INTERFACE_VERSION009"); r->u_iface = u_iface; @@ -3635,22 +3635,22 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_G DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory, 16) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2, 16) -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestCurrentStats, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat(struct w_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -3660,11 +3660,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2(struct w_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -3674,11 +3674,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat(struct w_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nData = nData, }; @@ -3688,11 +3688,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2(struct w_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .fData = fData, }; @@ -3702,11 +3702,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat(struct w_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateAvgRateStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .flCountThisSession = flCountThisSession, .dSessionLength = dSessionLength, @@ -3717,11 +3717,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UpdateA return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement(struct w_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; @@ -3731,11 +3731,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -3744,11 +3744,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_SetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -3757,11 +3757,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ClearAc return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime(struct w_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAndUnlockTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, .punUnlockTime = punUnlockTime, @@ -3772,22 +3772,22 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_StoreStats, ¶ms ); return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon(struct w_steam_iface *_this, const char *pchName) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementIcon_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -3796,11 +3796,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAch return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute(struct w_iface *_this, const char *pchName, const char *pchKey) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementDisplayAttribute_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; @@ -3811,11 +3811,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_G return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress(struct w_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_IndicateAchievementProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nCurProgress = nCurProgress, .nMaxProgress = nMaxProgress, @@ -3826,11 +3826,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_Indicat return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); @@ -3838,11 +3838,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_Reque return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -3853,11 +3853,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -3868,11 +3868,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pbAchieved = pbAchieved, @@ -3883,11 +3883,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUserAchievementAndUnlockTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pbAchieved = pbAchieved, @@ -3899,11 +3899,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats(struct w_steam_iface *_this, int8_t bAchievementsToo) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats(struct w_iface *_this, int8_t bAchievementsToo) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAllStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bAchievementsToo = bAchievementsToo, }; TRACE("%p\n", _this); @@ -3911,11 +3911,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_ResetAl return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName, uint32_t eLeaderboardSortMethod, uint32_t eLeaderboardDisplayType) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard(struct w_iface *_this, const char *pchLeaderboardName, uint32_t eLeaderboardSortMethod, uint32_t eLeaderboardDisplayType) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindOrCreateLeaderboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, .eLeaderboardSortMethod = eLeaderboardSortMethod, .eLeaderboardDisplayType = eLeaderboardDisplayType, @@ -3926,11 +3926,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindO return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard(struct w_iface *_this, const char *pchLeaderboardName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindLeaderboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, }; TRACE("%p\n", _this); @@ -3939,11 +3939,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_FindL return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -3951,11 +3951,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_G return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardEntryCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -3963,11 +3963,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLea return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardSortMethod_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -3975,11 +3975,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLe return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLeaderboardDisplayType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -3987,11 +3987,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetLe return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardDataRequest, int32_t nRangeStart, int32_t nRangeEnd) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries(struct w_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardDataRequest, int32_t nRangeStart, int32_t nRangeEnd) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntries_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .eLeaderboardDataRequest = eLeaderboardDataRequest, .nRangeStart = nRangeStart, @@ -4002,11 +4002,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_Downl return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, CSteamID *prgUsers, int32_t cUsers) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers(struct w_iface *_this, uint64_t hSteamLeaderboard, CSteamID *prgUsers, int32_t cUsers) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_DownloadLeaderboardEntriesForUsers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .prgUsers = prgUsers, .cUsers = cUsers, @@ -4016,11 +4016,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_Downl return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_111x *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry(struct w_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_111x *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDownloadedLeaderboardEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboardEntries = hSteamLeaderboardEntries, .index = index, .pLeaderboardEntry = pLeaderboardEntry, @@ -4032,11 +4032,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetDown return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardUploadScoreMethod, int32_t nScore, const int32_t *pScoreDetails, int32_t cScoreDetailsCount) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore(struct w_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardUploadScoreMethod, int32_t nScore, const int32_t *pScoreDetails, int32_t cScoreDetailsCount) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_UploadLeaderboardScore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .eLeaderboardUploadScoreMethod = eLeaderboardUploadScoreMethod, .nScore = nScore, @@ -4048,11 +4048,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_Uploa return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint64_t hUGC) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC(struct w_iface *_this, uint64_t hSteamLeaderboard, uint64_t hUGC) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_AttachLeaderboardUGC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .hUGC = hUGC, }; @@ -4061,33 +4061,33 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_Attac return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNumberOfCurrentPlayers, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalAchievementPercentages, ¶ms ); return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo(struct w_steam_iface *_this, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo(struct w_iface *_this, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMostAchievedAchievementInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .unNameBufLen = unNameBufLen, .pflPercent = pflPercent, @@ -4098,11 +4098,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetMos return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo(struct w_steam_iface *_this, int32_t iIteratorPrevious, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo(struct w_iface *_this, int32_t iIteratorPrevious, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNextMostAchievedAchievementInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iIteratorPrevious = iIteratorPrevious, .pchName = pchName, .unNameBufLen = unNameBufLen, @@ -4114,11 +4114,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetNex return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent(struct w_steam_iface *_this, const char *pchName, float *pflPercent) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent(struct w_iface *_this, const char *pchName, float *pflPercent) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchievementAchievedPercent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pflPercent = pflPercent, }; @@ -4128,11 +4128,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetAchi return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats(struct w_steam_iface *_this, int32_t nHistoryDays) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats(struct w_iface *_this, int32_t nHistoryDays) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_RequestGlobalStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nHistoryDays = nHistoryDays, }; TRACE("%p\n", _this); @@ -4140,11 +4140,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_Reque return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat(struct w_steam_iface *_this, const char *pchStatName, int64_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat(struct w_iface *_this, const char *pchStatName, int64_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchStatName = pchStatName, .pData = pData, }; @@ -4154,11 +4154,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlob return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2(struct w_steam_iface *_this, const char *pchStatName, double *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2(struct w_iface *_this, const char *pchStatName, double *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchStatName = pchStatName, .pData = pData, }; @@ -4168,11 +4168,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlob return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory(struct w_steam_iface *_this, const char *pchStatName, int64_t *pData, uint32_t cubData) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory(struct w_iface *_this, const char *pchStatName, int64_t *pData, uint32_t cubData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchStatName = pchStatName, .pData = pData, .cubData = cubData, @@ -4183,11 +4183,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlo return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2(struct w_steam_iface *_this, const char *pchStatName, double *pData, uint32_t cubData) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2(struct w_iface *_this, const char *pchStatName, double *pData, uint32_t cubData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_GetGlobalStatHistory_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchStatName = pchStatName, .pData = pData, .cubData = cubData, @@ -4248,9 +4248,9 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_vtables ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010(void *u_iface) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUSERSTATS_INTERFACE_VERSION010"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION010"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION010_vtable, 41, "STEAMUSERSTATS_INTERFACE_VERSION010"); r->u_iface = u_iface; @@ -4301,22 +4301,22 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_G DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory, 16) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2, 16) -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestCurrentStats, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat(struct w_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -4326,11 +4326,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2(struct w_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -4340,11 +4340,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat(struct w_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nData = nData, }; @@ -4354,11 +4354,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2(struct w_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .fData = fData, }; @@ -4368,11 +4368,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat(struct w_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateAvgRateStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .flCountThisSession = flCountThisSession, .dSessionLength = dSessionLength, @@ -4383,11 +4383,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UpdateA return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement(struct w_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; @@ -4397,11 +4397,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -4410,11 +4410,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_SetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -4423,11 +4423,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ClearAc return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime(struct w_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAndUnlockTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, .punUnlockTime = punUnlockTime, @@ -4438,22 +4438,22 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_StoreStats, ¶ms ); return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon(struct w_steam_iface *_this, const char *pchName) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementIcon_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -4462,11 +4462,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAch return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute(struct w_iface *_this, const char *pchName, const char *pchKey) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementDisplayAttribute_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; @@ -4477,11 +4477,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_G return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress(struct w_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_IndicateAchievementProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nCurProgress = nCurProgress, .nMaxProgress = nMaxProgress, @@ -4492,22 +4492,22 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_Indicat return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumAchievements, ¶ms ); return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName(struct w_steam_iface *_this, uint32_t iAchievement) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName(struct w_iface *_this, uint32_t iAchievement) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iAchievement = iAchievement, }; TRACE("%p\n", _this); @@ -4515,11 +4515,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_G return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); @@ -4527,11 +4527,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_Reque return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -4542,11 +4542,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -4557,11 +4557,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pbAchieved = pbAchieved, @@ -4572,11 +4572,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUserAchievementAndUnlockTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pbAchieved = pbAchieved, @@ -4588,11 +4588,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats(struct w_steam_iface *_this, int8_t bAchievementsToo) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats(struct w_iface *_this, int8_t bAchievementsToo) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAllStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bAchievementsToo = bAchievementsToo, }; TRACE("%p\n", _this); @@ -4600,11 +4600,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_ResetAl return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName, uint32_t eLeaderboardSortMethod, uint32_t eLeaderboardDisplayType) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard(struct w_iface *_this, const char *pchLeaderboardName, uint32_t eLeaderboardSortMethod, uint32_t eLeaderboardDisplayType) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindOrCreateLeaderboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, .eLeaderboardSortMethod = eLeaderboardSortMethod, .eLeaderboardDisplayType = eLeaderboardDisplayType, @@ -4615,11 +4615,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindO return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard(struct w_iface *_this, const char *pchLeaderboardName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindLeaderboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, }; TRACE("%p\n", _this); @@ -4628,11 +4628,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_FindL return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -4640,11 +4640,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_G return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardEntryCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -4652,11 +4652,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLea return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardSortMethod_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -4664,11 +4664,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLe return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLeaderboardDisplayType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -4676,11 +4676,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetLe return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardDataRequest, int32_t nRangeStart, int32_t nRangeEnd) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries(struct w_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardDataRequest, int32_t nRangeStart, int32_t nRangeEnd) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntries_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .eLeaderboardDataRequest = eLeaderboardDataRequest, .nRangeStart = nRangeStart, @@ -4691,11 +4691,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_Downl return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, CSteamID *prgUsers, int32_t cUsers) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers(struct w_iface *_this, uint64_t hSteamLeaderboard, CSteamID *prgUsers, int32_t cUsers) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_DownloadLeaderboardEntriesForUsers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .prgUsers = prgUsers, .cUsers = cUsers, @@ -4705,11 +4705,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_Downl return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_123 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry(struct w_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_123 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDownloadedLeaderboardEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboardEntries = hSteamLeaderboardEntries, .index = index, .pLeaderboardEntry = pLeaderboardEntry, @@ -4721,11 +4721,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetDown return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardUploadScoreMethod, int32_t nScore, const int32_t *pScoreDetails, int32_t cScoreDetailsCount) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore(struct w_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardUploadScoreMethod, int32_t nScore, const int32_t *pScoreDetails, int32_t cScoreDetailsCount) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_UploadLeaderboardScore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .eLeaderboardUploadScoreMethod = eLeaderboardUploadScoreMethod, .nScore = nScore, @@ -4737,11 +4737,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_Uploa return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint64_t hUGC) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC(struct w_iface *_this, uint64_t hSteamLeaderboard, uint64_t hUGC) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_AttachLeaderboardUGC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .hUGC = hUGC, }; @@ -4750,33 +4750,33 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_Attac return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNumberOfCurrentPlayers, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalAchievementPercentages, ¶ms ); return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo(struct w_steam_iface *_this, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo(struct w_iface *_this, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMostAchievedAchievementInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .unNameBufLen = unNameBufLen, .pflPercent = pflPercent, @@ -4787,11 +4787,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetMos return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo(struct w_steam_iface *_this, int32_t iIteratorPrevious, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo(struct w_iface *_this, int32_t iIteratorPrevious, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNextMostAchievedAchievementInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iIteratorPrevious = iIteratorPrevious, .pchName = pchName, .unNameBufLen = unNameBufLen, @@ -4803,11 +4803,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetNex return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent(struct w_steam_iface *_this, const char *pchName, float *pflPercent) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent(struct w_iface *_this, const char *pchName, float *pflPercent) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchievementAchievedPercent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pflPercent = pflPercent, }; @@ -4817,11 +4817,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetAchi return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats(struct w_steam_iface *_this, int32_t nHistoryDays) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats(struct w_iface *_this, int32_t nHistoryDays) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_RequestGlobalStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nHistoryDays = nHistoryDays, }; TRACE("%p\n", _this); @@ -4829,11 +4829,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_Reque return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat(struct w_steam_iface *_this, const char *pchStatName, int64_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat(struct w_iface *_this, const char *pchStatName, int64_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchStatName = pchStatName, .pData = pData, }; @@ -4843,11 +4843,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlob return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2(struct w_steam_iface *_this, const char *pchStatName, double *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2(struct w_iface *_this, const char *pchStatName, double *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchStatName = pchStatName, .pData = pData, }; @@ -4857,11 +4857,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlob return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory(struct w_steam_iface *_this, const char *pchStatName, int64_t *pData, uint32_t cubData) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory(struct w_iface *_this, const char *pchStatName, int64_t *pData, uint32_t cubData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchStatName = pchStatName, .pData = pData, .cubData = cubData, @@ -4872,11 +4872,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlo return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2(struct w_steam_iface *_this, const char *pchStatName, double *pData, uint32_t cubData) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2(struct w_iface *_this, const char *pchStatName, double *pData, uint32_t cubData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_GetGlobalStatHistory_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchStatName = pchStatName, .pData = pData, .cubData = cubData, @@ -4939,9 +4939,9 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_vtables ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011(void *u_iface) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUSERSTATS_INTERFACE_VERSION011"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION011"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION011_vtable, 43, "STEAMUSERSTATS_INTERFACE_VERSION011"); r->u_iface = u_iface; @@ -4994,22 +4994,22 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_G DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits, 16) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2, 16) -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestCurrentStats, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat(struct w_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -5019,11 +5019,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2(struct w_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -5033,11 +5033,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat(struct w_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nData = nData, }; @@ -5047,11 +5047,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2(struct w_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .fData = fData, }; @@ -5061,11 +5061,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat(struct w_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateAvgRateStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .flCountThisSession = flCountThisSession, .dSessionLength = dSessionLength, @@ -5076,11 +5076,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UpdateA return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement(struct w_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; @@ -5090,11 +5090,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -5103,11 +5103,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_SetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -5116,11 +5116,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ClearAc return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime(struct w_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAndUnlockTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, .punUnlockTime = punUnlockTime, @@ -5131,22 +5131,22 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_StoreStats, ¶ms ); return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon(struct w_steam_iface *_this, const char *pchName) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -5155,11 +5155,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAch return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute(struct w_iface *_this, const char *pchName, const char *pchKey) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementDisplayAttribute_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; @@ -5170,11 +5170,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_G return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress(struct w_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_IndicateAchievementProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nCurProgress = nCurProgress, .nMaxProgress = nMaxProgress, @@ -5185,22 +5185,22 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_Indicat return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements, ¶ms ); return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName(struct w_steam_iface *_this, uint32_t iAchievement) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName(struct w_iface *_this, uint32_t iAchievement) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iAchievement = iAchievement, }; TRACE("%p\n", _this); @@ -5208,11 +5208,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_G return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); @@ -5220,11 +5220,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_Reque return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -5235,11 +5235,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -5250,11 +5250,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pbAchieved = pbAchieved, @@ -5265,11 +5265,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUserAchievementAndUnlockTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pbAchieved = pbAchieved, @@ -5281,11 +5281,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats(struct w_steam_iface *_this, int8_t bAchievementsToo) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats(struct w_iface *_this, int8_t bAchievementsToo) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAllStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bAchievementsToo = bAchievementsToo, }; TRACE("%p\n", _this); @@ -5293,11 +5293,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_ResetAl return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName, uint32_t eLeaderboardSortMethod, uint32_t eLeaderboardDisplayType) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard(struct w_iface *_this, const char *pchLeaderboardName, uint32_t eLeaderboardSortMethod, uint32_t eLeaderboardDisplayType) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindOrCreateLeaderboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, .eLeaderboardSortMethod = eLeaderboardSortMethod, .eLeaderboardDisplayType = eLeaderboardDisplayType, @@ -5308,11 +5308,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindO return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard(struct w_iface *_this, const char *pchLeaderboardName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeaderboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, }; TRACE("%p\n", _this); @@ -5321,11 +5321,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindL return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -5333,11 +5333,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_G return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardEntryCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -5345,11 +5345,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLea return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardSortMethod_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -5357,11 +5357,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLe return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardDisplayType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -5369,11 +5369,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLe return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardDataRequest, int32_t nRangeStart, int32_t nRangeEnd) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries(struct w_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardDataRequest, int32_t nRangeStart, int32_t nRangeEnd) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntries_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .eLeaderboardDataRequest = eLeaderboardDataRequest, .nRangeStart = nRangeStart, @@ -5384,11 +5384,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_Downl return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, CSteamID *prgUsers, int32_t cUsers) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers(struct w_iface *_this, uint64_t hSteamLeaderboard, CSteamID *prgUsers, int32_t cUsers) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_DownloadLeaderboardEntriesForUsers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .prgUsers = prgUsers, .cUsers = cUsers, @@ -5398,11 +5398,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_Downl return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_123 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry(struct w_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_123 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDownloadedLeaderboardEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboardEntries = hSteamLeaderboardEntries, .index = index, .pLeaderboardEntry = pLeaderboardEntry, @@ -5414,11 +5414,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetDown return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardUploadScoreMethod, int32_t nScore, const int32_t *pScoreDetails, int32_t cScoreDetailsCount) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore(struct w_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardUploadScoreMethod, int32_t nScore, const int32_t *pScoreDetails, int32_t cScoreDetailsCount) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_UploadLeaderboardScore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .eLeaderboardUploadScoreMethod = eLeaderboardUploadScoreMethod, .nScore = nScore, @@ -5430,11 +5430,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_Uploa return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint64_t hUGC) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC(struct w_iface *_this, uint64_t hSteamLeaderboard, uint64_t hUGC) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_AttachLeaderboardUGC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .hUGC = hUGC, }; @@ -5443,33 +5443,33 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_Attac return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumberOfCurrentPlayers, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalAchievementPercentages, ¶ms ); return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo(struct w_steam_iface *_this, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo(struct w_iface *_this, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMostAchievedAchievementInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .unNameBufLen = unNameBufLen, .pflPercent = pflPercent, @@ -5480,11 +5480,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetMos return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo(struct w_steam_iface *_this, int32_t iIteratorPrevious, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo(struct w_iface *_this, int32_t iIteratorPrevious, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNextMostAchievedAchievementInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iIteratorPrevious = iIteratorPrevious, .pchName = pchName, .unNameBufLen = unNameBufLen, @@ -5496,11 +5496,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNex return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent(struct w_steam_iface *_this, const char *pchName, float *pflPercent) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent(struct w_iface *_this, const char *pchName, float *pflPercent) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementAchievedPercent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pflPercent = pflPercent, }; @@ -5510,11 +5510,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchi return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats(struct w_steam_iface *_this, int32_t nHistoryDays) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats(struct w_iface *_this, int32_t nHistoryDays) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_RequestGlobalStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nHistoryDays = nHistoryDays, }; TRACE("%p\n", _this); @@ -5522,11 +5522,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_Reque return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat(struct w_steam_iface *_this, const char *pchStatName, int64_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat(struct w_iface *_this, const char *pchStatName, int64_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchStatName = pchStatName, .pData = pData, }; @@ -5536,11 +5536,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlob return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2(struct w_steam_iface *_this, const char *pchStatName, double *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2(struct w_iface *_this, const char *pchStatName, double *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchStatName = pchStatName, .pData = pData, }; @@ -5550,11 +5550,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlob return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory(struct w_steam_iface *_this, const char *pchStatName, int64_t *pData, uint32_t cubData) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory(struct w_iface *_this, const char *pchStatName, int64_t *pData, uint32_t cubData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchStatName = pchStatName, .pData = pData, .cubData = cubData, @@ -5565,11 +5565,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlo return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2(struct w_steam_iface *_this, const char *pchStatName, double *pData, uint32_t cubData) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2(struct w_iface *_this, const char *pchStatName, double *pData, uint32_t cubData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlobalStatHistory_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchStatName = pchStatName, .pData = pData, .cubData = cubData, @@ -5580,11 +5580,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetGlo return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits(struct w_steam_iface *_this, const char *pchName, int32_t *pnMinProgress, int32_t *pnMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits(struct w_iface *_this, const char *pchName, int32_t *pnMinProgress, int32_t *pnMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pnMinProgress = pnMinProgress, .pnMaxProgress = pnMaxProgress, @@ -5595,11 +5595,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2(struct w_steam_iface *_this, const char *pchName, float *pfMinProgress, float *pfMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2(struct w_iface *_this, const char *pchName, float *pfMinProgress, float *pfMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementProgressLimits_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pfMinProgress = pfMinProgress, .pfMaxProgress = pfMaxProgress, @@ -5664,9 +5664,9 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_vtables ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012(void *u_iface) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUSERSTATS_INTERFACE_VERSION012"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION012"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_vtable, 45, "STEAMUSERSTATS_INTERFACE_VERSION012"); r->u_iface = u_iface; @@ -5718,11 +5718,11 @@ DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_G DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgressLimits, 16) DEFINE_THISCALL_WRAPPER(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgressLimits_2, 16) -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat(struct w_steam_iface *_this, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat(struct w_iface *_this, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -5732,11 +5732,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat_2(struct w_steam_iface *_this, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat_2(struct w_iface *_this, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pData = pData, }; @@ -5746,11 +5746,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat(struct w_steam_iface *_this, const char *pchName, int32_t nData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat(struct w_iface *_this, const char *pchName, int32_t nData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nData = nData, }; @@ -5760,11 +5760,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat_2(struct w_steam_iface *_this, const char *pchName, float fData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat_2(struct w_iface *_this, const char *pchName, float fData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .fData = fData, }; @@ -5774,11 +5774,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetStat return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UpdateAvgRateStat(struct w_steam_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UpdateAvgRateStat(struct w_iface *_this, const char *pchName, float flCountThisSession, double dSessionLength) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UpdateAvgRateStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .flCountThisSession = flCountThisSession, .dSessionLength = dSessionLength, @@ -5789,11 +5789,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UpdateA return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievement(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievement(struct w_iface *_this, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, }; @@ -5803,11 +5803,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -5816,11 +5816,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_SetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ClearAchievement(struct w_steam_iface *_this, const char *pchName) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ClearAchievement(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ClearAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -5829,11 +5829,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ClearAc return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAndUnlockTime(struct w_steam_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAndUnlockTime(struct w_iface *_this, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAndUnlockTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pbAchieved = pbAchieved, .punUnlockTime = punUnlockTime, @@ -5844,22 +5844,22 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_StoreStats(struct w_steam_iface *_this) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_StoreStats(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_StoreStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_StoreStats, ¶ms ); return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementIcon(struct w_steam_iface *_this, const char *pchName) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementIcon(struct w_iface *_this, const char *pchName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementIcon_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, }; TRACE("%p\n", _this); @@ -5868,11 +5868,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAch return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementDisplayAttribute(struct w_steam_iface *_this, const char *pchName, const char *pchKey) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementDisplayAttribute(struct w_iface *_this, const char *pchName, const char *pchKey) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementDisplayAttribute_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pchKey = pchKey, }; @@ -5883,11 +5883,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_G return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_IndicateAchievementProgress(struct w_steam_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_IndicateAchievementProgress(struct w_iface *_this, const char *pchName, uint32_t nCurProgress, uint32_t nMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_IndicateAchievementProgress_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .nCurProgress = nCurProgress, .nMaxProgress = nMaxProgress, @@ -5898,22 +5898,22 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_Indicat return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumAchievements(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumAchievements(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumAchievements_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumAchievements, ¶ms ); return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementName(struct w_steam_iface *_this, uint32_t iAchievement) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementName(struct w_iface *_this, uint32_t iAchievement) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iAchievement = iAchievement, }; TRACE("%p\n", _this); @@ -5921,11 +5921,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_G return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestUserStats(struct w_steam_iface *_this, CSteamID steamIDUser) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestUserStats(struct w_iface *_this, CSteamID steamIDUser) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestUserStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, }; TRACE("%p\n", _this); @@ -5933,11 +5933,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_Reque return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int32_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -5948,11 +5948,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat_2(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat_2(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, float *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pData = pData, @@ -5963,11 +5963,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievement(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievement(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievement_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pbAchieved = pbAchieved, @@ -5978,11 +5978,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievementAndUnlockTime(struct w_steam_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievementAndUnlockTime(struct w_iface *_this, CSteamID steamIDUser, const char *pchName, int8_t *pbAchieved, uint32_t *punUnlockTime) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUserAchievementAndUnlockTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .steamIDUser = steamIDUser, .pchName = pchName, .pbAchieved = pbAchieved, @@ -5994,11 +5994,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetUser return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ResetAllStats(struct w_steam_iface *_this, int8_t bAchievementsToo) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ResetAllStats(struct w_iface *_this, int8_t bAchievementsToo) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ResetAllStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bAchievementsToo = bAchievementsToo, }; TRACE("%p\n", _this); @@ -6006,11 +6006,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_ResetAl return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindOrCreateLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName, uint32_t eLeaderboardSortMethod, uint32_t eLeaderboardDisplayType) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindOrCreateLeaderboard(struct w_iface *_this, const char *pchLeaderboardName, uint32_t eLeaderboardSortMethod, uint32_t eLeaderboardDisplayType) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindOrCreateLeaderboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, .eLeaderboardSortMethod = eLeaderboardSortMethod, .eLeaderboardDisplayType = eLeaderboardDisplayType, @@ -6021,11 +6021,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindO return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindLeaderboard(struct w_steam_iface *_this, const char *pchLeaderboardName) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindLeaderboard(struct w_iface *_this, const char *pchLeaderboardName) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindLeaderboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchLeaderboardName = pchLeaderboardName, }; TRACE("%p\n", _this); @@ -6034,11 +6034,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_FindL return params._ret; } -const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardName(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardName(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardName_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -6046,11 +6046,11 @@ const char * __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_G return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardEntryCount(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardEntryCount(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardEntryCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -6058,11 +6058,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLea return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardSortMethod(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardSortMethod(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardSortMethod_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -6070,11 +6070,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLe return params._ret; } -uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardDisplayType(struct w_steam_iface *_this, uint64_t hSteamLeaderboard) +uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardDisplayType(struct w_iface *_this, uint64_t hSteamLeaderboard) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLeaderboardDisplayType_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, }; TRACE("%p\n", _this); @@ -6082,11 +6082,11 @@ uint32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetLe return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEntries(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardDataRequest, int32_t nRangeStart, int32_t nRangeEnd) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEntries(struct w_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardDataRequest, int32_t nRangeStart, int32_t nRangeEnd) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEntries_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .eLeaderboardDataRequest = eLeaderboardDataRequest, .nRangeStart = nRangeStart, @@ -6097,11 +6097,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_Downl return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEntriesForUsers(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, CSteamID *prgUsers, int32_t cUsers) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEntriesForUsers(struct w_iface *_this, uint64_t hSteamLeaderboard, CSteamID *prgUsers, int32_t cUsers) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_DownloadLeaderboardEntriesForUsers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .prgUsers = prgUsers, .cUsers = cUsers, @@ -6111,11 +6111,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_Downl return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetDownloadedLeaderboardEntry(struct w_steam_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_123 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetDownloadedLeaderboardEntry(struct w_iface *_this, uint64_t hSteamLeaderboardEntries, int32_t index, w_LeaderboardEntry_t_123 *pLeaderboardEntry, int32_t *pDetails, int32_t cDetailsMax) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetDownloadedLeaderboardEntry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboardEntries = hSteamLeaderboardEntries, .index = index, .pLeaderboardEntry = pLeaderboardEntry, @@ -6127,11 +6127,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetDown return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UploadLeaderboardScore(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardUploadScoreMethod, int32_t nScore, const int32_t *pScoreDetails, int32_t cScoreDetailsCount) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UploadLeaderboardScore(struct w_iface *_this, uint64_t hSteamLeaderboard, uint32_t eLeaderboardUploadScoreMethod, int32_t nScore, const int32_t *pScoreDetails, int32_t cScoreDetailsCount) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_UploadLeaderboardScore_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .eLeaderboardUploadScoreMethod = eLeaderboardUploadScoreMethod, .nScore = nScore, @@ -6143,11 +6143,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_Uploa return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_AttachLeaderboardUGC(struct w_steam_iface *_this, uint64_t hSteamLeaderboard, uint64_t hUGC) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_AttachLeaderboardUGC(struct w_iface *_this, uint64_t hSteamLeaderboard, uint64_t hUGC) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_AttachLeaderboardUGC_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamLeaderboard = hSteamLeaderboard, .hUGC = hUGC, }; @@ -6156,33 +6156,33 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_Attac return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumberOfCurrentPlayers(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumberOfCurrentPlayers(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumberOfCurrentPlayers_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNumberOfCurrentPlayers, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalAchievementPercentages(struct w_steam_iface *_this) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalAchievementPercentages(struct w_iface *_this) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalAchievementPercentages_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalAchievementPercentages, ¶ms ); return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetMostAchievedAchievementInfo(struct w_steam_iface *_this, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetMostAchievedAchievementInfo(struct w_iface *_this, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetMostAchievedAchievementInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .unNameBufLen = unNameBufLen, .pflPercent = pflPercent, @@ -6193,11 +6193,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetMos return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNextMostAchievedAchievementInfo(struct w_steam_iface *_this, int32_t iIteratorPrevious, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNextMostAchievedAchievementInfo(struct w_iface *_this, int32_t iIteratorPrevious, char *pchName, uint32_t unNameBufLen, float *pflPercent, int8_t *pbAchieved) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNextMostAchievedAchievementInfo_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iIteratorPrevious = iIteratorPrevious, .pchName = pchName, .unNameBufLen = unNameBufLen, @@ -6209,11 +6209,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetNex return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAchievedPercent(struct w_steam_iface *_this, const char *pchName, float *pflPercent) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAchievedPercent(struct w_iface *_this, const char *pchName, float *pflPercent) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementAchievedPercent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pflPercent = pflPercent, }; @@ -6223,11 +6223,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchi return params._ret; } -uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalStats(struct w_steam_iface *_this, int32_t nHistoryDays) +uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalStats(struct w_iface *_this, int32_t nHistoryDays) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_RequestGlobalStats_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nHistoryDays = nHistoryDays, }; TRACE("%p\n", _this); @@ -6235,11 +6235,11 @@ uint64_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_Reque return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat(struct w_steam_iface *_this, const char *pchStatName, int64_t *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat(struct w_iface *_this, const char *pchStatName, int64_t *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchStatName = pchStatName, .pData = pData, }; @@ -6249,11 +6249,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlob return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat_2(struct w_steam_iface *_this, const char *pchStatName, double *pData) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat_2(struct w_iface *_this, const char *pchStatName, double *pData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStat_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchStatName = pchStatName, .pData = pData, }; @@ -6263,11 +6263,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlob return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory(struct w_steam_iface *_this, const char *pchStatName, int64_t *pData, uint32_t cubData) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory(struct w_iface *_this, const char *pchStatName, int64_t *pData, uint32_t cubData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchStatName = pchStatName, .pData = pData, .cubData = cubData, @@ -6278,11 +6278,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlo return params._ret; } -int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory_2(struct w_steam_iface *_this, const char *pchStatName, double *pData, uint32_t cubData) +int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory_2(struct w_iface *_this, const char *pchStatName, double *pData, uint32_t cubData) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlobalStatHistory_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchStatName = pchStatName, .pData = pData, .cubData = cubData, @@ -6293,11 +6293,11 @@ int32_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetGlo return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgressLimits(struct w_steam_iface *_this, const char *pchName, int32_t *pnMinProgress, int32_t *pnMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgressLimits(struct w_iface *_this, const char *pchName, int32_t *pnMinProgress, int32_t *pnMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgressLimits_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pnMinProgress = pnMinProgress, .pnMaxProgress = pnMaxProgress, @@ -6308,11 +6308,11 @@ int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchi return params._ret; } -int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgressLimits_2(struct w_steam_iface *_this, const char *pchName, float *pfMinProgress, float *pfMaxProgress) +int8_t __thiscall winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgressLimits_2(struct w_iface *_this, const char *pchName, float *pfMinProgress, float *pfMaxProgress) { struct ISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_GetAchievementProgressLimits_2_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchName = pchName, .pfMinProgress = pfMinProgress, .pfMaxProgress = pfMaxProgress, @@ -6376,9 +6376,9 @@ __ASM_BLOCK_BEGIN(winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_vtables ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013(void *u_iface) +struct w_iface *create_winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMUSERSTATS_INTERFACE_VERSION013"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMUSERSTATS_INTERFACE_VERSION013"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION013_vtable, 44, "STEAMUSERSTATS_INTERFACE_VERSION013"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamUtils.c b/lsteamclient/winISteamUtils.c index 0c752394..bd4649a4 100644 --- a/lsteamclient/winISteamUtils.c +++ b/lsteamclient/winISteamUtils.c @@ -18,66 +18,66 @@ DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils002_IsAPICallCompleted, 16) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils002_GetAPICallFailureReason, 12) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils002_GetAPICallResult, 28) -uint32_t __thiscall winISteamUtils_SteamUtils002_GetSecondsSinceAppActive(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils002_GetSecondsSinceAppActive(struct w_iface *_this) { struct ISteamUtils_SteamUtils002_GetSecondsSinceAppActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetSecondsSinceAppActive, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils002_GetSecondsSinceComputerActive(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils002_GetSecondsSinceComputerActive(struct w_iface *_this) { struct ISteamUtils_SteamUtils002_GetSecondsSinceComputerActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetSecondsSinceComputerActive, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils002_GetConnectedUniverse(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils002_GetConnectedUniverse(struct w_iface *_this) { struct ISteamUtils_SteamUtils002_GetConnectedUniverse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetConnectedUniverse, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils002_GetServerRealTime(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils002_GetServerRealTime(struct w_iface *_this) { struct ISteamUtils_SteamUtils002_GetServerRealTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetServerRealTime, ¶ms ); return params._ret; } -const char * __thiscall winISteamUtils_SteamUtils002_GetIPCountry(struct w_steam_iface *_this) +const char * __thiscall winISteamUtils_SteamUtils002_GetIPCountry(struct w_iface *_this) { struct ISteamUtils_SteamUtils002_GetIPCountry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetIPCountry, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils002_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) +int8_t __thiscall winISteamUtils_SteamUtils002_GetImageSize(struct w_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { struct ISteamUtils_SteamUtils002_GetImageSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iImage = iImage, .pnWidth = pnWidth, .pnHeight = pnHeight, @@ -87,11 +87,11 @@ int8_t __thiscall winISteamUtils_SteamUtils002_GetImageSize(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils002_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) +int8_t __thiscall winISteamUtils_SteamUtils002_GetImageRGBA(struct w_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { struct ISteamUtils_SteamUtils002_GetImageRGBA_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iImage = iImage, .pubDest = pubDest, .nDestBufferSize = nDestBufferSize, @@ -101,11 +101,11 @@ int8_t __thiscall winISteamUtils_SteamUtils002_GetImageRGBA(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils002_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) +int8_t __thiscall winISteamUtils_SteamUtils002_GetCSERIPPort(struct w_iface *_this, uint32_t *unIP, uint16_t *usPort) { struct ISteamUtils_SteamUtils002_GetCSERIPPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -114,44 +114,44 @@ int8_t __thiscall winISteamUtils_SteamUtils002_GetCSERIPPort(struct w_steam_ifac return params._ret; } -uint8_t __thiscall winISteamUtils_SteamUtils002_GetCurrentBatteryPower(struct w_steam_iface *_this) +uint8_t __thiscall winISteamUtils_SteamUtils002_GetCurrentBatteryPower(struct w_iface *_this) { struct ISteamUtils_SteamUtils002_GetCurrentBatteryPower_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetCurrentBatteryPower, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils002_GetAppID(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils002_GetAppID(struct w_iface *_this) { struct ISteamUtils_SteamUtils002_GetAppID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_GetAppID, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils002_SetOverlayNotificationPosition(struct w_steam_iface *_this, uint32_t eNotificationPosition) +void __thiscall winISteamUtils_SteamUtils002_SetOverlayNotificationPosition(struct w_iface *_this, uint32_t eNotificationPosition) { struct ISteamUtils_SteamUtils002_SetOverlayNotificationPosition_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eNotificationPosition = eNotificationPosition, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils002_SetOverlayNotificationPosition, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils002_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils002_IsAPICallCompleted(struct w_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) { struct ISteamUtils_SteamUtils002_IsAPICallCompleted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pbFailed = pbFailed, }; @@ -160,11 +160,11 @@ int8_t __thiscall winISteamUtils_SteamUtils002_IsAPICallCompleted(struct w_steam return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils002_GetAPICallFailureReason(struct w_steam_iface *_this, uint64_t hSteamAPICall) +uint32_t __thiscall winISteamUtils_SteamUtils002_GetAPICallFailureReason(struct w_iface *_this, uint64_t hSteamAPICall) { struct ISteamUtils_SteamUtils002_GetAPICallFailureReason_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, }; TRACE("%p\n", _this); @@ -172,11 +172,11 @@ uint32_t __thiscall winISteamUtils_SteamUtils002_GetAPICallFailureReason(struct return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils002_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils002_GetAPICallResult(struct w_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) { struct ISteamUtils_SteamUtils002_GetAPICallResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pCallback = pCallback, .cubCallback = cubCallback, @@ -211,9 +211,9 @@ __ASM_BLOCK_BEGIN(winISteamUtils_SteamUtils002_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUtils_SteamUtils002(void *u_iface) +struct w_iface *create_winISteamUtils_SteamUtils002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUtils002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUtils002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUtils_SteamUtils002_vtable, 14, "SteamUtils002"); r->u_iface = u_iface; @@ -239,66 +239,66 @@ DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils004_GetIPCCallCount, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils004_SetWarningMessageHook, 8) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils004_IsOverlayEnabled, 4) -uint32_t __thiscall winISteamUtils_SteamUtils004_GetSecondsSinceAppActive(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils004_GetSecondsSinceAppActive(struct w_iface *_this) { struct ISteamUtils_SteamUtils004_GetSecondsSinceAppActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetSecondsSinceAppActive, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils004_GetSecondsSinceComputerActive(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils004_GetSecondsSinceComputerActive(struct w_iface *_this) { struct ISteamUtils_SteamUtils004_GetSecondsSinceComputerActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetSecondsSinceComputerActive, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils004_GetConnectedUniverse(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils004_GetConnectedUniverse(struct w_iface *_this) { struct ISteamUtils_SteamUtils004_GetConnectedUniverse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetConnectedUniverse, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils004_GetServerRealTime(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils004_GetServerRealTime(struct w_iface *_this) { struct ISteamUtils_SteamUtils004_GetServerRealTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetServerRealTime, ¶ms ); return params._ret; } -const char * __thiscall winISteamUtils_SteamUtils004_GetIPCountry(struct w_steam_iface *_this) +const char * __thiscall winISteamUtils_SteamUtils004_GetIPCountry(struct w_iface *_this) { struct ISteamUtils_SteamUtils004_GetIPCountry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetIPCountry, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils004_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) +int8_t __thiscall winISteamUtils_SteamUtils004_GetImageSize(struct w_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { struct ISteamUtils_SteamUtils004_GetImageSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iImage = iImage, .pnWidth = pnWidth, .pnHeight = pnHeight, @@ -308,11 +308,11 @@ int8_t __thiscall winISteamUtils_SteamUtils004_GetImageSize(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils004_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) +int8_t __thiscall winISteamUtils_SteamUtils004_GetImageRGBA(struct w_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { struct ISteamUtils_SteamUtils004_GetImageRGBA_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iImage = iImage, .pubDest = pubDest, .nDestBufferSize = nDestBufferSize, @@ -322,11 +322,11 @@ int8_t __thiscall winISteamUtils_SteamUtils004_GetImageRGBA(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils004_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) +int8_t __thiscall winISteamUtils_SteamUtils004_GetCSERIPPort(struct w_iface *_this, uint32_t *unIP, uint16_t *usPort) { struct ISteamUtils_SteamUtils004_GetCSERIPPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -335,44 +335,44 @@ int8_t __thiscall winISteamUtils_SteamUtils004_GetCSERIPPort(struct w_steam_ifac return params._ret; } -uint8_t __thiscall winISteamUtils_SteamUtils004_GetCurrentBatteryPower(struct w_steam_iface *_this) +uint8_t __thiscall winISteamUtils_SteamUtils004_GetCurrentBatteryPower(struct w_iface *_this) { struct ISteamUtils_SteamUtils004_GetCurrentBatteryPower_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetCurrentBatteryPower, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils004_GetAppID(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils004_GetAppID(struct w_iface *_this) { struct ISteamUtils_SteamUtils004_GetAppID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetAppID, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils004_SetOverlayNotificationPosition(struct w_steam_iface *_this, uint32_t eNotificationPosition) +void __thiscall winISteamUtils_SteamUtils004_SetOverlayNotificationPosition(struct w_iface *_this, uint32_t eNotificationPosition) { struct ISteamUtils_SteamUtils004_SetOverlayNotificationPosition_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eNotificationPosition = eNotificationPosition, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_SetOverlayNotificationPosition, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils004_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils004_IsAPICallCompleted(struct w_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) { struct ISteamUtils_SteamUtils004_IsAPICallCompleted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pbFailed = pbFailed, }; @@ -381,11 +381,11 @@ int8_t __thiscall winISteamUtils_SteamUtils004_IsAPICallCompleted(struct w_steam return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils004_GetAPICallFailureReason(struct w_steam_iface *_this, uint64_t hSteamAPICall) +uint32_t __thiscall winISteamUtils_SteamUtils004_GetAPICallFailureReason(struct w_iface *_this, uint64_t hSteamAPICall) { struct ISteamUtils_SteamUtils004_GetAPICallFailureReason_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, }; TRACE("%p\n", _this); @@ -393,11 +393,11 @@ uint32_t __thiscall winISteamUtils_SteamUtils004_GetAPICallFailureReason(struct return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils004_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils004_GetAPICallResult(struct w_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) { struct ISteamUtils_SteamUtils004_GetAPICallResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pCallback = pCallback, .cubCallback = cubCallback, @@ -409,43 +409,43 @@ int8_t __thiscall winISteamUtils_SteamUtils004_GetAPICallResult(struct w_steam_i return params._ret; } -void __thiscall winISteamUtils_SteamUtils004_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamUtils_SteamUtils004_RunFrame(struct w_iface *_this) { struct ISteamUtils_SteamUtils004_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamUtils_SteamUtils004_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils004_GetIPCCallCount(struct w_iface *_this) { struct ISteamUtils_SteamUtils004_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils004_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamUtils_SteamUtils004_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamUtils_SteamUtils004_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils004_IsOverlayEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils004_IsOverlayEnabled(struct w_iface *_this) { struct ISteamUtils_SteamUtils004_IsOverlayEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils004_IsOverlayEnabled, ¶ms ); @@ -479,9 +479,9 @@ __ASM_BLOCK_BEGIN(winISteamUtils_SteamUtils004_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUtils_SteamUtils004(void *u_iface) +struct w_iface *create_winISteamUtils_SteamUtils004( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUtils004"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUtils004"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUtils_SteamUtils004_vtable, 18, "SteamUtils004"); r->u_iface = u_iface; @@ -512,66 +512,66 @@ DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils005_ShowGamepadTextInput, 20) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils005_GetEnteredGamepadTextLength, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils005_GetEnteredGamepadTextInput, 12) -uint32_t __thiscall winISteamUtils_SteamUtils005_GetSecondsSinceAppActive(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils005_GetSecondsSinceAppActive(struct w_iface *_this) { struct ISteamUtils_SteamUtils005_GetSecondsSinceAppActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetSecondsSinceAppActive, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils005_GetSecondsSinceComputerActive(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils005_GetSecondsSinceComputerActive(struct w_iface *_this) { struct ISteamUtils_SteamUtils005_GetSecondsSinceComputerActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetSecondsSinceComputerActive, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils005_GetConnectedUniverse(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils005_GetConnectedUniverse(struct w_iface *_this) { struct ISteamUtils_SteamUtils005_GetConnectedUniverse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetConnectedUniverse, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils005_GetServerRealTime(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils005_GetServerRealTime(struct w_iface *_this) { struct ISteamUtils_SteamUtils005_GetServerRealTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetServerRealTime, ¶ms ); return params._ret; } -const char * __thiscall winISteamUtils_SteamUtils005_GetIPCountry(struct w_steam_iface *_this) +const char * __thiscall winISteamUtils_SteamUtils005_GetIPCountry(struct w_iface *_this) { struct ISteamUtils_SteamUtils005_GetIPCountry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetIPCountry, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils005_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) +int8_t __thiscall winISteamUtils_SteamUtils005_GetImageSize(struct w_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { struct ISteamUtils_SteamUtils005_GetImageSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iImage = iImage, .pnWidth = pnWidth, .pnHeight = pnHeight, @@ -581,11 +581,11 @@ int8_t __thiscall winISteamUtils_SteamUtils005_GetImageSize(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils005_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) +int8_t __thiscall winISteamUtils_SteamUtils005_GetImageRGBA(struct w_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { struct ISteamUtils_SteamUtils005_GetImageRGBA_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iImage = iImage, .pubDest = pubDest, .nDestBufferSize = nDestBufferSize, @@ -595,11 +595,11 @@ int8_t __thiscall winISteamUtils_SteamUtils005_GetImageRGBA(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils005_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) +int8_t __thiscall winISteamUtils_SteamUtils005_GetCSERIPPort(struct w_iface *_this, uint32_t *unIP, uint16_t *usPort) { struct ISteamUtils_SteamUtils005_GetCSERIPPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -608,44 +608,44 @@ int8_t __thiscall winISteamUtils_SteamUtils005_GetCSERIPPort(struct w_steam_ifac return params._ret; } -uint8_t __thiscall winISteamUtils_SteamUtils005_GetCurrentBatteryPower(struct w_steam_iface *_this) +uint8_t __thiscall winISteamUtils_SteamUtils005_GetCurrentBatteryPower(struct w_iface *_this) { struct ISteamUtils_SteamUtils005_GetCurrentBatteryPower_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetCurrentBatteryPower, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils005_GetAppID(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils005_GetAppID(struct w_iface *_this) { struct ISteamUtils_SteamUtils005_GetAppID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetAppID, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils005_SetOverlayNotificationPosition(struct w_steam_iface *_this, uint32_t eNotificationPosition) +void __thiscall winISteamUtils_SteamUtils005_SetOverlayNotificationPosition(struct w_iface *_this, uint32_t eNotificationPosition) { struct ISteamUtils_SteamUtils005_SetOverlayNotificationPosition_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eNotificationPosition = eNotificationPosition, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_SetOverlayNotificationPosition, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils005_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils005_IsAPICallCompleted(struct w_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) { struct ISteamUtils_SteamUtils005_IsAPICallCompleted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pbFailed = pbFailed, }; @@ -654,11 +654,11 @@ int8_t __thiscall winISteamUtils_SteamUtils005_IsAPICallCompleted(struct w_steam return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils005_GetAPICallFailureReason(struct w_steam_iface *_this, uint64_t hSteamAPICall) +uint32_t __thiscall winISteamUtils_SteamUtils005_GetAPICallFailureReason(struct w_iface *_this, uint64_t hSteamAPICall) { struct ISteamUtils_SteamUtils005_GetAPICallFailureReason_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, }; TRACE("%p\n", _this); @@ -666,11 +666,11 @@ uint32_t __thiscall winISteamUtils_SteamUtils005_GetAPICallFailureReason(struct return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils005_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils005_GetAPICallResult(struct w_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) { struct ISteamUtils_SteamUtils005_GetAPICallResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pCallback = pCallback, .cubCallback = cubCallback, @@ -682,65 +682,65 @@ int8_t __thiscall winISteamUtils_SteamUtils005_GetAPICallResult(struct w_steam_i return params._ret; } -void __thiscall winISteamUtils_SteamUtils005_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamUtils_SteamUtils005_RunFrame(struct w_iface *_this) { struct ISteamUtils_SteamUtils005_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamUtils_SteamUtils005_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils005_GetIPCCallCount(struct w_iface *_this) { struct ISteamUtils_SteamUtils005_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils005_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamUtils_SteamUtils005_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamUtils_SteamUtils005_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils005_IsOverlayEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils005_IsOverlayEnabled(struct w_iface *_this) { struct ISteamUtils_SteamUtils005_IsOverlayEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_IsOverlayEnabled, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils005_BOverlayNeedsPresent(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils005_BOverlayNeedsPresent(struct w_iface *_this) { struct ISteamUtils_SteamUtils005_BOverlayNeedsPresent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_BOverlayNeedsPresent, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUtils_SteamUtils005_CheckFileSignature(struct w_steam_iface *_this, const char *szFileName) +uint64_t __thiscall winISteamUtils_SteamUtils005_CheckFileSignature(struct w_iface *_this, const char *szFileName) { struct ISteamUtils_SteamUtils005_CheckFileSignature_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .szFileName = szFileName, }; TRACE("%p\n", _this); @@ -749,11 +749,11 @@ uint64_t __thiscall winISteamUtils_SteamUtils005_CheckFileSignature(struct w_ste return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils005_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax) +int8_t __thiscall winISteamUtils_SteamUtils005_ShowGamepadTextInput(struct w_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax) { struct ISteamUtils_SteamUtils005_ShowGamepadTextInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eInputMode = eInputMode, .eLineInputMode = eLineInputMode, .pchDescription = pchDescription, @@ -765,22 +765,22 @@ int8_t __thiscall winISteamUtils_SteamUtils005_ShowGamepadTextInput(struct w_ste return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils005_GetEnteredGamepadTextLength(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils005_GetEnteredGamepadTextLength(struct w_iface *_this) { struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextLength_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils005_GetEnteredGamepadTextLength, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils005_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) +int8_t __thiscall winISteamUtils_SteamUtils005_GetEnteredGamepadTextInput(struct w_iface *_this, char *pchText, uint32_t cchText) { struct ISteamUtils_SteamUtils005_GetEnteredGamepadTextInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchText = pchText, .cchText = cchText, }; @@ -821,9 +821,9 @@ __ASM_BLOCK_BEGIN(winISteamUtils_SteamUtils005_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUtils_SteamUtils005(void *u_iface) +struct w_iface *create_winISteamUtils_SteamUtils005( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUtils005"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUtils005"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUtils_SteamUtils005_vtable, 23, "SteamUtils005"); r->u_iface = u_iface; @@ -856,66 +856,66 @@ DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils006_GetEnteredGamepadTextInput, DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils006_GetSteamUILanguage, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils006_IsSteamRunningInVR, 4) -uint32_t __thiscall winISteamUtils_SteamUtils006_GetSecondsSinceAppActive(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils006_GetSecondsSinceAppActive(struct w_iface *_this) { struct ISteamUtils_SteamUtils006_GetSecondsSinceAppActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetSecondsSinceAppActive, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils006_GetSecondsSinceComputerActive(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils006_GetSecondsSinceComputerActive(struct w_iface *_this) { struct ISteamUtils_SteamUtils006_GetSecondsSinceComputerActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetSecondsSinceComputerActive, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils006_GetConnectedUniverse(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils006_GetConnectedUniverse(struct w_iface *_this) { struct ISteamUtils_SteamUtils006_GetConnectedUniverse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetConnectedUniverse, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils006_GetServerRealTime(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils006_GetServerRealTime(struct w_iface *_this) { struct ISteamUtils_SteamUtils006_GetServerRealTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetServerRealTime, ¶ms ); return params._ret; } -const char * __thiscall winISteamUtils_SteamUtils006_GetIPCountry(struct w_steam_iface *_this) +const char * __thiscall winISteamUtils_SteamUtils006_GetIPCountry(struct w_iface *_this) { struct ISteamUtils_SteamUtils006_GetIPCountry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetIPCountry, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils006_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) +int8_t __thiscall winISteamUtils_SteamUtils006_GetImageSize(struct w_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { struct ISteamUtils_SteamUtils006_GetImageSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iImage = iImage, .pnWidth = pnWidth, .pnHeight = pnHeight, @@ -925,11 +925,11 @@ int8_t __thiscall winISteamUtils_SteamUtils006_GetImageSize(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils006_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) +int8_t __thiscall winISteamUtils_SteamUtils006_GetImageRGBA(struct w_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { struct ISteamUtils_SteamUtils006_GetImageRGBA_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iImage = iImage, .pubDest = pubDest, .nDestBufferSize = nDestBufferSize, @@ -939,11 +939,11 @@ int8_t __thiscall winISteamUtils_SteamUtils006_GetImageRGBA(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils006_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) +int8_t __thiscall winISteamUtils_SteamUtils006_GetCSERIPPort(struct w_iface *_this, uint32_t *unIP, uint16_t *usPort) { struct ISteamUtils_SteamUtils006_GetCSERIPPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -952,44 +952,44 @@ int8_t __thiscall winISteamUtils_SteamUtils006_GetCSERIPPort(struct w_steam_ifac return params._ret; } -uint8_t __thiscall winISteamUtils_SteamUtils006_GetCurrentBatteryPower(struct w_steam_iface *_this) +uint8_t __thiscall winISteamUtils_SteamUtils006_GetCurrentBatteryPower(struct w_iface *_this) { struct ISteamUtils_SteamUtils006_GetCurrentBatteryPower_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetCurrentBatteryPower, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils006_GetAppID(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils006_GetAppID(struct w_iface *_this) { struct ISteamUtils_SteamUtils006_GetAppID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetAppID, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils006_SetOverlayNotificationPosition(struct w_steam_iface *_this, uint32_t eNotificationPosition) +void __thiscall winISteamUtils_SteamUtils006_SetOverlayNotificationPosition(struct w_iface *_this, uint32_t eNotificationPosition) { struct ISteamUtils_SteamUtils006_SetOverlayNotificationPosition_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eNotificationPosition = eNotificationPosition, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_SetOverlayNotificationPosition, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils006_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils006_IsAPICallCompleted(struct w_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) { struct ISteamUtils_SteamUtils006_IsAPICallCompleted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pbFailed = pbFailed, }; @@ -998,11 +998,11 @@ int8_t __thiscall winISteamUtils_SteamUtils006_IsAPICallCompleted(struct w_steam return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils006_GetAPICallFailureReason(struct w_steam_iface *_this, uint64_t hSteamAPICall) +uint32_t __thiscall winISteamUtils_SteamUtils006_GetAPICallFailureReason(struct w_iface *_this, uint64_t hSteamAPICall) { struct ISteamUtils_SteamUtils006_GetAPICallFailureReason_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, }; TRACE("%p\n", _this); @@ -1010,11 +1010,11 @@ uint32_t __thiscall winISteamUtils_SteamUtils006_GetAPICallFailureReason(struct return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils006_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils006_GetAPICallResult(struct w_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) { struct ISteamUtils_SteamUtils006_GetAPICallResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pCallback = pCallback, .cubCallback = cubCallback, @@ -1026,65 +1026,65 @@ int8_t __thiscall winISteamUtils_SteamUtils006_GetAPICallResult(struct w_steam_i return params._ret; } -void __thiscall winISteamUtils_SteamUtils006_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamUtils_SteamUtils006_RunFrame(struct w_iface *_this) { struct ISteamUtils_SteamUtils006_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamUtils_SteamUtils006_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils006_GetIPCCallCount(struct w_iface *_this) { struct ISteamUtils_SteamUtils006_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils006_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamUtils_SteamUtils006_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamUtils_SteamUtils006_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils006_IsOverlayEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils006_IsOverlayEnabled(struct w_iface *_this) { struct ISteamUtils_SteamUtils006_IsOverlayEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_IsOverlayEnabled, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils006_BOverlayNeedsPresent(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils006_BOverlayNeedsPresent(struct w_iface *_this) { struct ISteamUtils_SteamUtils006_BOverlayNeedsPresent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_BOverlayNeedsPresent, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUtils_SteamUtils006_CheckFileSignature(struct w_steam_iface *_this, const char *szFileName) +uint64_t __thiscall winISteamUtils_SteamUtils006_CheckFileSignature(struct w_iface *_this, const char *szFileName) { struct ISteamUtils_SteamUtils006_CheckFileSignature_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .szFileName = szFileName, }; TRACE("%p\n", _this); @@ -1093,11 +1093,11 @@ uint64_t __thiscall winISteamUtils_SteamUtils006_CheckFileSignature(struct w_ste return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils006_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax) +int8_t __thiscall winISteamUtils_SteamUtils006_ShowGamepadTextInput(struct w_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax) { struct ISteamUtils_SteamUtils006_ShowGamepadTextInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eInputMode = eInputMode, .eLineInputMode = eLineInputMode, .pchDescription = pchDescription, @@ -1109,22 +1109,22 @@ int8_t __thiscall winISteamUtils_SteamUtils006_ShowGamepadTextInput(struct w_ste return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils006_GetEnteredGamepadTextLength(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils006_GetEnteredGamepadTextLength(struct w_iface *_this) { struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextLength_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetEnteredGamepadTextLength, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils006_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) +int8_t __thiscall winISteamUtils_SteamUtils006_GetEnteredGamepadTextInput(struct w_iface *_this, char *pchText, uint32_t cchText) { struct ISteamUtils_SteamUtils006_GetEnteredGamepadTextInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchText = pchText, .cchText = cchText, }; @@ -1133,22 +1133,22 @@ int8_t __thiscall winISteamUtils_SteamUtils006_GetEnteredGamepadTextInput(struct return params._ret; } -const char * __thiscall winISteamUtils_SteamUtils006_GetSteamUILanguage(struct w_steam_iface *_this) +const char * __thiscall winISteamUtils_SteamUtils006_GetSteamUILanguage(struct w_iface *_this) { struct ISteamUtils_SteamUtils006_GetSteamUILanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_GetSteamUILanguage, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils006_IsSteamRunningInVR(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils006_IsSteamRunningInVR(struct w_iface *_this) { struct ISteamUtils_SteamUtils006_IsSteamRunningInVR_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils006_IsSteamRunningInVR, ¶ms ); @@ -1189,9 +1189,9 @@ __ASM_BLOCK_BEGIN(winISteamUtils_SteamUtils006_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUtils_SteamUtils006(void *u_iface) +struct w_iface *create_winISteamUtils_SteamUtils006( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUtils006"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUtils006"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUtils_SteamUtils006_vtable, 25, "SteamUtils006"); r->u_iface = u_iface; @@ -1225,66 +1225,66 @@ DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils007_GetSteamUILanguage, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils007_IsSteamRunningInVR, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils007_SetOverlayNotificationInset, 12) -uint32_t __thiscall winISteamUtils_SteamUtils007_GetSecondsSinceAppActive(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils007_GetSecondsSinceAppActive(struct w_iface *_this) { struct ISteamUtils_SteamUtils007_GetSecondsSinceAppActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetSecondsSinceAppActive, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils007_GetSecondsSinceComputerActive(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils007_GetSecondsSinceComputerActive(struct w_iface *_this) { struct ISteamUtils_SteamUtils007_GetSecondsSinceComputerActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetSecondsSinceComputerActive, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils007_GetConnectedUniverse(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils007_GetConnectedUniverse(struct w_iface *_this) { struct ISteamUtils_SteamUtils007_GetConnectedUniverse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetConnectedUniverse, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils007_GetServerRealTime(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils007_GetServerRealTime(struct w_iface *_this) { struct ISteamUtils_SteamUtils007_GetServerRealTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetServerRealTime, ¶ms ); return params._ret; } -const char * __thiscall winISteamUtils_SteamUtils007_GetIPCountry(struct w_steam_iface *_this) +const char * __thiscall winISteamUtils_SteamUtils007_GetIPCountry(struct w_iface *_this) { struct ISteamUtils_SteamUtils007_GetIPCountry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetIPCountry, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils007_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) +int8_t __thiscall winISteamUtils_SteamUtils007_GetImageSize(struct w_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { struct ISteamUtils_SteamUtils007_GetImageSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iImage = iImage, .pnWidth = pnWidth, .pnHeight = pnHeight, @@ -1294,11 +1294,11 @@ int8_t __thiscall winISteamUtils_SteamUtils007_GetImageSize(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils007_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) +int8_t __thiscall winISteamUtils_SteamUtils007_GetImageRGBA(struct w_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { struct ISteamUtils_SteamUtils007_GetImageRGBA_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iImage = iImage, .pubDest = pubDest, .nDestBufferSize = nDestBufferSize, @@ -1308,11 +1308,11 @@ int8_t __thiscall winISteamUtils_SteamUtils007_GetImageRGBA(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils007_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) +int8_t __thiscall winISteamUtils_SteamUtils007_GetCSERIPPort(struct w_iface *_this, uint32_t *unIP, uint16_t *usPort) { struct ISteamUtils_SteamUtils007_GetCSERIPPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -1321,44 +1321,44 @@ int8_t __thiscall winISteamUtils_SteamUtils007_GetCSERIPPort(struct w_steam_ifac return params._ret; } -uint8_t __thiscall winISteamUtils_SteamUtils007_GetCurrentBatteryPower(struct w_steam_iface *_this) +uint8_t __thiscall winISteamUtils_SteamUtils007_GetCurrentBatteryPower(struct w_iface *_this) { struct ISteamUtils_SteamUtils007_GetCurrentBatteryPower_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetCurrentBatteryPower, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils007_GetAppID(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils007_GetAppID(struct w_iface *_this) { struct ISteamUtils_SteamUtils007_GetAppID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetAppID, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils007_SetOverlayNotificationPosition(struct w_steam_iface *_this, uint32_t eNotificationPosition) +void __thiscall winISteamUtils_SteamUtils007_SetOverlayNotificationPosition(struct w_iface *_this, uint32_t eNotificationPosition) { struct ISteamUtils_SteamUtils007_SetOverlayNotificationPosition_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eNotificationPosition = eNotificationPosition, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_SetOverlayNotificationPosition, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils007_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils007_IsAPICallCompleted(struct w_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) { struct ISteamUtils_SteamUtils007_IsAPICallCompleted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pbFailed = pbFailed, }; @@ -1367,11 +1367,11 @@ int8_t __thiscall winISteamUtils_SteamUtils007_IsAPICallCompleted(struct w_steam return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils007_GetAPICallFailureReason(struct w_steam_iface *_this, uint64_t hSteamAPICall) +uint32_t __thiscall winISteamUtils_SteamUtils007_GetAPICallFailureReason(struct w_iface *_this, uint64_t hSteamAPICall) { struct ISteamUtils_SteamUtils007_GetAPICallFailureReason_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, }; TRACE("%p\n", _this); @@ -1379,11 +1379,11 @@ uint32_t __thiscall winISteamUtils_SteamUtils007_GetAPICallFailureReason(struct return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils007_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils007_GetAPICallResult(struct w_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) { struct ISteamUtils_SteamUtils007_GetAPICallResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pCallback = pCallback, .cubCallback = cubCallback, @@ -1395,65 +1395,65 @@ int8_t __thiscall winISteamUtils_SteamUtils007_GetAPICallResult(struct w_steam_i return params._ret; } -void __thiscall winISteamUtils_SteamUtils007_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamUtils_SteamUtils007_RunFrame(struct w_iface *_this) { struct ISteamUtils_SteamUtils007_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamUtils_SteamUtils007_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils007_GetIPCCallCount(struct w_iface *_this) { struct ISteamUtils_SteamUtils007_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils007_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamUtils_SteamUtils007_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamUtils_SteamUtils007_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils007_IsOverlayEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils007_IsOverlayEnabled(struct w_iface *_this) { struct ISteamUtils_SteamUtils007_IsOverlayEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_IsOverlayEnabled, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils007_BOverlayNeedsPresent(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils007_BOverlayNeedsPresent(struct w_iface *_this) { struct ISteamUtils_SteamUtils007_BOverlayNeedsPresent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_BOverlayNeedsPresent, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUtils_SteamUtils007_CheckFileSignature(struct w_steam_iface *_this, const char *szFileName) +uint64_t __thiscall winISteamUtils_SteamUtils007_CheckFileSignature(struct w_iface *_this, const char *szFileName) { struct ISteamUtils_SteamUtils007_CheckFileSignature_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .szFileName = szFileName, }; TRACE("%p\n", _this); @@ -1462,11 +1462,11 @@ uint64_t __thiscall winISteamUtils_SteamUtils007_CheckFileSignature(struct w_ste return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils007_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) +int8_t __thiscall winISteamUtils_SteamUtils007_ShowGamepadTextInput(struct w_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) { struct ISteamUtils_SteamUtils007_ShowGamepadTextInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eInputMode = eInputMode, .eLineInputMode = eLineInputMode, .pchDescription = pchDescription, @@ -1480,22 +1480,22 @@ int8_t __thiscall winISteamUtils_SteamUtils007_ShowGamepadTextInput(struct w_ste return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils007_GetEnteredGamepadTextLength(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils007_GetEnteredGamepadTextLength(struct w_iface *_this) { struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextLength_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetEnteredGamepadTextLength, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils007_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) +int8_t __thiscall winISteamUtils_SteamUtils007_GetEnteredGamepadTextInput(struct w_iface *_this, char *pchText, uint32_t cchText) { struct ISteamUtils_SteamUtils007_GetEnteredGamepadTextInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchText = pchText, .cchText = cchText, }; @@ -1504,33 +1504,33 @@ int8_t __thiscall winISteamUtils_SteamUtils007_GetEnteredGamepadTextInput(struct return params._ret; } -const char * __thiscall winISteamUtils_SteamUtils007_GetSteamUILanguage(struct w_steam_iface *_this) +const char * __thiscall winISteamUtils_SteamUtils007_GetSteamUILanguage(struct w_iface *_this) { struct ISteamUtils_SteamUtils007_GetSteamUILanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_GetSteamUILanguage, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils007_IsSteamRunningInVR(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils007_IsSteamRunningInVR(struct w_iface *_this) { struct ISteamUtils_SteamUtils007_IsSteamRunningInVR_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils007_IsSteamRunningInVR, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils007_SetOverlayNotificationInset(struct w_steam_iface *_this, int32_t nHorizontalInset, int32_t nVerticalInset) +void __thiscall winISteamUtils_SteamUtils007_SetOverlayNotificationInset(struct w_iface *_this, int32_t nHorizontalInset, int32_t nVerticalInset) { struct ISteamUtils_SteamUtils007_SetOverlayNotificationInset_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nHorizontalInset = nHorizontalInset, .nVerticalInset = nVerticalInset, }; @@ -1573,9 +1573,9 @@ __ASM_BLOCK_BEGIN(winISteamUtils_SteamUtils007_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUtils_SteamUtils007(void *u_iface) +struct w_iface *create_winISteamUtils_SteamUtils007( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUtils007"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUtils007"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUtils_SteamUtils007_vtable, 26, "SteamUtils007"); r->u_iface = u_iface; @@ -1611,66 +1611,66 @@ DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils008_SetOverlayNotificationInset DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils008_IsSteamInBigPictureMode, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils008_StartVRDashboard, 4) -uint32_t __thiscall winISteamUtils_SteamUtils008_GetSecondsSinceAppActive(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils008_GetSecondsSinceAppActive(struct w_iface *_this) { struct ISteamUtils_SteamUtils008_GetSecondsSinceAppActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetSecondsSinceAppActive, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils008_GetSecondsSinceComputerActive(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils008_GetSecondsSinceComputerActive(struct w_iface *_this) { struct ISteamUtils_SteamUtils008_GetSecondsSinceComputerActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetSecondsSinceComputerActive, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils008_GetConnectedUniverse(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils008_GetConnectedUniverse(struct w_iface *_this) { struct ISteamUtils_SteamUtils008_GetConnectedUniverse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetConnectedUniverse, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils008_GetServerRealTime(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils008_GetServerRealTime(struct w_iface *_this) { struct ISteamUtils_SteamUtils008_GetServerRealTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetServerRealTime, ¶ms ); return params._ret; } -const char * __thiscall winISteamUtils_SteamUtils008_GetIPCountry(struct w_steam_iface *_this) +const char * __thiscall winISteamUtils_SteamUtils008_GetIPCountry(struct w_iface *_this) { struct ISteamUtils_SteamUtils008_GetIPCountry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetIPCountry, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils008_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) +int8_t __thiscall winISteamUtils_SteamUtils008_GetImageSize(struct w_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { struct ISteamUtils_SteamUtils008_GetImageSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iImage = iImage, .pnWidth = pnWidth, .pnHeight = pnHeight, @@ -1680,11 +1680,11 @@ int8_t __thiscall winISteamUtils_SteamUtils008_GetImageSize(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils008_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) +int8_t __thiscall winISteamUtils_SteamUtils008_GetImageRGBA(struct w_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { struct ISteamUtils_SteamUtils008_GetImageRGBA_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iImage = iImage, .pubDest = pubDest, .nDestBufferSize = nDestBufferSize, @@ -1694,11 +1694,11 @@ int8_t __thiscall winISteamUtils_SteamUtils008_GetImageRGBA(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils008_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) +int8_t __thiscall winISteamUtils_SteamUtils008_GetCSERIPPort(struct w_iface *_this, uint32_t *unIP, uint16_t *usPort) { struct ISteamUtils_SteamUtils008_GetCSERIPPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -1707,44 +1707,44 @@ int8_t __thiscall winISteamUtils_SteamUtils008_GetCSERIPPort(struct w_steam_ifac return params._ret; } -uint8_t __thiscall winISteamUtils_SteamUtils008_GetCurrentBatteryPower(struct w_steam_iface *_this) +uint8_t __thiscall winISteamUtils_SteamUtils008_GetCurrentBatteryPower(struct w_iface *_this) { struct ISteamUtils_SteamUtils008_GetCurrentBatteryPower_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetCurrentBatteryPower, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils008_GetAppID(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils008_GetAppID(struct w_iface *_this) { struct ISteamUtils_SteamUtils008_GetAppID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetAppID, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils008_SetOverlayNotificationPosition(struct w_steam_iface *_this, uint32_t eNotificationPosition) +void __thiscall winISteamUtils_SteamUtils008_SetOverlayNotificationPosition(struct w_iface *_this, uint32_t eNotificationPosition) { struct ISteamUtils_SteamUtils008_SetOverlayNotificationPosition_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eNotificationPosition = eNotificationPosition, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_SetOverlayNotificationPosition, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils008_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils008_IsAPICallCompleted(struct w_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) { struct ISteamUtils_SteamUtils008_IsAPICallCompleted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pbFailed = pbFailed, }; @@ -1753,11 +1753,11 @@ int8_t __thiscall winISteamUtils_SteamUtils008_IsAPICallCompleted(struct w_steam return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils008_GetAPICallFailureReason(struct w_steam_iface *_this, uint64_t hSteamAPICall) +uint32_t __thiscall winISteamUtils_SteamUtils008_GetAPICallFailureReason(struct w_iface *_this, uint64_t hSteamAPICall) { struct ISteamUtils_SteamUtils008_GetAPICallFailureReason_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, }; TRACE("%p\n", _this); @@ -1765,11 +1765,11 @@ uint32_t __thiscall winISteamUtils_SteamUtils008_GetAPICallFailureReason(struct return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils008_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils008_GetAPICallResult(struct w_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) { struct ISteamUtils_SteamUtils008_GetAPICallResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pCallback = pCallback, .cubCallback = cubCallback, @@ -1781,65 +1781,65 @@ int8_t __thiscall winISteamUtils_SteamUtils008_GetAPICallResult(struct w_steam_i return params._ret; } -void __thiscall winISteamUtils_SteamUtils008_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamUtils_SteamUtils008_RunFrame(struct w_iface *_this) { struct ISteamUtils_SteamUtils008_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamUtils_SteamUtils008_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils008_GetIPCCallCount(struct w_iface *_this) { struct ISteamUtils_SteamUtils008_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils008_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamUtils_SteamUtils008_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamUtils_SteamUtils008_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils008_IsOverlayEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils008_IsOverlayEnabled(struct w_iface *_this) { struct ISteamUtils_SteamUtils008_IsOverlayEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_IsOverlayEnabled, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils008_BOverlayNeedsPresent(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils008_BOverlayNeedsPresent(struct w_iface *_this) { struct ISteamUtils_SteamUtils008_BOverlayNeedsPresent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_BOverlayNeedsPresent, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUtils_SteamUtils008_CheckFileSignature(struct w_steam_iface *_this, const char *szFileName) +uint64_t __thiscall winISteamUtils_SteamUtils008_CheckFileSignature(struct w_iface *_this, const char *szFileName) { struct ISteamUtils_SteamUtils008_CheckFileSignature_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .szFileName = szFileName, }; TRACE("%p\n", _this); @@ -1848,11 +1848,11 @@ uint64_t __thiscall winISteamUtils_SteamUtils008_CheckFileSignature(struct w_ste return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils008_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) +int8_t __thiscall winISteamUtils_SteamUtils008_ShowGamepadTextInput(struct w_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) { struct ISteamUtils_SteamUtils008_ShowGamepadTextInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eInputMode = eInputMode, .eLineInputMode = eLineInputMode, .pchDescription = pchDescription, @@ -1866,22 +1866,22 @@ int8_t __thiscall winISteamUtils_SteamUtils008_ShowGamepadTextInput(struct w_ste return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils008_GetEnteredGamepadTextLength(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils008_GetEnteredGamepadTextLength(struct w_iface *_this) { struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextLength_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetEnteredGamepadTextLength, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils008_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) +int8_t __thiscall winISteamUtils_SteamUtils008_GetEnteredGamepadTextInput(struct w_iface *_this, char *pchText, uint32_t cchText) { struct ISteamUtils_SteamUtils008_GetEnteredGamepadTextInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchText = pchText, .cchText = cchText, }; @@ -1890,33 +1890,33 @@ int8_t __thiscall winISteamUtils_SteamUtils008_GetEnteredGamepadTextInput(struct return params._ret; } -const char * __thiscall winISteamUtils_SteamUtils008_GetSteamUILanguage(struct w_steam_iface *_this) +const char * __thiscall winISteamUtils_SteamUtils008_GetSteamUILanguage(struct w_iface *_this) { struct ISteamUtils_SteamUtils008_GetSteamUILanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_GetSteamUILanguage, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils008_IsSteamRunningInVR(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils008_IsSteamRunningInVR(struct w_iface *_this) { struct ISteamUtils_SteamUtils008_IsSteamRunningInVR_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_IsSteamRunningInVR, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils008_SetOverlayNotificationInset(struct w_steam_iface *_this, int32_t nHorizontalInset, int32_t nVerticalInset) +void __thiscall winISteamUtils_SteamUtils008_SetOverlayNotificationInset(struct w_iface *_this, int32_t nHorizontalInset, int32_t nVerticalInset) { struct ISteamUtils_SteamUtils008_SetOverlayNotificationInset_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nHorizontalInset = nHorizontalInset, .nVerticalInset = nVerticalInset, }; @@ -1924,22 +1924,22 @@ void __thiscall winISteamUtils_SteamUtils008_SetOverlayNotificationInset(struct STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_SetOverlayNotificationInset, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils008_IsSteamInBigPictureMode(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils008_IsSteamInBigPictureMode(struct w_iface *_this) { struct ISteamUtils_SteamUtils008_IsSteamInBigPictureMode_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_IsSteamInBigPictureMode, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils008_StartVRDashboard(struct w_steam_iface *_this) +void __thiscall winISteamUtils_SteamUtils008_StartVRDashboard(struct w_iface *_this) { struct ISteamUtils_SteamUtils008_StartVRDashboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils008_StartVRDashboard, ¶ms ); @@ -1982,9 +1982,9 @@ __ASM_BLOCK_BEGIN(winISteamUtils_SteamUtils008_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUtils_SteamUtils008(void *u_iface) +struct w_iface *create_winISteamUtils_SteamUtils008( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUtils008"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUtils008"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUtils_SteamUtils008_vtable, 28, "SteamUtils008"); r->u_iface = u_iface; @@ -2026,66 +2026,66 @@ DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils009_InitFilterText, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils009_FilterText, 20) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils009_GetIPv6ConnectivityState, 8) -uint32_t __thiscall winISteamUtils_SteamUtils009_GetSecondsSinceAppActive(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils009_GetSecondsSinceAppActive(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_GetSecondsSinceAppActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetSecondsSinceAppActive, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils009_GetSecondsSinceComputerActive(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils009_GetSecondsSinceComputerActive(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_GetSecondsSinceComputerActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetSecondsSinceComputerActive, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils009_GetConnectedUniverse(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils009_GetConnectedUniverse(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_GetConnectedUniverse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetConnectedUniverse, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils009_GetServerRealTime(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils009_GetServerRealTime(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_GetServerRealTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetServerRealTime, ¶ms ); return params._ret; } -const char * __thiscall winISteamUtils_SteamUtils009_GetIPCountry(struct w_steam_iface *_this) +const char * __thiscall winISteamUtils_SteamUtils009_GetIPCountry(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_GetIPCountry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetIPCountry, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils009_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) +int8_t __thiscall winISteamUtils_SteamUtils009_GetImageSize(struct w_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { struct ISteamUtils_SteamUtils009_GetImageSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iImage = iImage, .pnWidth = pnWidth, .pnHeight = pnHeight, @@ -2095,11 +2095,11 @@ int8_t __thiscall winISteamUtils_SteamUtils009_GetImageSize(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils009_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) +int8_t __thiscall winISteamUtils_SteamUtils009_GetImageRGBA(struct w_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { struct ISteamUtils_SteamUtils009_GetImageRGBA_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iImage = iImage, .pubDest = pubDest, .nDestBufferSize = nDestBufferSize, @@ -2109,11 +2109,11 @@ int8_t __thiscall winISteamUtils_SteamUtils009_GetImageRGBA(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils009_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) +int8_t __thiscall winISteamUtils_SteamUtils009_GetCSERIPPort(struct w_iface *_this, uint32_t *unIP, uint16_t *usPort) { struct ISteamUtils_SteamUtils009_GetCSERIPPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -2122,44 +2122,44 @@ int8_t __thiscall winISteamUtils_SteamUtils009_GetCSERIPPort(struct w_steam_ifac return params._ret; } -uint8_t __thiscall winISteamUtils_SteamUtils009_GetCurrentBatteryPower(struct w_steam_iface *_this) +uint8_t __thiscall winISteamUtils_SteamUtils009_GetCurrentBatteryPower(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_GetCurrentBatteryPower_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetCurrentBatteryPower, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils009_GetAppID(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils009_GetAppID(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_GetAppID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetAppID, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils009_SetOverlayNotificationPosition(struct w_steam_iface *_this, uint32_t eNotificationPosition) +void __thiscall winISteamUtils_SteamUtils009_SetOverlayNotificationPosition(struct w_iface *_this, uint32_t eNotificationPosition) { struct ISteamUtils_SteamUtils009_SetOverlayNotificationPosition_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eNotificationPosition = eNotificationPosition, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_SetOverlayNotificationPosition, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils009_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils009_IsAPICallCompleted(struct w_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) { struct ISteamUtils_SteamUtils009_IsAPICallCompleted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pbFailed = pbFailed, }; @@ -2168,11 +2168,11 @@ int8_t __thiscall winISteamUtils_SteamUtils009_IsAPICallCompleted(struct w_steam return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils009_GetAPICallFailureReason(struct w_steam_iface *_this, uint64_t hSteamAPICall) +uint32_t __thiscall winISteamUtils_SteamUtils009_GetAPICallFailureReason(struct w_iface *_this, uint64_t hSteamAPICall) { struct ISteamUtils_SteamUtils009_GetAPICallFailureReason_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, }; TRACE("%p\n", _this); @@ -2180,11 +2180,11 @@ uint32_t __thiscall winISteamUtils_SteamUtils009_GetAPICallFailureReason(struct return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils009_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils009_GetAPICallResult(struct w_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) { struct ISteamUtils_SteamUtils009_GetAPICallResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pCallback = pCallback, .cubCallback = cubCallback, @@ -2196,65 +2196,65 @@ int8_t __thiscall winISteamUtils_SteamUtils009_GetAPICallResult(struct w_steam_i return params._ret; } -void __thiscall winISteamUtils_SteamUtils009_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamUtils_SteamUtils009_RunFrame(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamUtils_SteamUtils009_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils009_GetIPCCallCount(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils009_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamUtils_SteamUtils009_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamUtils_SteamUtils009_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils009_IsOverlayEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils009_IsOverlayEnabled(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_IsOverlayEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_IsOverlayEnabled, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils009_BOverlayNeedsPresent(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils009_BOverlayNeedsPresent(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_BOverlayNeedsPresent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_BOverlayNeedsPresent, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUtils_SteamUtils009_CheckFileSignature(struct w_steam_iface *_this, const char *szFileName) +uint64_t __thiscall winISteamUtils_SteamUtils009_CheckFileSignature(struct w_iface *_this, const char *szFileName) { struct ISteamUtils_SteamUtils009_CheckFileSignature_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .szFileName = szFileName, }; TRACE("%p\n", _this); @@ -2263,11 +2263,11 @@ uint64_t __thiscall winISteamUtils_SteamUtils009_CheckFileSignature(struct w_ste return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils009_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) +int8_t __thiscall winISteamUtils_SteamUtils009_ShowGamepadTextInput(struct w_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) { struct ISteamUtils_SteamUtils009_ShowGamepadTextInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eInputMode = eInputMode, .eLineInputMode = eLineInputMode, .pchDescription = pchDescription, @@ -2281,22 +2281,22 @@ int8_t __thiscall winISteamUtils_SteamUtils009_ShowGamepadTextInput(struct w_ste return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils009_GetEnteredGamepadTextLength(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils009_GetEnteredGamepadTextLength(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextLength_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetEnteredGamepadTextLength, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils009_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) +int8_t __thiscall winISteamUtils_SteamUtils009_GetEnteredGamepadTextInput(struct w_iface *_this, char *pchText, uint32_t cchText) { struct ISteamUtils_SteamUtils009_GetEnteredGamepadTextInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchText = pchText, .cchText = cchText, }; @@ -2305,33 +2305,33 @@ int8_t __thiscall winISteamUtils_SteamUtils009_GetEnteredGamepadTextInput(struct return params._ret; } -const char * __thiscall winISteamUtils_SteamUtils009_GetSteamUILanguage(struct w_steam_iface *_this) +const char * __thiscall winISteamUtils_SteamUtils009_GetSteamUILanguage(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_GetSteamUILanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_GetSteamUILanguage, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils009_IsSteamRunningInVR(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils009_IsSteamRunningInVR(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_IsSteamRunningInVR_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_IsSteamRunningInVR, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils009_SetOverlayNotificationInset(struct w_steam_iface *_this, int32_t nHorizontalInset, int32_t nVerticalInset) +void __thiscall winISteamUtils_SteamUtils009_SetOverlayNotificationInset(struct w_iface *_this, int32_t nHorizontalInset, int32_t nVerticalInset) { struct ISteamUtils_SteamUtils009_SetOverlayNotificationInset_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nHorizontalInset = nHorizontalInset, .nVerticalInset = nVerticalInset, }; @@ -2339,76 +2339,76 @@ void __thiscall winISteamUtils_SteamUtils009_SetOverlayNotificationInset(struct STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_SetOverlayNotificationInset, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils009_IsSteamInBigPictureMode(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils009_IsSteamInBigPictureMode(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_IsSteamInBigPictureMode_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_IsSteamInBigPictureMode, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils009_StartVRDashboard(struct w_steam_iface *_this) +void __thiscall winISteamUtils_SteamUtils009_StartVRDashboard(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_StartVRDashboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_StartVRDashboard, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_IsVRHeadsetStreamingEnabled, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled(struct w_steam_iface *_this, int8_t bEnabled) +void __thiscall winISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled(struct w_iface *_this, int8_t bEnabled) { struct ISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils009_IsSteamChinaLauncher(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils009_IsSteamChinaLauncher(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_IsSteamChinaLauncher_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_IsSteamChinaLauncher, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils009_InitFilterText(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils009_InitFilterText(struct w_iface *_this) { struct ISteamUtils_SteamUtils009_InitFilterText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils009_InitFilterText, ¶ms ); return params._ret; } -int32_t __thiscall winISteamUtils_SteamUtils009_FilterText(struct w_steam_iface *_this, char *pchOutFilteredText, uint32_t nByteSizeOutFilteredText, const char *pchInputMessage, int8_t bLegalOnly) +int32_t __thiscall winISteamUtils_SteamUtils009_FilterText(struct w_iface *_this, char *pchOutFilteredText, uint32_t nByteSizeOutFilteredText, const char *pchInputMessage, int8_t bLegalOnly) { struct ISteamUtils_SteamUtils009_FilterText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchOutFilteredText = pchOutFilteredText, .nByteSizeOutFilteredText = nByteSizeOutFilteredText, .pchInputMessage = pchInputMessage, @@ -2420,11 +2420,11 @@ int32_t __thiscall winISteamUtils_SteamUtils009_FilterText(struct w_steam_iface return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils009_GetIPv6ConnectivityState(struct w_steam_iface *_this, uint32_t eProtocol) +uint32_t __thiscall winISteamUtils_SteamUtils009_GetIPv6ConnectivityState(struct w_iface *_this, uint32_t eProtocol) { struct ISteamUtils_SteamUtils009_GetIPv6ConnectivityState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eProtocol = eProtocol, }; TRACE("%p\n", _this); @@ -2475,9 +2475,9 @@ __ASM_BLOCK_BEGIN(winISteamUtils_SteamUtils009_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUtils_SteamUtils009(void *u_iface) +struct w_iface *create_winISteamUtils_SteamUtils009( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUtils009"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUtils009"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUtils_SteamUtils009_vtable, 34, "SteamUtils009"); r->u_iface = u_iface; @@ -2524,66 +2524,66 @@ DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils010_SetGameLauncherMode, 8) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput, 4) DEFINE_THISCALL_WRAPPER(winISteamUtils_SteamUtils010_DismissGamepadTextInput, 4) -uint32_t __thiscall winISteamUtils_SteamUtils010_GetSecondsSinceAppActive(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils010_GetSecondsSinceAppActive(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_GetSecondsSinceAppActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetSecondsSinceAppActive, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils010_GetSecondsSinceComputerActive(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils010_GetSecondsSinceComputerActive(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_GetSecondsSinceComputerActive_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetSecondsSinceComputerActive, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils010_GetConnectedUniverse(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils010_GetConnectedUniverse(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_GetConnectedUniverse_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetConnectedUniverse, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils010_GetServerRealTime(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils010_GetServerRealTime(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_GetServerRealTime_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetServerRealTime, ¶ms ); return params._ret; } -const char * __thiscall winISteamUtils_SteamUtils010_GetIPCountry(struct w_steam_iface *_this) +const char * __thiscall winISteamUtils_SteamUtils010_GetIPCountry(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_GetIPCountry_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetIPCountry, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils010_GetImageSize(struct w_steam_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) +int8_t __thiscall winISteamUtils_SteamUtils010_GetImageSize(struct w_iface *_this, int32_t iImage, uint32_t *pnWidth, uint32_t *pnHeight) { struct ISteamUtils_SteamUtils010_GetImageSize_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iImage = iImage, .pnWidth = pnWidth, .pnHeight = pnHeight, @@ -2593,11 +2593,11 @@ int8_t __thiscall winISteamUtils_SteamUtils010_GetImageSize(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils010_GetImageRGBA(struct w_steam_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) +int8_t __thiscall winISteamUtils_SteamUtils010_GetImageRGBA(struct w_iface *_this, int32_t iImage, uint8_t *pubDest, int32_t nDestBufferSize) { struct ISteamUtils_SteamUtils010_GetImageRGBA_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .iImage = iImage, .pubDest = pubDest, .nDestBufferSize = nDestBufferSize, @@ -2607,11 +2607,11 @@ int8_t __thiscall winISteamUtils_SteamUtils010_GetImageRGBA(struct w_steam_iface return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils010_GetCSERIPPort(struct w_steam_iface *_this, uint32_t *unIP, uint16_t *usPort) +int8_t __thiscall winISteamUtils_SteamUtils010_GetCSERIPPort(struct w_iface *_this, uint32_t *unIP, uint16_t *usPort) { struct ISteamUtils_SteamUtils010_GetCSERIPPort_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unIP = unIP, .usPort = usPort, }; @@ -2620,44 +2620,44 @@ int8_t __thiscall winISteamUtils_SteamUtils010_GetCSERIPPort(struct w_steam_ifac return params._ret; } -uint8_t __thiscall winISteamUtils_SteamUtils010_GetCurrentBatteryPower(struct w_steam_iface *_this) +uint8_t __thiscall winISteamUtils_SteamUtils010_GetCurrentBatteryPower(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_GetCurrentBatteryPower_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetCurrentBatteryPower, ¶ms ); return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils010_GetAppID(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils010_GetAppID(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_GetAppID_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetAppID, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils010_SetOverlayNotificationPosition(struct w_steam_iface *_this, uint32_t eNotificationPosition) +void __thiscall winISteamUtils_SteamUtils010_SetOverlayNotificationPosition(struct w_iface *_this, uint32_t eNotificationPosition) { struct ISteamUtils_SteamUtils010_SetOverlayNotificationPosition_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eNotificationPosition = eNotificationPosition, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_SetOverlayNotificationPosition, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils010_IsAPICallCompleted(struct w_steam_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils010_IsAPICallCompleted(struct w_iface *_this, uint64_t hSteamAPICall, int8_t *pbFailed) { struct ISteamUtils_SteamUtils010_IsAPICallCompleted_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pbFailed = pbFailed, }; @@ -2666,11 +2666,11 @@ int8_t __thiscall winISteamUtils_SteamUtils010_IsAPICallCompleted(struct w_steam return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils010_GetAPICallFailureReason(struct w_steam_iface *_this, uint64_t hSteamAPICall) +uint32_t __thiscall winISteamUtils_SteamUtils010_GetAPICallFailureReason(struct w_iface *_this, uint64_t hSteamAPICall) { struct ISteamUtils_SteamUtils010_GetAPICallFailureReason_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, }; TRACE("%p\n", _this); @@ -2678,11 +2678,11 @@ uint32_t __thiscall winISteamUtils_SteamUtils010_GetAPICallFailureReason(struct return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils010_GetAPICallResult(struct w_steam_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) +int8_t __thiscall winISteamUtils_SteamUtils010_GetAPICallResult(struct w_iface *_this, uint64_t hSteamAPICall, void *pCallback, int32_t cubCallback, int32_t iCallbackExpected, int8_t *pbFailed) { struct ISteamUtils_SteamUtils010_GetAPICallResult_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .hSteamAPICall = hSteamAPICall, .pCallback = pCallback, .cubCallback = cubCallback, @@ -2694,65 +2694,65 @@ int8_t __thiscall winISteamUtils_SteamUtils010_GetAPICallResult(struct w_steam_i return params._ret; } -void __thiscall winISteamUtils_SteamUtils010_RunFrame(struct w_steam_iface *_this) +void __thiscall winISteamUtils_SteamUtils010_RunFrame(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_RunFrame_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_RunFrame, ¶ms ); } -uint32_t __thiscall winISteamUtils_SteamUtils010_GetIPCCallCount(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils010_GetIPCCallCount(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_GetIPCCallCount_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetIPCCallCount, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils010_SetWarningMessageHook(struct w_steam_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) +void __thiscall winISteamUtils_SteamUtils010_SetWarningMessageHook(struct w_iface *_this, void (*W_CDECL pFunction)(int32_t, const char *)) { struct ISteamUtils_SteamUtils010_SetWarningMessageHook_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pFunction = pFunction, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_SetWarningMessageHook, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils010_IsOverlayEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils010_IsOverlayEnabled(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_IsOverlayEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_IsOverlayEnabled, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils010_BOverlayNeedsPresent(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils010_BOverlayNeedsPresent(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_BOverlayNeedsPresent_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_BOverlayNeedsPresent, ¶ms ); return params._ret; } -uint64_t __thiscall winISteamUtils_SteamUtils010_CheckFileSignature(struct w_steam_iface *_this, const char *szFileName) +uint64_t __thiscall winISteamUtils_SteamUtils010_CheckFileSignature(struct w_iface *_this, const char *szFileName) { struct ISteamUtils_SteamUtils010_CheckFileSignature_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .szFileName = szFileName, }; TRACE("%p\n", _this); @@ -2761,11 +2761,11 @@ uint64_t __thiscall winISteamUtils_SteamUtils010_CheckFileSignature(struct w_ste return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils010_ShowGamepadTextInput(struct w_steam_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) +int8_t __thiscall winISteamUtils_SteamUtils010_ShowGamepadTextInput(struct w_iface *_this, uint32_t eInputMode, uint32_t eLineInputMode, const char *pchDescription, uint32_t unCharMax, const char *pchExistingText) { struct ISteamUtils_SteamUtils010_ShowGamepadTextInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eInputMode = eInputMode, .eLineInputMode = eLineInputMode, .pchDescription = pchDescription, @@ -2779,22 +2779,22 @@ int8_t __thiscall winISteamUtils_SteamUtils010_ShowGamepadTextInput(struct w_ste return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils010_GetEnteredGamepadTextLength(struct w_steam_iface *_this) +uint32_t __thiscall winISteamUtils_SteamUtils010_GetEnteredGamepadTextLength(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextLength_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetEnteredGamepadTextLength, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils010_GetEnteredGamepadTextInput(struct w_steam_iface *_this, char *pchText, uint32_t cchText) +int8_t __thiscall winISteamUtils_SteamUtils010_GetEnteredGamepadTextInput(struct w_iface *_this, char *pchText, uint32_t cchText) { struct ISteamUtils_SteamUtils010_GetEnteredGamepadTextInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pchText = pchText, .cchText = cchText, }; @@ -2803,33 +2803,33 @@ int8_t __thiscall winISteamUtils_SteamUtils010_GetEnteredGamepadTextInput(struct return params._ret; } -const char * __thiscall winISteamUtils_SteamUtils010_GetSteamUILanguage(struct w_steam_iface *_this) +const char * __thiscall winISteamUtils_SteamUtils010_GetSteamUILanguage(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_GetSteamUILanguage_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_GetSteamUILanguage, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils010_IsSteamRunningInVR(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils010_IsSteamRunningInVR(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_IsSteamRunningInVR_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_IsSteamRunningInVR, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils010_SetOverlayNotificationInset(struct w_steam_iface *_this, int32_t nHorizontalInset, int32_t nVerticalInset) +void __thiscall winISteamUtils_SteamUtils010_SetOverlayNotificationInset(struct w_iface *_this, int32_t nHorizontalInset, int32_t nVerticalInset) { struct ISteamUtils_SteamUtils010_SetOverlayNotificationInset_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .nHorizontalInset = nHorizontalInset, .nVerticalInset = nVerticalInset, }; @@ -2837,65 +2837,65 @@ void __thiscall winISteamUtils_SteamUtils010_SetOverlayNotificationInset(struct STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_SetOverlayNotificationInset, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils010_IsSteamInBigPictureMode(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils010_IsSteamInBigPictureMode(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_IsSteamInBigPictureMode_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_IsSteamInBigPictureMode, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils010_StartVRDashboard(struct w_steam_iface *_this) +void __thiscall winISteamUtils_SteamUtils010_StartVRDashboard(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_StartVRDashboard_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_StartVRDashboard, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_IsVRHeadsetStreamingEnabled, ¶ms ); return params._ret; } -void __thiscall winISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled(struct w_steam_iface *_this, int8_t bEnabled) +void __thiscall winISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled(struct w_iface *_this, int8_t bEnabled) { struct ISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bEnabled = bEnabled, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_SetVRHeadsetStreamingEnabled, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils010_IsSteamChinaLauncher(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils010_IsSteamChinaLauncher(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_IsSteamChinaLauncher_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_IsSteamChinaLauncher, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils010_InitFilterText(struct w_steam_iface *_this, uint32_t unFilterOptions) +int8_t __thiscall winISteamUtils_SteamUtils010_InitFilterText(struct w_iface *_this, uint32_t unFilterOptions) { struct ISteamUtils_SteamUtils010_InitFilterText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unFilterOptions = unFilterOptions, }; TRACE("%p\n", _this); @@ -2903,11 +2903,11 @@ int8_t __thiscall winISteamUtils_SteamUtils010_InitFilterText(struct w_steam_ifa return params._ret; } -int32_t __thiscall winISteamUtils_SteamUtils010_FilterText(struct w_steam_iface *_this, uint32_t eContext, CSteamID sourceSteamID, const char *pchInputMessage, char *pchOutFilteredText, uint32_t nByteSizeOutFilteredText) +int32_t __thiscall winISteamUtils_SteamUtils010_FilterText(struct w_iface *_this, uint32_t eContext, CSteamID sourceSteamID, const char *pchInputMessage, char *pchOutFilteredText, uint32_t nByteSizeOutFilteredText) { struct ISteamUtils_SteamUtils010_FilterText_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eContext = eContext, .sourceSteamID = sourceSteamID, .pchInputMessage = pchInputMessage, @@ -2920,11 +2920,11 @@ int32_t __thiscall winISteamUtils_SteamUtils010_FilterText(struct w_steam_iface return params._ret; } -uint32_t __thiscall winISteamUtils_SteamUtils010_GetIPv6ConnectivityState(struct w_steam_iface *_this, uint32_t eProtocol) +uint32_t __thiscall winISteamUtils_SteamUtils010_GetIPv6ConnectivityState(struct w_iface *_this, uint32_t eProtocol) { struct ISteamUtils_SteamUtils010_GetIPv6ConnectivityState_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eProtocol = eProtocol, }; TRACE("%p\n", _this); @@ -2932,22 +2932,22 @@ uint32_t __thiscall winISteamUtils_SteamUtils010_GetIPv6ConnectivityState(struct return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_IsSteamRunningOnSteamDeck, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput(struct w_steam_iface *_this, uint32_t eKeyboardMode, int32_t nTextFieldXPosition, int32_t nTextFieldYPosition, int32_t nTextFieldWidth, int32_t nTextFieldHeight) +int8_t __thiscall winISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput(struct w_iface *_this, uint32_t eKeyboardMode, int32_t nTextFieldXPosition, int32_t nTextFieldYPosition, int32_t nTextFieldWidth, int32_t nTextFieldHeight) { struct ISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .eKeyboardMode = eKeyboardMode, .nTextFieldXPosition = nTextFieldXPosition, .nTextFieldYPosition = nTextFieldYPosition, @@ -2959,33 +2959,33 @@ int8_t __thiscall winISteamUtils_SteamUtils010_ShowFloatingGamepadTextInput(stru return params._ret; } -void __thiscall winISteamUtils_SteamUtils010_SetGameLauncherMode(struct w_steam_iface *_this, int8_t bLauncherMode) +void __thiscall winISteamUtils_SteamUtils010_SetGameLauncherMode(struct w_iface *_this, int8_t bLauncherMode) { struct ISteamUtils_SteamUtils010_SetGameLauncherMode_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .bLauncherMode = bLauncherMode, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_SetGameLauncherMode, ¶ms ); } -int8_t __thiscall winISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_DismissFloatingGamepadTextInput, ¶ms ); return params._ret; } -int8_t __thiscall winISteamUtils_SteamUtils010_DismissGamepadTextInput(struct w_steam_iface *_this) +int8_t __thiscall winISteamUtils_SteamUtils010_DismissGamepadTextInput(struct w_iface *_this) { struct ISteamUtils_SteamUtils010_DismissGamepadTextInput_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamUtils_SteamUtils010_DismissGamepadTextInput, ¶ms ); @@ -3040,9 +3040,9 @@ __ASM_BLOCK_BEGIN(winISteamUtils_SteamUtils010_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamUtils_SteamUtils010(void *u_iface) +struct w_iface *create_winISteamUtils_SteamUtils010( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "SteamUtils010"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "SteamUtils010"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamUtils_SteamUtils010_vtable, 39, "SteamUtils010"); r->u_iface = u_iface; diff --git a/lsteamclient/winISteamVideo.c b/lsteamclient/winISteamVideo.c index d952bff3..e463afeb 100644 --- a/lsteamclient/winISteamVideo.c +++ b/lsteamclient/winISteamVideo.c @@ -6,22 +6,22 @@ WINE_DEFAULT_DEBUG_CHANNEL(steamclient); DEFINE_THISCALL_WRAPPER(winISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL, 8) DEFINE_THISCALL_WRAPPER(winISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting, 8) -void __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL(struct w_steam_iface *_this, uint32_t unVideoAppID) +void __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL(struct w_iface *_this, uint32_t unVideoAppID) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unVideoAppID = unVideoAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL, ¶ms ); } -int8_t __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting(struct w_steam_iface *_this, int32_t *pnNumViewers) +int8_t __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting(struct w_iface *_this, int32_t *pnNumViewers) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnNumViewers = pnNumViewers, }; TRACE("%p\n", _this); @@ -40,9 +40,9 @@ __ASM_BLOCK_BEGIN(winISteamVideo_STEAMVIDEO_INTERFACE_V001_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V001(void *u_iface) +struct w_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V001( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMVIDEO_INTERFACE_V001"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMVIDEO_INTERFACE_V001"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamVideo_STEAMVIDEO_INTERFACE_V001_vtable, 2, "STEAMVIDEO_INTERFACE_V001"); r->u_iface = u_iface; @@ -54,22 +54,22 @@ DEFINE_THISCALL_WRAPPER(winISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting, DEFINE_THISCALL_WRAPPER(winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings, 8) DEFINE_THISCALL_WRAPPER(winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp, 16) -void __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL(struct w_steam_iface *_this, uint32_t unVideoAppID) +void __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL(struct w_iface *_this, uint32_t unVideoAppID) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unVideoAppID = unVideoAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL, ¶ms ); } -int8_t __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting(struct w_steam_iface *_this, int32_t *pnNumViewers) +int8_t __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting(struct w_iface *_this, int32_t *pnNumViewers) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnNumViewers = pnNumViewers, }; TRACE("%p\n", _this); @@ -77,22 +77,22 @@ int8_t __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting(struct return params._ret; } -void __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings(struct w_steam_iface *_this, uint32_t unVideoAppID) +void __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings(struct w_iface *_this, uint32_t unVideoAppID) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unVideoAppID = unVideoAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings, ¶ms ); } -int8_t __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp(struct w_steam_iface *_this, uint32_t unVideoAppID, char *pchBuffer, int32_t *pnBufferSize) +int8_t __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp(struct w_iface *_this, uint32_t unVideoAppID, char *pchBuffer, int32_t *pnBufferSize) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unVideoAppID = unVideoAppID, .pchBuffer = pchBuffer, .pnBufferSize = pnBufferSize, @@ -115,9 +115,9 @@ __ASM_BLOCK_BEGIN(winISteamVideo_STEAMVIDEO_INTERFACE_V002_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V002(void *u_iface) +struct w_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V002( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMVIDEO_INTERFACE_V002"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMVIDEO_INTERFACE_V002"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamVideo_STEAMVIDEO_INTERFACE_V002_vtable, 4, "STEAMVIDEO_INTERFACE_V002"); r->u_iface = u_iface; @@ -129,22 +129,22 @@ DEFINE_THISCALL_WRAPPER(winISteamVideo_STEAMVIDEO_INTERFACE_V007_IsBroadcasting, DEFINE_THISCALL_WRAPPER(winISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFSettings, 8) DEFINE_THISCALL_WRAPPER(winISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFStringForApp, 16) -void __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V007_GetVideoURL(struct w_steam_iface *_this, uint32_t unVideoAppID) +void __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V007_GetVideoURL(struct w_iface *_this, uint32_t unVideoAppID) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetVideoURL_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unVideoAppID = unVideoAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetVideoURL, ¶ms ); } -int8_t __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V007_IsBroadcasting(struct w_steam_iface *_this, int32_t *pnNumViewers) +int8_t __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V007_IsBroadcasting(struct w_iface *_this, int32_t *pnNumViewers) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_IsBroadcasting_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .pnNumViewers = pnNumViewers, }; TRACE("%p\n", _this); @@ -152,22 +152,22 @@ int8_t __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V007_IsBroadcasting(struct return params._ret; } -void __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFSettings(struct w_steam_iface *_this, uint32_t unVideoAppID) +void __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFSettings(struct w_iface *_this, uint32_t unVideoAppID) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFSettings_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unVideoAppID = unVideoAppID, }; TRACE("%p\n", _this); STEAMCLIENT_CALL( ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFSettings, ¶ms ); } -int8_t __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFStringForApp(struct w_steam_iface *_this, uint32_t unVideoAppID, char *pchBuffer, int32_t *pnBufferSize) +int8_t __thiscall winISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFStringForApp(struct w_iface *_this, uint32_t unVideoAppID, char *pchBuffer, int32_t *pnBufferSize) { struct ISteamVideo_STEAMVIDEO_INTERFACE_V007_GetOPFStringForApp_params params = { - .linux_side = _this->u_iface, + .u_iface = _this->u_iface, .unVideoAppID = unVideoAppID, .pchBuffer = pchBuffer, .pnBufferSize = pnBufferSize, @@ -190,9 +190,9 @@ __ASM_BLOCK_BEGIN(winISteamVideo_STEAMVIDEO_INTERFACE_V007_vtables) ); __ASM_BLOCK_END -struct w_steam_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V007(void *u_iface) +struct w_iface *create_winISteamVideo_STEAMVIDEO_INTERFACE_V007( struct u_iface *u_iface ) { - struct w_steam_iface *r = alloc_mem_for_iface(sizeof(struct w_steam_iface), "STEAMVIDEO_INTERFACE_V007"); + struct w_iface *r = alloc_mem_for_iface(sizeof(struct w_iface), "STEAMVIDEO_INTERFACE_V007"); TRACE("-> %p\n", r); r->vtable = alloc_vtable(&winISteamVideo_STEAMVIDEO_INTERFACE_V007_vtable, 4, "STEAMVIDEO_INTERFACE_V007"); r->u_iface = u_iface;